Last active
December 20, 2015 16:49
-
-
Save ricobeck/6164633 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Pod::Spec.new do |s| | |
s.name = "OpenWeatherMapAPI" | |
s.version = "0.0.5" | |
s.summary = "A simple api for getting data from http://openweathermap.org." | |
s.homepage = "https://github.com/ricobeck/OpenWeatherMapAPI.git" | |
s.license = { :type => 'MIT', :file => 'LICENSE'} | |
s.author = { "Adrian Bak" => "[email protected]" } | |
s.ios.deployment_target = "5.1" | |
s.osx.deployment_target = "10.7" | |
s.source = { :git => "https://github.com/ricobeck/OpenWeatherMapAPI.git", :tag => s.version.to_s } | |
s.source_files = 'OpenWeatherMapAPI/OpenWeatherMapAPI' | |
s.public_header_files = 'OpenWeatherMapAPI/OpenWeatherMapAPI/*.h' | |
s.requires_arc = true | |
s.dependency 'AFNetworking', '~> 1.3.1' | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment