Skip to content

Instantly share code, notes, and snippets.

@joeljfischer
Created March 11, 2014 03:11
Show Gist options
  • Save joeljfischer/9478794 to your computer and use it in GitHub Desktop.
Save joeljfischer/9478794 to your computer and use it in GitHub Desktop.
A more up to date Octokit built off the main branch on 2014/03/10
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" => "[email protected]" }
s.source = { :git => "https://github.com/octokit/octokit.objc.git",
:commit => "c7433d2b33c40a3835c0372247405e274cddaa47" }
s.source_files = "OctoKit"
s.requires_arc = true
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.4"
s.dependency "ReactiveCocoa", "~> 2.2.4"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment