Created
November 19, 2013 13:23
-
-
Save lukaswelte/7545290 to your computer and use it in GitHub Desktop.
OctoKit Podspec
This file contains 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" | |
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", :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