Skip to content
This repository has been archived by the owner on Oct 4, 2019. It is now read-only.

Commit

Permalink
Merge pull request #41 from olegam/master
Browse files Browse the repository at this point in the history
Updated Podspec to pass Cocoapods validation
  • Loading branch information
PaulTaykalo committed Aug 16, 2014
2 parents c047699 + 54fac76 commit e3b0367
Showing 1 changed file with 6 additions and 26 deletions.
32 changes: 6 additions & 26 deletions dyci.podspec
Original file line number Diff line number Diff line change
@@ -1,37 +1,17 @@
Pod::Spec.new do |s|
s.name = "dyci"
s.version = "0.1.5.20140124"
s.version = "0.1.5.4"
s.summary = "Dynamic code injection tool. Allows to inject code at runtime."

s.homepage = "https://github.com/DyCI/dyci-main"
s.license = 'MIT'
s.license = {:type => 'MIT', :file => 'LICENSE.md'}

s.author = { "Paul Taykalo" => "[email protected]" }

s.source = { :git => "https://github.com/DyCI/dyci-main.git" }

s.source = { :git => "https://github.com/DyCI/dyci-main.git", :tag => 'v0.1.5.4'}
s.requires_arc = true
s.platform = :ios, '5.0'
s.source_files = 'Dynamic Code Injection/dyci/**/*.{h,m}'
s.prefix_header_contents = ''

#...

s.subspec 'Core' do |sp|
sp.source_files = 'Dynamic Code Injection/dyci/Classes/*.{h,m}'
sp.compiler_flags = '-fobjc-arc'
end

s.subspec 'Injections' do |sp|
sp.source_files = 'Dynamic Code Injection/dyci/Classes/Injections/NSObject*.{h,m}'
sp.compiler_flags = '-fno-objc-arc'
end

s.subspec 'UIKit Support' do |sp|
sp.source_files = 'Dynamic Code Injection/dyci/Classes/Injections/*Support.{h,m}'
sp.compiler_flags = '-fobjc-arc'
end

s.subspec 'Helpers' do |sp|
sp.source_files = 'Dynamic Code Injection/dyci/Classes/{FileWatcher,Categories,Notifications}/*.{h,m}'
sp.compiler_flags = '-fobjc-arc'
end

end

0 comments on commit e3b0367

Please sign in to comment.