-
Notifications
You must be signed in to change notification settings - Fork 9.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7943 from jasperblues/master
Add Typhoon 1.7.9
- Loading branch information
Showing
1 changed file
with
29 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
Pod::Spec.new do |spec| | ||
spec.name = 'Typhoon' | ||
spec.version = '1.7.9' | ||
spec.license = 'Apache2.0' | ||
spec.summary = 'A dependency injection container for Objective-C. Light-weight, yet flexible and full-featured.' | ||
spec.homepage = 'http://www.typhoonframework.org' | ||
spec.author = {'Jasper Blues, Robert Gilliam, Daniel Rodríguez, Erik Sundin, Aleksey Garbarev & Contributors' => 'info@typhoonframework.org'} | ||
spec.source = {:git => 'https://github.com/typhoon-framework/Typhoon.git', :tag => spec.version.to_s, :submodules => true} | ||
|
||
spec.ios.deployment_target = '5.0' | ||
spec.osx.deployment_target = '10.7' | ||
|
||
spec.libraries = 'z', 'xml2' | ||
spec.xcconfig = {'HEADER_SEARCH_PATHS' => '$(SDKROOT)/usr/include/libxml2'} | ||
|
||
spec.source_files = 'Source/**/*.{h,m}' | ||
non_arc_files = 'Source/Factory/Internal/NSInvocation+TCFInstanceBuilder.{h,m}' | ||
spec.ios.exclude_files = 'Source/osx', non_arc_files | ||
spec.osx.exclude_files = 'Source/ios', non_arc_files | ||
|
||
spec.requires_arc = true | ||
spec.subspec 'no-arc' do |sna| | ||
sna.requires_arc = false | ||
sna.source_files = non_arc_files | ||
end | ||
|
||
|
||
spec.documentation_url = 'http://www.typhoonframework.org/docs/latest/api/' | ||
end |