Skip to content

Commit

Permalink
Merge branch 'master' of github.com:CocoaPods/Specs
Browse files Browse the repository at this point in the history
  • Loading branch information
mattt committed Oct 14, 2012
2 parents 4f9b643 + 97a0e0d commit db2707e
Show file tree
Hide file tree
Showing 253 changed files with 3,856 additions and 624 deletions.
12 changes: 12 additions & 0 deletions AALaunchTransition/0.1.0/AALaunchTransition.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
Pod::Spec.new do |s|
s.name = "AALaunchTransition"
s.version = "0.1.0"
s.platform = :ios
s.summary = "Simple framework to let your application's launch image fade-out to its initial view."
s.homepage = "https://github.com/ahmet/AALaunchTransition"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "Ahmet AYGÜN" => "me@ahmetaygun.net" }
s.source = { :git => "https://github.com/ahmet/AALaunchTransition.git", :tag => "v0.1.0" }
s.source_files = 'AALaunchTransition/*.{h,m}'
s.requires_arc = true
end
12 changes: 12 additions & 0 deletions AALaunchTransition/0.1.1/AALaunchTransition.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
Pod::Spec.new do |s|
s.name = "AALaunchTransition"
s.version = "0.1.1"
s.platform = :ios
s.summary = "Simple framework to let your application's launch image fade-out to its initial view."
s.homepage = "https://github.com/ahmet/AALaunchTransition"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "Ahmet AYGÜN" => "me@ahmetaygun.net" }
s.source = { :git => "https://github.com/ahmet/AALaunchTransition.git", :tag => "v0.1.1" }
s.source_files = 'AALaunchTransition/*.{h,m}'
s.requires_arc = true
end
19 changes: 17 additions & 2 deletions AFNetworking/1.0/AFNetworking.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,24 @@ Pod::Spec.new do |s|
s.summary = 'A delightful iOS and OS X networking framework.'
s.homepage = 'https://github.com/AFNetworking/AFNetworking'
s.authors = {'Mattt Thompson' => 'm@mattt.me', 'Scott Raymond' => 'sco@gowalla.com'}
s.source = { :git => 'https://github.com/AFNetworking/AFNetworking.git', :tag => '1.0RC3' }
s.source = { :git => 'https://github.com/AFNetworking/AFNetworking.git', :tag => '1.0RC4' }
s.source_files = 'AFNetworking'
s.requires_arc = true

s.framework = 'SystemConfiguration'
s.ios.deployment_target = '5.0'
s.ios.frameworks = 'MobileCoreServices', 'SystemConfiguration'

s.osx.deployment_target = '10.7'
s.osx.frameworks = 'CoreServices', 'SystemConfiguration'

s.prefix_header_contents = <<-EOS
#import <Availability.h>
#if __IPHONE_OS_VERSION_MIN_REQUIRED
#import <SystemConfiguration/SystemConfiguration.h>
#import <MobileCoreServices/MobileCoreServices.h>
#else
#import <SystemConfiguration/SystemConfiguration.h>
#import <CoreServices/CoreServices.h>
#endif
EOS
end
14 changes: 14 additions & 0 deletions AFNetworking/1.0RC3/AFNetworking.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
Pod::Spec.new do |s|
s.name = 'AFNetworking'
s.version = '1.0RC3'
s.license = 'MIT'
s.summary = 'A delightful iOS and OS X networking framework.'
s.homepage = 'https://github.com/AFNetworking/AFNetworking'
s.authors = {'Mattt Thompson' => 'm@mattt.me', 'Scott Raymond' => 'sco@gowalla.com'}
s.source = { :git => 'https://github.com/AFNetworking/AFNetworking.git', :tag => '1.0RC3' }
s.source_files = 'AFNetworking'
s.requires_arc = true

s.framework = 'SystemConfiguration'
s.prefix_header_contents = "#import <SystemConfiguration/SystemConfiguration.h>"
end
13 changes: 13 additions & 0 deletions AGImageChecker/0.0.1/AGImageChecker.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
Pod::Spec.new do |s|
s.name = 'AGImageChecker'
s.version = '0.0.1'
s.platform = :ios
s.summary = "Light library to visually check your app images."
s.homepage = "https://github.com/angelolloqui/AGImageChecker"
s.author = 'Angel G. Olloqui'
s.license = 'BSD'
s.source = { :git => "https://github.com/angelolloqui/AGImageChecker.git", :tag => '0.0.1' }
s.source_files = 'src/**/*.{h,m}'
s.resources = 'src/**/*.png'
s.requires_arc = true
end
28 changes: 28 additions & 0 deletions AGImageChecker/1.0.0/AGImageChecker.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
Pod::Spec.new do |s|
s.name = 'AGImageChecker'
s.version = '1.0.0'
s.platform = :ios
s.summary = "Light library to visually check your app images."
s.homepage = "https://github.com/angelolloqui/AGImageChecker"
s.author = 'Angel G. Olloqui'
s.license = 'BSD'
s.source = { :git => "https://github.com/angelolloqui/AGImageChecker.git", :tag => '1.0.0' }

s.source_files = 'src/*.{h,m}', 'src/categories/*.{h,m}', 'src/UI/*.{h,m}', 'src/plugins/*.{h,m}'
s.resources = 'src/UI/**/*.png'
s.requires_arc = true


s.subspec 'Dropbox' do |dropbox|
dropbox.source_files = 'src/plugins/dropbox/*.{h,m}', 'src/plugins/dropbox/fixes/*.{h,m}'
dropbox.dependency 'Dropbox-iOS-SDK'
dropbox.frameworks = 'QuartzCore'
end


s.subspec 'Base' do |base|
base.source_files = 'src/plugins/base/**/*.{h,m}'
base.frameworks = 'QuartzCore'
end

end
11 changes: 9 additions & 2 deletions ARCHelper/2.1/ARCHelper.podspec
Original file line number Diff line number Diff line change
@@ -1,8 +1,15 @@
Pod::Spec.new do |s|
s.name = "ARCHelper"
s.version = "2.1"
s.summary = "ARC Helper is an Objective-C snippet that can be either pasted into the header of a file or used as a header file in its own right. It is designed to solve the problem of writing library code that can be used with both ARC and non-ARC projects without needing to be modified. It is designed to work with both Mac OS and iOS projects."
s.description = 'ARC Helper is modular. For projects that are designed to work only with ARC enabled, you can use just the second and/or 3rd modules on their own (the part from "Weak reference support" down) and omit the first block. For projects that are iOS only, you don\'t need the 3rd module (the part from "Weak delegate support" down), which deals with weak references to classes such as NSWindowController on Mac OS that do not support weak references under Mac OS 10.7.'
s.summary = "Set of macros for writing library code that can be used with both ARC and non-ARC environments."
s.description = <<-DESC
ARC Helper consists of a set of macros that are designed to be used in place of the standard Objective-C memory management functions and macros.
These macros will generate code appropriate to the build target.
ARC Helper is modular:
- For projects that are designed to work only with ARC enabled, you can use just the second and/or 3rd modules on their own (the part from "Weak reference support" down) and omit the first block.
- For projects that are iOS only, you don't need the 3rd module (the part from "Weak delegate support" down), which deals with weak references to classes such as NSWindowController on Mac OS that do not support weak references under Mac OS 10.7.
DESC
s.homepage = "https://gist.github.com/1563325"
s.license = 'zlib 0.7'
s.author = { "Nick Lockwood" => "http://charcoaldesign.co.uk" }
Expand Down
19 changes: 16 additions & 3 deletions ASStarRatingView/0.1.0/ASStarRatingView.podspec
Original file line number Diff line number Diff line change
@@ -1,11 +1,24 @@
Pod::Spec.new do |s|
s.name = 'ASStarRatingView'
s.version = '0.1.0'
s.license = 'MIT'
s.license = {
:type => 'MIT License',
:text => <<-LICENSE
Copyright (c) 2012 Sam Yang
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
LICENSE
}

s.summary = "ASStarRatingView is a control to rating with stars, it is simple to use and configurable."
s.homepage = 'https://github.com/yggg/ASStarRatingView'
s.homepage = 'https://github.com/yggg/ASStarRatingView.git'
s.author = { 'Sam Yang' => 'yanguango@gmail.com' }
s.source = { :git => 'https://github.com/bl0ckme/ASStarRatingView.git', :tag => 'v0.1.0' }
s.source = { :git => 'https://github.com/yggg/ASStarRatingView.git', :tag => 'v0.1.0' }
s.description = "ASStarRatingView is a control to rating with stars, it is simple to use and configurable."
s.platform = :ios
s.source_files = 'ASStarRatingView/**/*.{h,m}'
Expand Down
14 changes: 14 additions & 0 deletions AZSocketIO/0.0.2/AZSocketIO.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
Pod::Spec.new do |s|
s.name = 'AZSocketIO'
s.version = '0.0.2'
s.license = 'Apache 2.0'
s.summary = 'A socket.io client for objective-c. Cocoapods-friendly. Appledocs. Built of AFNetworking and SocketRocket. Websockets + XHR.'
s.homepage = 'https://github.com/pashields/AZSocketIO'
s.authors = {'Patrick Shields' => 'patrick.m.shields@gmail.com'}
s.source = { :git => 'https://github.com/pashields/AZSocketIO.git', :tag => 'v0.0.2' }
s.source_files = 'AZSocketIO/*.{h,m}', 'AZSocketIO/Protocols/*.{h,m}', 'AZSocketIO/Transports/*.{h,m}'
s.dependency 'SocketRocket'
s.dependency 'AFNetworking'
s.requires_arc = true
s.platform = :ios, 5.0
end
2 changes: 1 addition & 1 deletion AeroGear/0.0.2/AeroGear.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,5 @@ Pod::Spec.new do |s|
s.source_files = 'AeroGear-iOS/AeroGear-iOS'
s.public_header_files = 'AeroGear-iOS/AeroGear-iOS/AeroGear.h', 'AeroGear-iOS/AeroGear-iOS/AGPipe.h', 'AeroGear-iOS/AeroGear-iOS/AGPipeline.h'
s.requires_arc = true
s.dependency 'AFNetworking', '~> 1.0RC1'
s.dependency 'AFNetworking', '1.0RC1'
end
30 changes: 30 additions & 0 deletions AeroGear/0.0.3/AeroGear.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
#
# JBoss, Home of Professional Open Source
# Copyright ${year}, Red Hat, Inc., and individual contributors
# by the @authors tag. See the copyright.txt in the distribution for a
# full listing of individual contributors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
# http://www.apache.org/licenses/LICENSE-2.0
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
Pod::Spec.new do |s|
s.name = "AeroGear"
s.version = "0.0.3"
s.summary = "Provides a lightweight set of utilities for communication, security, storage and more."
s.homepage = "https://github.com/aerogear/aerogear-ios"
s.license = 'Apache License, Version 2.0'
s.author = "Red Hat, Inc."
s.source = { :git => 'https://github.com/aerogear/aerogear-ios.git', :tag => '0.0.3' }
s.platform = :ios
s.source_files = 'AeroGear-iOS/AeroGear-iOS'
s.public_header_files = 'AeroGear-iOS/AeroGear-iOS/AeroGear.h', 'AeroGear-iOS/AeroGear-iOS/AGPipe.h', 'AeroGear-iOS/AeroGear-iOS/AGPipeline.h'
s.requires_arc = true
s.dependency 'AFNetworking', '1.0RC1'
end
30 changes: 30 additions & 0 deletions AeroGear/0.0.4/AeroGear.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
#
# JBoss, Home of Professional Open Source
# Copyright ${year}, Red Hat, Inc., and individual contributors
# by the @authors tag. See the copyright.txt in the distribution for a
# full listing of individual contributors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
# http://www.apache.org/licenses/LICENSE-2.0
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
Pod::Spec.new do |s|
s.name = "AeroGear"
s.version = "0.0.4"
s.summary = "Provides a lightweight set of utilities for communication, security, storage and more."
s.homepage = "https://github.com/aerogear/aerogear-ios"
s.license = 'Apache License, Version 2.0'
s.author = "Red Hat, Inc."
s.source = { :git => 'https://github.com/aerogear/aerogear-ios.git', :tag => '0.0.4' }
s.platform = :ios
s.source_files = 'AeroGear-iOS/AeroGear-iOS'
s.public_header_files = 'AeroGear-iOS/AeroGear-iOS/AeroGear.h', 'AeroGear-iOS/AeroGear-iOS/AGPipe.h', 'AeroGear-iOS/AeroGear-iOS/AGPipeline.h', 'AeroGear-iOS/AeroGear-iOS/AGStore.h', 'AeroGear-iOS/AeroGear-iOS/AGDataManager.h'
s.requires_arc = true
s.dependency 'AFNetworking', '1.0RC1'
end
36 changes: 36 additions & 0 deletions Airbrake-iOS/3.1.0/Airbrake-iOS.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
license = <<EOT
Copyright (C) 2011 GUI Cocoa, LLC.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
EOT

Pod::Spec.new do |s|
s.name = "Airbrake-iOS"
s.version = "3.1.0"
s.summary = "A Airbrake Notifier for iOS."
s.homepage = "http://airbrake.io/pages/ios-notifier"
s.author = { "Airbrake" => "support@airbrake.io" }
s.license = { :type => 'MIT', :text => license }
s.platform = :ios
s.source = { :git => "https://github.com/airbrake/airbrake-ios.git", :tag => "3.1.0" }
s.source_files = 'Airbrake/{notifier,gcalertview}/*.{h,m}'
s.frameworks = 'SystemConfiguration.framework'
s.libraries = 'libxml2.dylib'
s.dependency 'KissXML'
end
13 changes: 13 additions & 0 deletions AsyncSenTest/0.0.1/AsyncSenTest.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@

Pod::Spec.new do |s|
s.name = "AsyncSenTest"
s.version = "0.0.1"
s.summary = "Asynchronous Test for OCTest (SenTest)."
s.homepage = "https://github.com/rharriso/AsyncSenTest"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "Ross T. Harrison" => "rtharrison86@gmail.com" }
s.source = { :git => "https://github.com/rharriso/AsyncSenTest.git", :tag => "0.0.1" }
s.source_files = 'Classes', 'Classes/**/*.{h,m}'
s.frameworks = 'SenTestingKit'
s.xcconfig = { 'FRAMEWORK_SEARCH_PATHS' => '"$(SDKROOT)/Developer/Library/Frameworks" "$(DEVELOPER_LIBRARY_DIR)/Frameworks"' }
end
16 changes: 16 additions & 0 deletions BHTabBar/1.0.0/BHTabBar.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
Pod::Spec.new do |s|
s.name = "BHTabBar"
s.version = "1.0.0"
s.summary = "A web-browser like tab bar implementation for iOS4+."
s.homepage = "https://github.com/fictorial/BHTabBar"

s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "Brian Hammond" => "brian@fictorial.com" }
s.source = { :git => "https://github.com/fictorial/BHTabBar.git", :tag => "1.0.0" }

s.platform = :ios

s.source_files = 'Source/*.{h,m}'

s.framework = 'CoreGraphics'
end
23 changes: 12 additions & 11 deletions BJRangeSliderWithProgress/0.0.1/BJRangeSliderWithProgress.podspec
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
Pod::Spec.new do |s|
s.name = "BJRangeSliderWithProgress"
s.version = "0.0.1"
s.summary = "A \"progress bar\" that also allows you to select a range. I use it to indicate progress of recording audio, represent trimming it, and then playing back only the selected range."
s.homepage = "https://github.com/barrettj/BJRangeSliderWithProgress"
s.license = 'MIT'
s.author = { "Barrett Jacobsen" => "admin@barrettj.com" }
s.source = { :git => "https://github.com/barrettj/BJRangeSliderWithProgress.git", :tag => "1.0.0"}
s.platform = :ios, '4.3'
s.source_files = 'BJRangeSliderWithProgress/BJRangeSliderWithProgress'
s.resources = "BJRangeSliderWithProgress/BJRangeSliderWithProgress/*.png"
s.requires_arc = true
s.name = "BJRangeSliderWithProgress"
s.version = "0.0.1"
s.summary = '"Progress bar" that also allows to select a range.'
s.description = '"Progress bar" that also allows to select a range. Can be used to indicate the progress of recording audio, represent trimming it, and then playing back only the selected range.'
s.homepage = "https://github.com/barrettj/BJRangeSliderWithProgress"
s.license = 'MIT'
s.author = { "Barrett Jacobsen" => "admin@barrettj.com" }
s.source = { :git => "https://github.com/barrettj/BJRangeSliderWithProgress.git", :tag => "1.0.0"}
s.platform = :ios, '4.3'
s.source_files = 'BJRangeSliderWithProgress/BJRangeSliderWithProgress'
s.resources = "BJRangeSliderWithProgress/BJRangeSliderWithProgress/*.png"
s.requires_arc = true
end
10 changes: 5 additions & 5 deletions BaseModel/2.3.1/BaseModel.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
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.summary = "BaseModel provides a base class for building model objects for your iOS or Mac OS projects."
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.
Expand All @@ -11,10 +11,10 @@ Pod::Spec.new do |s|
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.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'
Expand Down
15 changes: 15 additions & 0 deletions BrynKit/0.0.1/BrynKit.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
Pod::Spec.new do |s|
s.name = "BrynKit"
s.version = "0.0.1"
s.author = { "bryn austin bellomy" => "bryn.bellomy@gmail.com" }
s.summary = "Macros and helpers for logging, debugging, and metaprogramming."
s.homepage = "http://brynbellomy.github.com/BrynKit"
s.license = 'WTFPL'


s.source = { :git => "https://github.com/brynbellomy/BrynKit.git", :commit => "8431b9df4669abeb58bd233290de93e75a5f5f12" }
s.source_files = '*.{h,m}'
s.requires_arc = true
s.xcconfig = { 'PUBLIC_HEADERS_FOLDER_PATH' => 'include/$(TARGET_NAME)' }
s.prefix_header_contents = "#import <BrynKit/BrynKit.h>"
end
16 changes: 16 additions & 0 deletions Bully/0.2.0/Bully.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
Pod::Spec.new do |s|
s.name = 'Bully'
s.version = '0.2.0'
s.platform = :ios, '5.0'
s.summary = 'Pusher Objective-C Client.'
s.homepage = 'https://github.com/samsoffes/bully'
s.author = { 'Sam Soffes' => 'sam@samsoff.es' }
s.source = { :git => 'https://github.com/samsoffes/bully.git', :tag => '0.2.0' }
s.description = 'Simply Objective-C client for Pusher.'
s.source_files = 'Bully/*.{h,m}'
s.frameworks = 'CFNetwork'
s.requires_arc = true
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.dependency 'SocketRocket'
s.dependency 'Reachability'
end
Loading

0 comments on commit db2707e

Please sign in to comment.