Skip to content

Instantly share code, notes, and snippets.

@ricobeck
Last active December 20, 2015 16:49
Show Gist options
  • Save ricobeck/6164633 to your computer and use it in GitHub Desktop.
Save ricobeck/6164633 to your computer and use it in GitHub Desktop.
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" => "valinorsgatekeeper@gmail.com" }
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