Last active
January 4, 2016 12:29
-
-
Save pietbrauer/8621432 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 = "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