Skip to content

Instantly share code, notes, and snippets.

@steam
Last active September 15, 2015 17:24
Show Gist options
  • Save steam/defd5706419c04e46655 to your computer and use it in GitHub Desktop.
Save steam/defd5706419c04e46655 to your computer and use it in GitHub Desktop.
Pod::Spec.new do |s|
s.name = "Firebase"
s.version = "2.3.3"
s.summary = "The official iOS client library for Firebase."
s.homepage = "https://www.firebase.com/"
s.license = { :type => 'Commercial', :url => 'https://www.firebase.com/terms/terms-of-service.html' }
s.author = { "Firebase" => "support@firebase.com" }
s.source = { :http => "https://cdn.firebase.com/ObjC/Firebase.framework-2.3.3.zip" }
s.ios.deployment_target = "6.0"
s.osx.deployment_target = "10.7"
s.requires_arc = true
s.source_files = 'Firebase.framework'
s.preserve_paths = 'Firebase.framework'
s.frameworks = 'CFNetwork', 'Security', 'Firebase', 'SystemConfiguration'
s.xcconfig = { 'FRAMEWORK_SEARCH_PATHS' => "\"$(PODS_ROOT)/Firebase\"", 'OTHER_CFLAGS' => '' }
s.libraries = 'icucore', 'c++'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment