-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathLighthouse.podspec
More file actions
22 lines (22 loc) · 909 Bytes
/
Lighthouse.podspec
File metadata and controls
22 lines (22 loc) · 909 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = "Lighthouse"
s.version = "2.1"
s.summary = "Lighthouse beacon technology by Passworks"
s.homepage = "http://passworks.io"
s.license = {
:type => 'Copyright',
:file => 'LICENSE'
}
s.social_media_url = 'https://twitter.com/passworksio'
s.author = { "Passworks S.A." => "support@passworks.io" }
s.source = { :git => "https://github.com/passworks/lighthouse-ios-sdk.git", :tag => "v#{s.version}" }
s.platform = :ios, '7.0'
s.frameworks = %w(Foundation SystemConfiguration CoreLocation CoreData Passkit)
s.library = 'z'
s.requires_arc = true
s.source_files = 'Lighthouse.framework/Versions/A/Headers/*.h'
s.ios.vendored_frameworks = 'Lighthouse.framework'
s.xcconfig = { 'FRAMEWORK_SEARCH_PATHS' => '$(inherited)' }
s.preserve_paths = 'Lighthouse.framework'
s.resources = 'Lighthouse.bundle'
end