-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathEDSunriseSet.podspec
18 lines (17 loc) · 992 Bytes
/
EDSunriseSet.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Pod::Spec.new do |s|
s.name = "EDSunriseSet"
s.version = "1.0"
s.summary = "Objective-C class to calculate Sunrise/Sunset/Twilight times."
s.description = <<-DESC
EDSunriseSet is an Objective-C wrapper for the C languages routines created by Paul Schlyter.
Calculation is done entirely by the C-code routines. EDSunrisetSet bridges those calculations to common cocoa classes (NSDate, NSTimeZone... )
- Calculates Sunrise/Sunset times
- Calculates Civil/Nautical/Astronomical twilight
DESC
s.homepage = "https://github.com/erndev/EDSunriseSet"
s.license = { :type => 'MIT', :file => 'license.txt' }
s.author = { "Ernesto García" => "", "Paul Schlyter" => "[email protected]" }
s.source = { :git => "https://github.com/erndev/EDSunriseSet.git", :tag => s.version.to_s }
s.source_files = '*.{h,m}'
s.requires_arc = true
end