Skip to content

Instantly share code, notes, and snippets.

@mbazaliy
Last active December 23, 2015 17:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mbazaliy/6669596 to your computer and use it in GitHub Desktop.
Save mbazaliy/6669596 to your computer and use it in GitHub Desktop.
Crashlytics podspec
Pod::Spec.new do |s|
s.name = "Crashlytics"
s.version = "2.1.2"
s.summary = "A lightweight crash reporting solution"
s.homepage = "http://try.crashlytics.com/"
s.license = {
:type => 'Commercial',
:text => <<-LICENSE
© 2012-2013 Crashlytics.
LICENSE
}
s.author = { "Max Bazaliy" => "mbazaliy@gmail.com" }
s.source = {
:git => "git@github.com:bpoplauschi/CrashlyticsFramework.git",
:tag => s.version.to_s
}
s.platform = :ios, '6.0'
s.source_files = 'Crashlytics.framework/Versions/A/Headers/Crashlytics.h'
s.preserve_paths = 'Crashlytics.framework/*'
s.frameworks = 'Crashlytics'
s.xcconfig = { 'FRAMEWORK_SEARCH_PATHS' => '"$(PODS_ROOT)/Crashlytics"' }
s.requires_arc = false
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment