-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathGEQRCodeView.podspec
More file actions
73 lines (50 loc) · 2.67 KB
/
GEQRCodeView.podspec
File metadata and controls
73 lines (50 loc) · 2.67 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
#
# Be sure to run `pod spec lint GEQRCodeView.podspec' to ensure this is a
# valid spec and to remove all comments including this before submitting the spec.
#
# To learn more about Podspec attributes see http://docs.cocoapods.org/specification.html
# To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/
#
Pod::Spec.new do |s|
s.name = "GEQRCodeView"
s.version = "0.0.3"
s.summary = "QRCode scanning ViewController for ios6/7"
s.description = <<-DESC
A longer description of GEQRCodeView in Markdown format.
* Think: Why did you write this? What is the focus? What does it do?
* CocoaPods will be using this to generate tags, and improve search results.
* Try to keep it short, snappy and to the point.
* Finally, don't worry about the indent, CocoaPods strips it!
DESC
s.homepage = "https://github.com/lerosua/GEQRCodeView"
# s.screenshots = "www.example.com/screenshots_1.gif", "www.example.com/screenshots_2.gif"
# ――― Spec License ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
#
# Licensing your code is important. See http://choosealicense.com for more info.
# CocoaPods will detect a license file if there is a named LICENSE*
# Popular ones are 'MIT', 'BSD' and 'Apache License, Version 2.0'.
#
s.license = "MIT"
# s.license = { :type => "MIT", :file => "FILE_LICENSE" }
s.author = { "lerosua" => "lerosua+github@gmail.com" }
# Or just: s.author = "lerosua"
# s.authors = { "lerosua" => "lerosua+github@gmail.com" }
# s.social_media_url = "http://twitter.com/lerosua"
s.platform = :ios, "6.0"
s.source = { :git => "https://github.com/lerosua/GEQRCodeView.git",:tag => "0.0.3" }
s.source_files = "GEQRCodeView/core", "GEQRCodeView/core/**/*.{h,m}"
#s.exclude_files = "Classes/Exclude"
# s.public_header_files = "Classes/**/*.h"
# s.resource = "icon.png"
# s.resources = "Resources/*.png"
s.resources = "GEQRCodeView/resource/*.png"
# s.framework = "SomeFramework"
# s.frameworks = "SomeFramework", "AnotherFramework"
# s.library = "iconv"
# s.libraries = "iconv", "xml2"
s.requires_arc = true
# s.xcconfig = { "HEADER_SEARCH_PATHS" => "$(SDKROOT)/usr/include/libxml2" }
#s.dependency "ZBarSDK", :podspec => 'https://raw.githubusercontent.com/lerosua/ZBarSDK/master/ZBarSDK.podspec'
s.dependency 'ZBarSDK', '~> 1.3.1'
s.dependency 'libqrencode', '~> 3.4.2'
end