-
Notifications
You must be signed in to change notification settings - Fork 269
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Jasper Blues
authored and
Jasper Blues
committed
Jan 30, 2013
1 parent
73694d2
commit a5b43b0
Showing
1 changed file
with
11 additions
and
6 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 |
---|---|---|
@@ -1,8 +1,13 @@ | ||
pod do |spec| | ||
spec.name = 'Typhoon' | ||
spec.version = '1.0.5' | ||
spec.source = { :git => 'https://github.com/jasperblues/Typhoon', :tag => '1.0.5' } | ||
spec.source_files = 'Source/**/*.{h,m}' | ||
spec.libraries = 'z', 'xml2' | ||
spec.xcconfig = { 'HEADER_SEARCH_PATHS' => '$(SDKROOT)/usr/include/libxml2' } | ||
s.name = 'Typhoon' | ||
s.version = '1.0.5' | ||
s.license = 'Apache2.0' | ||
s.summary = 'A dependency injection container for Objective-C. Light-weight, yet flexible and full-featured.' | ||
s.homepage = 'https://github.com/jasperblues/Typhoon.git' | ||
s.author = { 'Jasper Blues' => '[email protected]' } | ||
s.source = { :git => 'https://github.com/jasperblues/Typhoon.git', :tag => '1.0.5' } | ||
s.source_files = 'Source/**/*.{h,m}' | ||
s.libraries = 'z', 'xml2' | ||
s.xcconfig = { 'HEADER_SEARCH_PATHS' => '$(SDKROOT)/usr/include/libxml2' } | ||
s.requires_arc = true | ||
end |