Skip to content

Instantly share code, notes, and snippets.

@lukaswelte
Created November 19, 2013 13:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lukaswelte/7545290 to your computer and use it in GitHub Desktop.
Save lukaswelte/7545290 to your computer and use it in GitHub Desktop.
OctoKit Podspec
Pod::Spec.new do |s|
s.name = "OctoKit"
s.version = "0.4"
s.summary = "GitHub API client for Objective-C."
s.homepage = "https://github.com/octokit/octokit.objc"
s.license = "MIT"
s.author = { "GitHub" => "support@github.com" }
s.source = { :git => "https://github.com/octokit/octokit.objc.git", :tag => "#{s.version}" }
s.source_files = "OctoKit"
s.ios.deployment_target = "5.1"
s.osx.deployment_target = "10.7"
s.prepare_command = <<-'END'
find . -regex '.*\.[hm]' -exec sed -i '' -E 's@<ReactiveCocoa/(EXT.*)\.h>@<ReactiveCocoa/RAC\1.h>@' {} \;
END
s.dependency "AFNetworking", "~> 1.3.3"
s.dependency "ISO8601DateFormatter", "~> 0.7.0"
s.dependency "Mantle", "~> 1.3.1"
s.dependency "ReactiveCocoa", "~> 2.1.7"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment