Skip to content

Instantly share code, notes, and snippets.

@marcdown
Last active December 17, 2015 21:29
Show Gist options
  • Save marcdown/5675239 to your computer and use it in GitHub Desktop.
Save marcdown/5675239 to your computer and use it in GitHub Desktop.
Pod::Spec.new do |s|
s.name = "EDSunriseSet"
s.version = "0.0.2"
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" => "pausch@stjarnhimlen.se" }
s.source = { :git => "https://github.com/creativemess/EDSunriseSet.git" }
s.source_files = '*.{h,m}'
s.requires_arc = true
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment