Created
November 10, 2012 17:32
-
-
Save PaulTaykalo/4051852 to your computer and use it in GitHub Desktop.
Temporary DYCI POD
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 = "dyci" | |
s.version = "0.0.3.10232012" | |
s.summary = "Dynamic code injection tool. Allows to inject code at runtime." | |
s.homepage = "https://github.com/DyCI/dyci-main" | |
s.license = 'MIT' | |
s.author = { "Paul Taykalo" => "[email protected]" } | |
s.source = { :git => "https://github.com/DyCI/dyci-main.git", :commit => 'fe990cfdb038807236739c7a561930a09c9e3137' } | |
s.platform = :ios, '4.3' | |
s.source_files = 'Dynamic Code Injection/dyci/Classes/*.{h,m}' | |
s.requires_arc = true | |
#... | |
s.subspec 'Injections' do |sp| | |
sp.source_files = 'Dynamic Code Injection/dyci/Classes/Injections/*.{h,m}' | |
sp.compiler_flags = '-fobjc-no-arc' | |
sp.requires_arc = false | |
end | |
s.subspec 'Helpers' do |sp| | |
sp.source_files = 'Dynamic Code Injection/dyci/Classes/{FileWatcher,Categories}/*.{h,m}' | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment