Skip to content

Commit

Permalink
Merge pull request #1312 from dkuhnke/master
Browse files Browse the repository at this point in the history
updated urbanairship and sharekit
  • Loading branch information
keith committed Feb 21, 2013
2 parents d354910 + 029c0b4 commit f21d1d2
Show file tree
Hide file tree
Showing 2 changed files with 103 additions and 0 deletions.
77 changes: 77 additions & 0 deletions ShareKit/2.2/ShareKit.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
Pod::Spec.new do |s|
s.name = 'ShareKit'
s.version = '2.2'
s.platform = :ios, '5.0'
s.summary = 'Drop in sharing features for all iPhone and iPad apps.'
s.homepage = 'http://getsharekit.com/'
s.author = 'ShareKit Community'
s.source = { :git => 'https://github.com/dkuhnke/ShareKit.git', :tag => 'v2.2' }
s.license = { :type => 'MIT',
:text => %Q|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:\n| +
%Q|The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n| +
%Q|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| }
s.resource = 'Classes/ShareKit/ShareKit.bundle', 'Classes/ShareKit/Core/SHKSharers.plist'
s.source_files = 'Classes/ShareKit/{Configuration,Core,Customize UI,UI}/**/*.{h,m,c}', 'Classes/ShareKit/Sharers/Actions/**/*.{h,m,c}'
s.frameworks = 'SystemConfiguration', 'Security', 'MessageUI'

s.dependency 'SSKeychain'
s.dependency 'Reachability'

s.subspec 'Evernote' do |evernote|
evernote.source_files = 'Classes/ShareKit/Sharers/Services/Evernote/**/*.{h,m}'
evernote.dependency 'Evernote-SDK-iOS', "1.0.1"
end

s.subspec 'Facebook' do |facebook|
facebook.source_files = 'Classes/ShareKit/Sharers/Services/Facebook/**/*.{h,m}'
facebook.compiler_flags = '-Wno-incomplete-implementation -Wno-protocol -Wno-missing-prototypes'
facebook.dependency 'Facebook-iOS-SDK',"3.1.1"
end

s.subspec 'Flickr' do |flickr|
flickr.source_files = 'Classes/ShareKit/Sharers/Services/Flickr/SHK*.{h,m}'
flickr.framework = 'SystemConfiguration', 'CFNetwork'
flickr.dependency 'objectiveflickr', "2.0.2"
end

s.subspec 'Foursquare' do |foursquare|
foursquare.source_files = 'Classes/ShareKit/Sharers/Services/FoursquareV2/**/*.{h,m}'
foursquare.framework = 'CoreLocation'
foursquare.dependency 'SBJson'
end

s.subspec 'GoogleReader' do |googlereader|
googlereader.source_files = 'Classes/ShareKit/Sharers/Services/Google Reader/**/*.{h,m}'
end

s.subspec 'Instapaper' do |instapaper|
instapaper.source_files = 'Classes/ShareKit/Sharers/Services/Instapaper/**/*.{h,m}'
end

s.subspec 'LinkedIn' do |linkedin|
linkedin.source_files = 'Classes/ShareKit/Sharers/Services/LinkedIn/**/*.{h,m}'
end

s.subspec 'Pinboard' do |pinboard|
pinboard.source_files = 'Classes/ShareKit/Sharers/Services/Pinboard/**/*.{h,m}'
end

s.subspec 'ReadItLater' do |readitlater|
readitlater.source_files = 'Classes/ShareKit/Sharers/Services/Read It Later/**/*.{h,m}'
end

s.subspec 'Tumblr' do |tumblr|
tumblr.source_files = 'Classes/ShareKit/Sharers/Services/Tumblr/**/*.{h,m}'
end

s.subspec 'Twitter' do |twitter|
twitter.source_files = 'Classes/ShareKit/Sharers/Services/Twitter/**/*.{h,m}'
twitter.framework = 'Twitter'
twitter.dependency 'JSONKit'
end

s.subspec 'Vkontakte' do |vkontakte|
vkontakte.source_files = 'Classes/ShareKit/Sharers/Services/Vkontakte/**/*.{h,m}'
vkontakte.dependency 'JSONKit'
end
end
26 changes: 26 additions & 0 deletions UrbanAirship-iOS-SDK/1.4.0/UrbanAirship-iOS-SDK.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
Pod::Spec.new do |s|
s.name = 'UrbanAirship-iOS-SDK'
s.version = '1.4.0'
s.license = 'BSD'
s.platform = :ios

s.summary = 'A simple way to integrate Urban Airship services into your iOS applications.'
s.homepage = 'https://github.com/urbanairship/ios-library'
s.author = { 'Urban Airship' => 'support@urbanairship.com' }
s.source = { :git => 'https://github.com/urbanairship/ios-library.git', :tag => 'v1.4.0' }

# Airship ships both UA-prefixed ASI and SBJson, as well as un-prefixed
# versions that are no longer used in the .xcodeproj.
files = FileList['Airship/**/*.{h,m,c}']
files.exclude(/\/asi-http-request\//)
files.exclude(/\/json-framework\//)
files.exclude(/\/google-toolbox-for-mac\//)
files.exclude(/\/ZipFile-OC\//)
files.exclude(/\/Reachability.*/)
s.source_files = files

s.libraries = 'z', 'sqlite3.0'
s.frameworks = 'CFNetwork', 'CoreGraphics', 'Foundation', 'MobileCoreServices',
'Security', 'SystemConfiguration', 'UIKit', 'CoreTelephony',
'StoreKit', 'CoreLocation', 'MapKit'
end

0 comments on commit f21d1d2

Please sign in to comment.