-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathCompass.podspec
More file actions
20 lines (16 loc) · 724 Bytes
/
Compass.podspec
File metadata and controls
20 lines (16 loc) · 724 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Pod::Spec.new do |s|
s.name = "Compass"
s.summary = "Compass helps you setup a central navigation system for your iOS application."
s.version = "6.0.0"
s.homepage = "https://github.com/hyperoslo/Compass"
s.license = 'MIT'
s.author = { "Hyper Interaktiv AS" => "ios@hyper.no" }
s.source = { :git => "https://github.com/hyperoslo/Compass.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/hyperoslo'
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.10'
s.requires_arc = true
s.source_files = 'Sources/**/*'
s.frameworks = 'Foundation'
s.pod_target_xcconfig = { 'SWIFT_VERSION' => '4.1' }
end