forked from ceeK/Solar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSolar.podspec
More file actions
16 lines (16 loc) · 792 Bytes
/
Solar.podspec
File metadata and controls
16 lines (16 loc) · 792 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Pod::Spec.new do |s|
s.name = "Solar"
s.version = "2.2.0"
s.summary = "A Swift library for generating Sunrise and Sunset times."
s.description = "A Swift library for generating Sunrise and Sunset times. All calculations take place locally without the need for a network request."
s.homepage = "http://github.com/ceek/solar"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Chris Howell" => "chris.kevin.howell@gmail.com" }
s.ios.deployment_target = '8.0'
s.watchos.deployment_target = '3.0'
s.tvos.deployment_target = '9.0'
s.osx.deployment_target = '10.9'
s.source = { :git => "https://github.com/ceek/Solar.git", :tag => "#{s.version}" }
s.source_files = "Solar/*.{swift}"
s.requires_arc = true
end