forked from CocoaPods/Specs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch '0.6' into 0.6.0rc1-spec-changes
* 0.6: correct library path as the zip contains folder add admob podspec Clean paths should be the same for either platform. Update new pods for 0.6 Replace post_install use to append to pch by prefix_header_file and prefix_header_contents. Only check the master branch on Travis. Remove the use of `config.ios?` or `config.osx?`. Conflicts: CocoaAsyncSocket/0.0.1/CocoaAsyncSocket.podspec
- Loading branch information
Showing
42 changed files
with
161 additions
and
323 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 |
---|---|---|
|
@@ -2,4 +2,7 @@ language: ruby | |
rvm: | ||
- 1.8.7 | ||
- 1.9.3 | ||
branches: | ||
only: | ||
- master | ||
install: rake travis:setup |
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
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
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,19 @@ | ||
Pod::Spec.new do |s| | ||
s.name = 'AdMob' | ||
s.version = '6.0.1' | ||
s.license = 'Commercial' | ||
s.summary = 'The Google AdMob Ads SDK.' | ||
s.homepage = 'https://developers.google.com/mobile-ads-sdk/download' | ||
s.author = 'Google' | ||
s.source = { :http => 'http://dl.google.com/googleadmobadssdk/googleadmobadssdkios.zip' } | ||
s.description = %{ | ||
The Google AdMob Ads SDK is the next generation in Google mobile advertising featuring refined ad formats and streamlined APIs for access to Google's AdMob and DoubleClick For Publishers (upgraded DFP) [Android and iOS only] mobile advertising solutions. | ||
} | ||
|
||
s.platform = :ios | ||
s.source_files = '**/*.h' | ||
s.library = 'GoogleAdMobAds' | ||
s.frameworks = 'AudioToolbox', 'MessageUI', 'SystemConfiguration', 'CoreGraphics' | ||
s.xcconfig = { 'LIBRARY_SEARCH_PATHS' => "$(SRCROOT)/Pods/AdMob/GoogleAdMobAdsSdkiOS-6.0.1" } | ||
|
||
end |
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
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
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
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
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
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
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
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
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
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
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
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,20 +1,20 @@ | ||
Pod::Spec.new do |s| | ||
s.name = 'CocoaHTTPServer' | ||
s.version = '2.2.1' | ||
s.license = 'BSD' | ||
s.summary = 'A small, lightweight, embeddable HTTP server for Mac OS X or iOS applications' | ||
s.homepage = 'https://github.com/robbiehanson/CocoaHTTPServer' | ||
s.authors = { 'Robbie Hanson' => 'cocoahttpserver@googlegroups.com' } | ||
s.source = { :git => 'https://github.com/robbiehanson/CocoaHTTPServer.git', :tag => '2.2.1' } | ||
s.source_files = '{Core,Extensions}/**/*.{h,m}' | ||
s.clean_paths = %w{Samples Vendor} | ||
if config.ios? | ||
s.frameworks = 'CFNetwork', 'Security' | ||
else | ||
s.frameworks = 'CoreServices', 'Security' | ||
end | ||
s.library = 'xml2' | ||
s.xcconfig = { 'HEADER_SEARCH_PATHS' => '$(SDKROOT)/usr/include/libxml2' } | ||
s.name = 'CocoaHTTPServer' | ||
s.version = '2.2.1' | ||
s.license = 'BSD' | ||
s.summary = 'A small, lightweight, embeddable HTTP server for Mac OS X or iOS applications' | ||
s.homepage = 'https://github.com/robbiehanson/CocoaHTTPServer' | ||
s.authors = { 'Robbie Hanson' => 'cocoahttpserver@googlegroups.com' } | ||
s.source = { :git => 'https://github.com/robbiehanson/CocoaHTTPServer.git', :tag => '2.2.1' } | ||
s.source_files = '{Core,Extensions}/**/*.{h,m}' | ||
s.clean_paths = %w{Samples Vendor} | ||
|
||
s.ios.frameworks = 'CFNetwork', 'Security' | ||
s.osx.frameworks = 'CoreServices', 'Security' | ||
|
||
s.library = 'xml2' | ||
s.xcconfig = { 'HEADER_SEARCH_PATHS' => '$(SDKROOT)/usr/include/libxml2' } | ||
|
||
s.dependency "CocoaAsyncSocket", "0.0.1" | ||
s.dependency "CocoaLumberjack", "1.3" | ||
end |
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
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
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
Oops, something went wrong.