Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
jakemarsh committed Aug 4, 2012
2 parents a028d1b + 8a1a5a8 commit cb14feb
Show file tree
Hide file tree
Showing 107 changed files with 1,639 additions and 133 deletions.
21 changes: 21 additions & 0 deletions AFCache/0.0.1/AFCache.podspec
@@ -0,0 +1,21 @@
Pod::Spec.new do |s|
s.name = "AFCache"
s.version = "0.0.1"
s.summary = "AFCache is an HTTP cache for iOS and OSX seeking towards full RFC2616 compliance."
s.description = <<-DESC
AFCache is an HTTP cache for iOS and OSX seeking towards full RFC2616 compliance.
The cache was initially written because on iOS, NSURLCache ignores NSURLCacheStorageAllowed
and instead treats it as NSURLCacheStorageAllowedInMemoryOnly which is pretty useless for a persistent cache.
DESC
s.homepage = "https://github.com/artifacts/AFCache"
s.license = 'Apache License, Version 2.0'
s.author = { "Michael Markowski" => "m.markowski@artifacts.de" }
s.source = { :git => "https://github.com/artifacts/AFCache.git", :commit => "ca5ca130dbb097100b9501cad59d877c9806c67d" }

# Migth need to extract third party as dependencies
s.ios.source_files = 'src/iOS', 'src/shared', 'src/3rdparty/**/*.{h,m}'
s.osx.source_files = 'src/OSX', 'src/shared', 'src/3rdparty/**/*.{h,m}'
s.framework = 'SystemConfiguration'
s.library = 'z'
s.compiler_flags = '-Wno-distributed-object-modifiers', '-Wno-format-extra-args', '-Wno-logical-op-parentheses', '-Wno-format'
end
1 change: 1 addition & 0 deletions ASIHTTPRequest/1.8.1/ASIHTTPRequest.podspec
Expand Up @@ -27,6 +27,7 @@ Pod::Spec.new do |s|
s.osx.frameworks = 'SystemConfiguration', 'CoreServices' s.osx.frameworks = 'SystemConfiguration', 'CoreServices'


s.library = 'z.1' s.library = 'z.1'
s.compiler_flags = '-Wno-format', '-Wno-format-extra-args'


s.subspec 'ASIWebPageRequest' do |ws| s.subspec 'ASIWebPageRequest' do |ws|
ws.source_files = 'Classes/ASIWebPageRequest/' ws.source_files = 'Classes/ASIWebPageRequest/'
Expand Down
12 changes: 12 additions & 0 deletions AutoCoding/1.2/AutoCoding.podspec
@@ -0,0 +1,12 @@
Pod::Spec.new do |s|
s.name = "AutoCoding"
s.version = "1.2"
s.summary = "AutoCoding is a category on NSObject that provides automatic support for NSCoding to any object."
s.homepage = "https://github.com/nicklockwood/AutoCoding"
s.license = 'zlib'
s.author = { "Nick Lockwood" => "email@address.com" }
s.source = { :git => "https://github.com/nicklockwood/AutoCoding.git", :tag => "1.2" }
s.ios.deployment_target = '3.0'
s.osx.deployment_target = '10.6'
s.source_files = 'AutoCoding'
end
14 changes: 14 additions & 0 deletions BDToastAlert/1.0.0/BDToastAlert.podspec
@@ -0,0 +1,14 @@
Pod::Spec.new do |s|
s.name = 'BDToastAlert'
s.version = '1.0.0'
s.license = 'BSD'
s.summary = 'Easy way to display non-obstructive messages to user without having to worry about its behavior and conflicts with other views.'
s.homepage = 'https://github.com/norsez/BDToastAlert'
s.author = { 'Norsez Orankijanan' => 'norsez@gmail.com' }
s.source = { :git => 'https://github.com/norsez/BDToastAlert.git', :tag => '1.0.0' }
s.description = 'Easy way to display non-obstructive messages to user without having to worry about its behavior and conflicts with other views.'
s.platform = :ios
s.source_files = 'Classes', 'BDToastAlert/BDToastAlert/BDToastAlert'
s.frameworks = 'QuartzCore'
s.requires_arc = true
end
12 changes: 12 additions & 0 deletions BSKeyboardControls/1.1/BSKeyboardControls.podspec
@@ -0,0 +1,12 @@
Pod::Spec.new do |s|
s.name = "BSKeyboardControls"
s.version = "1.1"
s.summary = "Put controls above the keyboard on your iPhone or iPad app."
s.homepage = "https://github.com/SimonBS/BSKeyboardControls"
s.license = "MIT"
s.author = { "Simon Støvring" => "simon@codeinacup.com" }
s.description = "Easily put back, next and done controls above the keyboard on your iPhone or iPad app."
s.source = { :git => "https://github.com/SimonBS/BSKeyboardControls.git", :tag => "v1.1" }
s.platform = :ios
s.source_files = "BSKeyboardControls/BSKeyboardControls.{h,m}"
end
50 changes: 50 additions & 0 deletions BaseKit/0.2.5/BaseKit.podspec
@@ -0,0 +1,50 @@
Pod::Spec.new do |s|
s.name = 'BaseKit'
s.version = '0.2.5'
s.license = 'Apache 2'
s.summary = 'BaseKit is a set of IOS class to make your life easier.'
s.homepage = 'https://github.com/brunow/BaseKit'
s.author = { 'Bruno Wernimont' => 'bruno.wernimont+github@gmail.com' }
s.source = { :git => 'https://github.com/brunow/BaseKit.git', :tag => '0.2.5' }

s.description = 'BaseKit is a set of IOS class to make your life easier.'
s.platform = :ios
s.preserve_paths = 'Examples', 'GHUnitIOS.framework', 'Test', 'Vendor', 'README.md', '.gitignore', 'BaseKit.xcodeproj', 'LICENSE', 'form-mapping.png'
s.compiler_flags = '-Wno-format'

s.subspec 'Core' do |core|
core.source_files = 'Code/Core/*.{h,m}'
end

s.subspec 'View' do |view|
view.source_files = 'Code/View/*.{h,m}'
view.dependency 'BaseKit/Core'
end

s.subspec 'CellMapping' do |cell_mapping|
cell_mapping.source_files = 'Code/CellMapping/*.{h,m}'
cell_mapping.dependency 'BaseKit/Core'
cell_mapping.dependency 'BaseKit/View'
end

s.subspec 'LocationManager' do |location_manager|
location_manager.source_files = 'Code/LocationManager/*.{h,m}'
location_manager.framework = 'CoreLocation'
location_manager.dependency 'BaseKit/Core'
end

s.subspec 'FormField' do |form_field|
form_field.source_files = 'Code/FormField/*.{h,m}'
form_field.dependency 'BaseKit/Core'
form_field.dependency 'BaseKit/View'
end

s.subspec 'FormMapping' do |form_mapping|
form_mapping.source_files = 'Code/FormMapping/*.{h,m}'
form_mapping.dependency 'BaseKit/Core'
form_mapping.dependency 'BaseKit/View'
form_mapping.dependency 'BaseKit/FormField'
form_mapping.dependency 'BWLongTextViewController'
form_mapping.dependency 'ActionSheetPicker2'
end
end
23 changes: 23 additions & 0 deletions BaseModel/2.3.1/BaseModel.podspec
@@ -0,0 +1,23 @@
Pod::Spec.new do |s|
s.name = "BaseModel"
s.version = "2.3.1"
s.summary = "BaseModel provides a base class for building model objects for your iOS or Mac OS projects. It saves you the hassle of writing boilerplate code, and encourages good practices by reducing the incentive to cut corners in your model implementation."
s.description = <<-DESC
BaseModel provides a base class for building model objects for your iOS or Mac OS projects. It saves you the hassle of writing boilerplate code, and encourages good practices by reducing the incentive to cut corners in your model implementation.
The BaseModel object uses Plists and the NSCoding protocol for serialisation. It is not designed for use with Core Data, although in principle the class could be extended to work with Core Data if needed by changing the BaseModel superclass to an NSManagedObject.
BaseModel is really designed as an alternative to Core Data for developers who prefer to have a little more control over the implementation of their data stack. BaseModel gives you precise control over the location and serialisation of your data files, whilst still proving enough automatic behaviour to save you from writing the same code over and over again.
BaseModel is designed to work with the AutoCoding and HRCoder libraries.
DESC
s.homepage = "http://charcoaldesign.co.uk/source/cocoa#basemodel"
s.license = 'zlib'
s.author = { "Nick Lockwood" => "email@address.com" }
s.source = { :git => "https://github.com/nicklockwood/BaseModel.git", :tag => "2.3.1" }

s.ios.deployment_target = '4.0'
s.osx.deployment_target = '10.6'
s.source_files = 'BaseModel'
s.preserve_paths = "RELEASE NOTES.md"
end
@@ -0,0 +1,22 @@
Pod::Spec.new do |s|
s.name = "BeamMusicPlayerViewController"
s.version = "0.1.0"
s.summary = "An iPhone view controller to visualize and control music playback."
s.homepage = "https://github.com/BeamApp/MusicPlayerViewController"
s.license = {:type => 'New BSD', :file => 'LICENSE'}
s.authors = { 'Moritz Haarmann' => 'http://momo.brauchtman.net', 'Heiko Behrens' => 'http://HeikoBehrens.net' }
s.source = { :git => 'https://github.com/BeamApp/MusicPlayerViewController.git', :tag => '0.1.0' }
s.platform = :ios, '5.0'
s.source_files = FileList['Source/*.{h,m}'].exclude('Source/BeamMPMusicPlayerProvider.{h,m}')
s.resources = 'Source/BeamMusicPlayerController.bundle'
s.frameworks = 'CoreGraphics'
s.requires_arc = true
s.dependency 'OBSlider', '~> 1.1'

s.preferred_dependency = 'MediaPlayer'
s.subspec 'MediaPlayer' do |mediaPlayer|
mediaPlayer.source_files = 'Source/BeamMPMusicPlayerProvider.{h,m}'
mediaPlayer.frameworks = 'MediaPlayer'
end

end
Expand Up @@ -6,7 +6,7 @@ Pod::Spec.new do |s|
s.homepage = 'https://github.com/gpambrozio/BlockAlertsAnd-ActionSheets' s.homepage = 'https://github.com/gpambrozio/BlockAlertsAnd-ActionSheets'
s.author = { 'Gustavo Ambrozio' => '' } s.author = { 'Gustavo Ambrozio' => '' }
s.source = { :git => 'https://github.com/gpambrozio/BlockAlertsAnd-ActionSheets.git', :tag => '1.0.0' } s.source = { :git => 'https://github.com/gpambrozio/BlockAlertsAnd-ActionSheets.git', :tag => '1.0.0' }
s.description = 'Beautifully done UIAlertView and UIActionSheet replacements inspired by TweetBot' s.description = 'Beautifully done UIAlertView and UIActionSheet replacements inspired by TweetBot.'
s.platform = :ios s.platform = :ios
s.source_files = 'BlockAlertsDemo/ToAddToYourProjects', 'BlockAlertsDemo/ProjectSpecific/BlockUI.h' s.source_files = 'BlockAlertsDemo/ToAddToYourProjects', 'BlockAlertsDemo/ProjectSpecific/BlockUI.h'
s.resources = "BlockAlertsDemo/images/ActionSheet/*.png", "BlockAlertsDemo/images/AlertView/*.png" s.resources = "BlockAlertsDemo/images/ActionSheet/*.png", "BlockAlertsDemo/images/AlertView/*.png"
Expand Down
2 changes: 1 addition & 1 deletion CocoaPods-version.yml
@@ -1,3 +1,3 @@
--- ---
last: 0.9.2 last: 0.10.0
min: 0.6.0 min: 0.6.0
23 changes: 23 additions & 0 deletions Cordova/1.0.0/Cordova.podspec
@@ -0,0 +1,23 @@
Pod::Spec.new do |s|
s.name = "Cordova"
s.version = "1.0.0"
s.summary = "Library to include Cordova (formally known as PhoneGap) as dependecy in own applications."
s.homepage = "http://www.phonegap.com/"
s.author = "Original developed by Nitobi (acquire by Adobe) and all other PhoneGap Contributors"

s.license = 'The "New" BSD License *or* the MIT License (2008)'

# s.source = { :git => "http://git-wip-us.apache.org/repos/asf/incubator-cordova-ios.git", :tag => "1.0.0" }
s.source = { :git => "https://github.com/apache/incubator-cordova-ios.git", :tag => "1.0.0" }
s.source_files = 'PhoneGapLib/Classes/*.{h,m}'
s.resources = 'PhoneGapLib/javascripts/core/*.js', 'PhoneGapLib/VERSION'
s.compiler_flags = '-Wno-format', '-Wno-deprecated-objc-isa-usage', '-Wno-unused-value', '-Wno-visibility'

s.platform = :ios, '4.3'

s.requires_arc = false

s.dependency 'SBJson', '~> 2.2.3'
s.frameworks = 'AddressBook', 'AddressBookUI', 'AudioToolbox', 'AVFoundation', 'CoreLocation', 'MediaPlayer', 'QuartzCore', 'SystemConfiguration', 'MobileCoreServices', 'CoreMedia'

end
23 changes: 23 additions & 0 deletions Cordova/1.1.0/Cordova.podspec
@@ -0,0 +1,23 @@
Pod::Spec.new do |s|
s.name = "Cordova"
s.version = "1.1.0"
s.summary = "Library to include Cordova (formally known as PhoneGap) as dependecy in own applications."
s.homepage = "http://www.phonegap.com/"
s.author = "Original developed by Nitobi (acquire by Adobe) and all other PhoneGap Contributors"

s.license = 'The "New" BSD License *or* the MIT License (2008)'

# s.source = { :git => "http://git-wip-us.apache.org/repos/asf/incubator-cordova-ios.git", :tag => "1.1.0" }
s.source = { :git => "https://github.com/apache/incubator-cordova-ios.git", :tag => "1.1.0" }
s.source_files = 'PhoneGapLib/Classes/*.{h,m}'
s.resources = 'PhoneGapLib/javascripts/core/*.js', 'PhoneGapLib/VERSION'
s.compiler_flags = '-Wno-format', '-Wno-deprecated-objc-isa-usage', '-Wno-visibility'

s.platform = :ios, '4.3'

s.requires_arc = false

s.dependency 'SBJson', '~> 2.2.3'
s.frameworks = 'AddressBook', 'AddressBookUI', 'AudioToolbox', 'AVFoundation', 'CoreLocation', 'MediaPlayer', 'QuartzCore', 'SystemConfiguration', 'MobileCoreServices', 'CoreMedia'

end
23 changes: 23 additions & 0 deletions Cordova/1.2.0/Cordova.podspec
@@ -0,0 +1,23 @@
Pod::Spec.new do |s|
s.name = "Cordova"
s.version = "1.2.0"
s.summary = "Library to include Cordova (formally known as PhoneGap) as dependecy in own applications."
s.homepage = "http://www.phonegap.com/"
s.author = "Original developed by Nitobi (acquire by Adobe) and all other PhoneGap Contributors"

s.license = 'The "New" BSD License *or* the MIT License (2008)'

# s.source = { :git => "http://git-wip-us.apache.org/repos/asf/incubator-cordova-ios.git", :tag => "1.2.0" }
s.source = { :git => "https://github.com/apache/incubator-cordova-ios.git", :tag => "1.2.0" }
s.source_files = 'PhoneGapLib/Classes/*.{h,m}'
s.resources = 'PhoneGapLib/javascripts/core/*.js', 'PhoneGapLib/VERSION'
s.compiler_flags = '-Wno-format', '-Wno-deprecated-objc-isa-usage'

s.platform = :ios, '4.3'

s.requires_arc = false

s.dependency 'JSONKit', '~> 1.4'
s.frameworks = 'AddressBook', 'AddressBookUI', 'AudioToolbox', 'AVFoundation', 'CoreLocation', 'MediaPlayer', 'QuartzCore', 'SystemConfiguration', 'MobileCoreServices', 'CoreMedia'

end
23 changes: 23 additions & 0 deletions Cordova/1.3.0/Cordova.podspec
@@ -0,0 +1,23 @@
Pod::Spec.new do |s|
s.name = "Cordova"
s.version = "1.3.0"
s.summary = "Library to include Cordova (formally known as PhoneGap) as dependecy in own applications."
s.homepage = "http://www.phonegap.com/"
s.author = "Original developed by Nitobi (acquire by Adobe) and all other PhoneGap Contributors"

s.license = 'The "New" BSD License *or* the MIT License (2008)'

# s.source = { :git => "http://git-wip-us.apache.org/repos/asf/incubator-cordova-ios.git", :tag => "1.3.0" }
s.source = { :git => "https://github.com/apache/incubator-cordova-ios.git", :tag => "1.3.0" }
s.source_files = 'PhoneGapLib/Classes/*.{h,m}'
s.resources = 'PhoneGapLib/javascripts/core/*.js', 'PhoneGapLib/VERSION'
s.compiler_flags = '-Wno-format', '-Wno-deprecated-objc-isa-usage'

s.platform = :ios, '4.3'

s.requires_arc = false

s.dependency 'JSONKit', '~> 1.4'
s.frameworks = 'AddressBook', 'AddressBookUI', 'AudioToolbox', 'AVFoundation', 'CoreLocation', 'MediaPlayer', 'QuartzCore', 'SystemConfiguration', 'MobileCoreServices', 'CoreMedia'

end
23 changes: 23 additions & 0 deletions Cordova/1.4.0/Cordova.podspec
@@ -0,0 +1,23 @@
Pod::Spec.new do |s|
s.name = "Cordova"
s.version = "1.4.0"
s.summary = "Library to include Cordova (formally known as PhoneGap) as dependecy in own applications."
s.homepage = "http://www.phonegap.com/"
s.author = "Original developed by Nitobi (acquire by Adobe) and all other PhoneGap Contributors"

s.license = 'The "New" BSD License *or* the MIT License (2008)'

# s.source = { :git => "http://git-wip-us.apache.org/repos/asf/incubator-cordova-ios.git", :tag => "1.4.0" }
s.source = { :git => "https://github.com/apache/incubator-cordova-ios.git", :tag => "1.4.0" }
s.source_files = 'PhoneGapLib/Classes/*.{h,m}'
s.resources = 'PhoneGapLib/javascripts/core/*.js', 'PhoneGapLib/VERSION'
s.compiler_flags = '-Wno-format', '-Wno-deprecated-objc-isa-usage', '-Wno-deprecated-declarations'

s.platform = :ios, '4.3'

s.requires_arc = false

s.dependency 'JSONKit', '~> 1.4'
s.frameworks = 'AddressBook', 'AddressBookUI', 'AudioToolbox', 'AVFoundation', 'CoreLocation', 'MediaPlayer', 'QuartzCore', 'SystemConfiguration', 'MobileCoreServices', 'CoreMedia'

end
23 changes: 23 additions & 0 deletions Cordova/1.4.1/Cordova.podspec
@@ -0,0 +1,23 @@
Pod::Spec.new do |s|
s.name = "Cordova"
s.version = "1.4.1"
s.summary = "Library to include Cordova (formally known as PhoneGap) as dependecy in own applications."
s.homepage = "http://www.phonegap.com/"
s.author = "Original developed by Nitobi (acquire by Adobe) and all other PhoneGap Contributors"

s.license = 'The "New" BSD License *or* the MIT License (2008)'

# s.source = { :git => "http://git-wip-us.apache.org/repos/asf/incubator-cordova-ios.git", :tag => "1.4.1" }
s.source = { :git => "https://github.com/apache/incubator-cordova-ios.git", :tag => "1.4.1" }
s.source_files = 'PhoneGapLib/Classes/*.{h,m}'
s.resources = 'PhoneGapLib/javascripts/core/*.js', 'PhoneGapLib/VERSION'
s.compiler_flags = '-Wno-format', '-Wno-deprecated-objc-isa-usage', '-Wno-deprecated-declarations'

s.platform = :ios, '4.3'

s.requires_arc = false

s.dependency 'JSONKit', '~> 1.4'
s.frameworks = 'AddressBook', 'AddressBookUI', 'AudioToolbox', 'AVFoundation', 'CoreLocation', 'MediaPlayer', 'QuartzCore', 'SystemConfiguration', 'MobileCoreServices', 'CoreMedia'

end
23 changes: 23 additions & 0 deletions Cordova/1.5.0/Cordova.podspec
@@ -0,0 +1,23 @@
Pod::Spec.new do |s|
s.name = "Cordova"
s.version = "1.5.0"
s.summary = "Library to include Cordova as dependecy in own applications."
s.homepage = "http://incubator.apache.org/cordova/"
s.author = "Original developed by Nitobi (acquire by Adobe) and all other PhoneGap and Cordova Contributors"

s.license = 'Apache License, Version 2.0'

# s.source = { :git => "http://git-wip-us.apache.org/repos/asf/incubator-cordova-ios.git", :tag => "1.5.0" }
s.source = { :git => "https://github.com/apache/incubator-cordova-ios.git", :tag => "1.5.0" }
s.source_files = 'CordovaLib/Classes/*.{h,m}'
s.resources = 'CordovaLib/javascripts/core/*.js', 'CordovaLib/VERSION'
s.compiler_flags = '-Wno-format', '-Wno-deprecated-objc-isa-usage'

s.platform = :ios, '4.3'

s.requires_arc = false

s.dependency 'JSONKit', '~> 1.4'
s.frameworks = 'AddressBook', 'AddressBookUI', 'AudioToolbox', 'AVFoundation', 'CoreLocation', 'MediaPlayer', 'QuartzCore', 'SystemConfiguration', 'MobileCoreServices', 'CoreMedia'

end
23 changes: 23 additions & 0 deletions Cordova/1.6.0/Cordova.podspec
@@ -0,0 +1,23 @@
Pod::Spec.new do |s|
s.name = "Cordova"
s.version = "1.6.0"
s.summary = "Library to include Cordova as dependecy in own applications."
s.homepage = "http://incubator.apache.org/cordova/"
s.author = "Original developed by Nitobi (acquire by Adobe) and all other PhoneGap and Cordova Contributors"

s.license = 'Apache License, Version 2.0'

# s.source = { :git => "http://git-wip-us.apache.org/repos/asf/incubator-cordova-ios.git", :tag => "1.6.0" }
s.source = { :git => "https://github.com/apache/incubator-cordova-ios.git", :tag => "1.6.0" }
s.source_files = 'CordovaLib/Classes/*.{h,m}'
s.resources = 'CordovaLib/javascript/*.js', 'CordovaLib/VERSION'
s.compiler_flags = '-Wno-format', '-Wno-deprecated-objc-isa-usage'

s.platform = :ios, '4.3'

s.requires_arc = false

s.dependency 'JSONKit', '~> 1.4'
s.frameworks = 'AddressBook', 'AddressBookUI', 'AudioToolbox', 'AVFoundation', 'CoreLocation', 'MediaPlayer', 'QuartzCore', 'SystemConfiguration', 'MobileCoreServices', 'CoreMedia'

end
23 changes: 23 additions & 0 deletions Cordova/1.6.1/Cordova.podspec
@@ -0,0 +1,23 @@
Pod::Spec.new do |s|
s.name = "Cordova"
s.version = "1.6.1"
s.summary = "Library to include Cordova as dependecy in own applications."
s.homepage = "http://incubator.apache.org/cordova/"
s.author = "Original developed by Nitobi (acquire by Adobe) and all other PhoneGap and Cordova Contributors"

s.license = 'Apache License, Version 2.0'

# s.source = { :git => "http://git-wip-us.apache.org/repos/asf/incubator-cordova-ios.git", :tag => "1.6.1" }
s.source = { :git => "https://github.com/apache/incubator-cordova-ios.git", :tag => "1.6.1" }
s.source_files = 'CordovaLib/Classes/*.{h,m}'
s.resources = 'CordovaLib/javascript/*.js', 'CordovaLib/VERSION'
s.compiler_flags = '-Wno-format', '-Wno-deprecated-objc-isa-usage'

s.platform = :ios, '4.3'

s.requires_arc = false

s.dependency 'JSONKit', '~> 1.4'
s.frameworks = 'AddressBook', 'AddressBookUI', 'AudioToolbox', 'AVFoundation', 'CoreLocation', 'MediaPlayer', 'QuartzCore', 'SystemConfiguration', 'MobileCoreServices', 'CoreMedia'

end

0 comments on commit cb14feb

Please sign in to comment.