Skip to content

Instantly share code, notes, and snippets.

@pietbrauer
Last active January 4, 2016 12:29
Show Gist options
  • Select an option

  • Save pietbrauer/8621432 to your computer and use it in GitHub Desktop.

Select an option

Save pietbrauer/8621432 to your computer and use it in GitHub Desktop.
Pod::Spec.new do |s|
s.name = "OctoKit"
s.version = "0.4.3"
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/pietbrauer/octokit.objc.git",
:commit => "be70184e8062e17a6af5b6acf345cf86558385c3" }
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.3.1"
s.dependency "ReactiveCocoa", "~> 2.2.2"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment