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 Nov 2, 2012
2 parents f0c1f8e + c402fb2 commit 6359fd2
Show file tree
Hide file tree
Showing 8 changed files with 186 additions and 0 deletions.
25 changes: 25 additions & 0 deletions BDKNotifyHUD/1.0.0/BDKNotifyHUD.podspec
Original file line number Original file line Diff line number Diff line change
@@ -0,0 +1,25 @@
Pod::Spec.new do |s|
s.name = 'BDKNotifyHUD'
s.version = '1.0.0'
s.platform = :ios
s.summary = 'An animated UIView for displaying a temporary "bezel" notification, mid-screen.'
s.description = 'An animated UIView for displaying a temporary "bezel" notification, mid-screen.'
s.homepage = 'https://github.com/kreeger/BDKNotifyHUD'
s.license = {
:type => 'MIT',
:text => <<-LICENSE
Copyright (C) 2012 Benjamin Kreeger.
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.author = { 'Benjamin Kreeger' => 'http://ben.kree.gr/' }
s.source = { :git => 'https://github.com/kreeger/BDKNotifyHUD.git', :tag => 'v1.0.0' }
s.source_files = 'BDKNotifyHUD/BDKNotifyHUD.{h,m}'
s.frameworks = 'QuartzCore'
s.requires_arc = true
end
34 changes: 34 additions & 0 deletions Cordova/2.2.0/Cordova.podspec
Original file line number Original file line Diff line number Diff line change
@@ -0,0 +1,34 @@
Pod::Spec.new do |s|
s.name = "Cordova"
s.version = "2.2.0"
s.summary = "Apache Cordova is a platform for building native mobile applications using HTML, CSS and JavaScript."
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 => "2.2.0" }
# s.source = { :git => "https://github.com/apache/incubator-cordova-ios.git", :tag => "2.2.0" }
s.source_files = 'CordovaLib/Classes/*.{h,m}'
s.resources = 'CordovaLib/javascript/*.js', 'CordovaLib/VERSION'

s.platform = :ios, '4.3'
s.requires_arc = true

# TODO: Missing AddressBookUI here, but CocoaPods generates incorrect OTHER_LDFLAGS in Pods/Pods.xcconfig. Will analyse this soon..
# OTHER_LDFLAGS = -ObjC UI -framework AVFoundation <- incorrect UI argument here!

s.frameworks = 'AddressBook', 'AudioToolbox', 'AVFoundation', 'CoreLocation', 'MediaPlayer', 'QuartzCore', 'SystemConfiguration', 'MobileCoreServices', 'CoreMedia', 'UIKit'

# Note: This is not the same like the original JSONKit. Cordova developers decide to integrate
# *a changed copy* (with prefixed class and method names) of it instead of using CocoaPods. :S
# But they missed to translate it like the main project to use ARC, yet.
s.subspec 'JSON' do |json|
json.source_files = 'CordovaLib/Classes/JSON/*.{h,m}'
json.platform = :ios, '4.3'
json.requires_arc = false
# TODO requires_arc does not work for subproject, so set compiler flag by hand until CocoaPods 0.15(?) will support this.
json.compiler_flags = '-fno-objc-arc'
end

end
18 changes: 18 additions & 0 deletions FamilySearchCocoa/0.5.0/FamilySearchCocoa.podspec
Original file line number Original file line Diff line number Diff line change
@@ -0,0 +1,18 @@
Pod::Spec.new do |s|
s.name = "FamilySearchCocoa"
s.version = "0.5.0"
s.summary = "An easy to use library for interacting with the FamilySearch.org API on iOS or OS X"
s.description = <<-DESC
You need to get a developer key from https://devnet.familysearch.org/ first. Then you can easily get the current user, add
parents, children, spouses and modify a persons events like birth, death, marriage date, etc. More is coming soon.
DESC
s.homepage = "https://github.com/FamilySearch/FamilySearchCocoa"
s.license = 'BSD'
s.author = { "Adam Kirk" => "akirk@familysearch.org" }
s.source = { :git => "https://github.com/FamilySearch/FamilySearchCocoa.git", :tag => "0.5.0" }
s.source_files = 'FamilySearchCocoa/*.{h,m}'
s.requires_arc = true
s.dependency 'MTPocket'
s.dependency 'MTDates'
s.dependency 'MTJSONUtils'
end
13 changes: 13 additions & 0 deletions GRMustache/6.1.0/GRMustache.podspec
Original file line number Original file line Diff line number Diff line change
@@ -0,0 +1,13 @@
Pod::Spec.new do |s|
s.name = 'GRMustache'
s.version = '6.1.0'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.summary = 'Production-ready {{ Mustache }} templates for MacOS Cocoa and iOS.'
s.homepage = 'https://github.com/groue/GRMustache'
s.author = { 'Gwendal Roué' => 'gr@pierlis.com' }
s.source = { :git => 'https://github.com/groue/GRMustache.git', :tag => 'v6.1.0' }
s.source_files = 'src/classes'
s.public_header_files = FileList['src/classes/*.h'].exclude(/_private/)
s.framework = 'Foundation'
s.dependency 'JRSwizzle', '~> 1.0'
end
21 changes: 21 additions & 0 deletions Mantle/0.2.1/Mantle.podspec
Original file line number Original file line Diff line number Diff line change
@@ -0,0 +1,21 @@
Pod::Spec.new do |s|
s.name = "Mantle"
s.version = "0.2.1"
s.summary = "Model framework for Cocoa and Cocoa Touch."

s.homepage = "https://github.com/github/Mantle"
s.license = 'MIT'
s.author = { "GitHub" => "support@github.com" }

s.source = { :git => "https://github.com/github/Mantle.git", :tag => "0.2.1" }
s.source_files = 'Mantle'
s.framework = 'Foundation'

s.ios.deployment_target = '5.0' # there are usages of __weak
s.osx.deployment_target = '10.7'
s.requires_arc = true

s.dependency 'libextobjc/EXTScope'
s.dependency 'libextobjc/EXTKeyPathCoding'

end
29 changes: 29 additions & 0 deletions NSArray+Functional/1.0.0/NSArray+Functional.podspec
Original file line number Original file line Diff line number Diff line change
@@ -0,0 +1,29 @@
Pod::Spec.new do |s|
s.name = 'NSArray+Functional'
s.version = '1.0.0'
s.summary = 'ObjC category that adds functional programming methods to NSArray.'
s.homepage = 'https://github.com/grav/nsarray-functional'
s.author = { 'Mikkel Gravgaard' => 'mikkelg@gmail.com' }
s.source = { :git => 'https://github.com/grav/nsarray-functional.git', :tag => '1.0.0' }
s.source_files = 'NSArray+Functional.*'
s.requires_arc = true
s.license = { :type => 'MIT', :text => <<-LIC
Copyright (c) 2012 Mikkel Gravgaard
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.
LIC
}
end
29 changes: 29 additions & 0 deletions PXSourceList/1.2/PXSourceList.podspec
Original file line number Original file line Diff line number Diff line change
@@ -0,0 +1,29 @@
Pod::Spec.new do |s|
s.name = "PXSourceList"
s.version = "1.2"
s.summary = "Source List control for the Mac."
s.description = <<-DESC
Source Lists are used in a lot of Mac OS X applications, but the support for such controls is quite primitive – at best you create an Outline View with Source List highlighting, but none of the features such as badging are built in by default.
PXSourceList is a reusable control – within the context of Source Lists – which makes creating applications with Source Lists a much easier process.
DESC
s.homepage = "https://github.com/Perspx/PXSourceList"
s.author = 'Alex Rozanski'
s.source = { :git => "https://github.com/Perspx/PXSourceList.git", :tag => "v1.2" }
s.platform = :osx, '10.5'
s.source_files = 'PXSourceList'
s.license = {
:type => 'New BSD License',
:text => <<-LICENSE
PXSourceList is licensed under the New BSD License, as detailed below (adapted from OSI http://www.opensource.org/licenses/bsd-license.php):
Copyright © 2011, Alex Rozanski. All rights reserved.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
Neither the name of the author nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
LICENSE
}
end
17 changes: 17 additions & 0 deletions SMCalloutView/1.0.1/SMCalloutView.podspec
Original file line number Original file line Diff line number Diff line change
@@ -0,0 +1,17 @@
Pod::Spec.new do |s|
s.name = "SMCalloutView"
s.version = "1.0.1"
s.summary = "A lightweight callout view class for iOS mimicking UICalloutView."
s.description = <<-DESC
SMCalloutView aims to be an exact replica of the private UICalloutView system control.
We all love those "bubbles" you get when clicking pins in MKMapView. But sadly, it's impossible to present this bubble-style "Callout" UI anywhere outside MKMapView. Phooey! So this class painstakingly recreates this handy control for your pleasure.
DESC
s.homepage = "https://github.com/nfarina/calloutview"
s.license = 'Apache License, Version 2.0'
s.author = { "Nick Farina" => "nfarina@gmail.com" }
s.source = { :git => "https://github.com/nfarina/calloutview.git", :tag => "1.0.1" }
s.platform = :ios
s.source_files = 'SMCalloutView.{h,m}'
s.requires_arc = true
end

0 comments on commit 6359fd2

Please sign in to comment.