Skip to content

Commit

Permalink
Added Facebook-iOS-SDK v3.14.0 and Bolts v1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Gian Franco Zabarino committed May 2, 2014
1 parent 30b6206 commit dccfaf1
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 0 deletions.
23 changes: 23 additions & 0 deletions Bolts/1.1.0/Bolts.podspec
@@ -0,0 +1,23 @@
Pod::Spec.new do |s|
s.name = "Bolts"
s.version = "1.1.0"
s.summary = "Bolts is a collection of low-level libraries designed to make developing mobile apps easier."
s.description = <<-DESC
Bolts was designed by Parse and Facebook for our own internal use, and we have decided to open source these libraries to make them available to others. Using these libraries does not require using any Parse services. Nor do they require having a Parse or Facebook developer account.
The first component in Bolts is "tasks", which make organization of complex asynchronous code more manageable. A task is kind of like a JavaScript Promise, but available for iOS and Android.
For more information, see the [Bolts iOS API Reference](http://boltsframework.github.io/docs/ios/).
DESC
s.homepage = "https://github.com/BoltsFramework"
s.license = "BSD"
s.authors = { "Bryan Klimt" => "bklimt@fb.com", "David Poll" => "depoll@fb.com" }
s.source = { :git => "https://github.com/BoltsFramework/Bolts-iOS.git", :tag => 'v' + s.version.to_s }
s.documentation_url = 'http://boltsframework.github.io/docs/ios/'

s.requires_arc = true

s.source_files = 'Bolts'

s.public_header_files = 'Bolts/**/*.h'
end
19 changes: 19 additions & 0 deletions Facebook-iOS-SDK/3.14.0/Facebook-iOS-SDK.podspec
@@ -0,0 +1,19 @@
Pod::Spec.new do |s|
s.name = 'Facebook-iOS-SDK'
s.version = '3.14'
s.platform = :ios
s.license = 'Apache License, Version 2.0'
s.summary = 'The iOS SDK provides Facebook Platform support for iOS apps.'
s.description = 'The Facebook SDK for iOS enables you to access the Facebook Platform APIs including the Graph API, FQL, and Dialogs.'
s.homepage = 'https://developers.facebook.com/docs/ios/'
s.author = 'Facebook'
s.source = { :git => 'https://github.com/facebook/facebook-ios-sdk.git', :tag => 'sdk-version-3.14.0' }
s.source_files = 'src/*.{h,m}', 'src/Base64/*.{h,m}', 'src/Cryptography/*.{h,m}', 'src/Ads/*.{h,m}', 'src/Core/*.{h,m}', 'src/DeviceAPI/*.{h,m}', 'src/Legacy/*.{h,m}', 'src/Login/*.{h,m}', 'src/Network/*.{h,m}', 'src/UI/*.{h,m}', 'src/Insights/*.{h,m}'
s.resources = 'src/FBUserSettingsViewResources.bundle'
s.header_dir = 'FacebookSDK'
s.weak_frameworks = 'Accounts', 'Social', 'Security'
s.framework = 'CoreLocation'
s.prepare_command = "find src -name \\*.png | grep -v @ | grep -v -- - | sed -e 's|\\(.*\\)/\\([a-zA-Z0-9]*\\).png|scripts/image_to_code.py -i \\1/\\2.png -c \\2 -o src|' | sh && find src -name \\*.wav | grep -v @ | grep -v -- - | sed -e 's|\\(.*\\)/\\([a-zA-Z0-9]*\\).wav|scripts/audio_to_code.py -i \\1/\\2.wav -c \\2 -o src|' | sh"
s.dependency 'Bolts'
s.requires_arc = false
end

0 comments on commit dccfaf1

Please sign in to comment.