-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #37 from WideSpectrumComputing/master
fixing Cocoapods specs
- Loading branch information
Showing
2 changed files
with
39 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,62 +7,62 @@ | |
|
||
Pod::Spec.new do |s| | ||
|
||
s.version = "2.0.0-alpha32" | ||
s.name = "RollbarCommon" | ||
s.summary = "Application or client side SDK for interacting with the Rollbar API Server." | ||
s.version = '2.0.0-alpha34' | ||
s.name = 'RollbarCommon' | ||
s.summary = 'Application or client side SDK for interacting with the Rollbar API Server.' | ||
s.description = <<-DESC | ||
Find, fix, and resolve errors with Rollbar. | ||
Easily send error data using Rollbar API. | ||
Analyze, de-dupe, send alerts, and prepare the data for further analysis. | ||
Search, sort, and prioritize via the Rollbar dashboard. | ||
DESC | ||
s.homepage = "https://rollbar.com" | ||
# s.screenshots = "www.example.com/screenshots_1.gif", "www.example.com/screenshots_2.gif" | ||
s.license = { :type => "MIT", :file => "LICENSE" } | ||
# s.license = "MIT (example)" | ||
s.documentation_url = "https://docs.rollbar.com/docs/ios" | ||
s.authors = { "Andrey Kornich (Wide Spectrum Computing LLC)" => "[email protected]", | ||
"Rollbar" => "[email protected]" } | ||
# s.author = { "Andrey Kornich" => "[email protected]" } | ||
# Or just: s.author = "Andrey Kornich" | ||
s.social_media_url = "http://twitter.com/rollbar" | ||
s.source = { :git => "https://github.com/rollbar/rollbar-apple.git", | ||
:tag => "v#{s.version}" | ||
s.homepage = 'https://rollbar.com' | ||
# s.screenshots = 'www.example.com/screenshots_1.gif', 'www.example.com/screenshots_2.gif' | ||
s.license = { :type => 'MIT', :file => 'LICENSE' } | ||
# s.license = 'MIT (example)' | ||
s.documentation_url = 'https://docs.rollbar.com/docs/ios' | ||
s.authors = { 'Andrey Kornich (Wide Spectrum Computing LLC)' => '[email protected]', | ||
'Rollbar' => '[email protected]' } | ||
# s.author = { 'Andrey Kornich' => '[email protected]' } | ||
# Or just: s.author = 'Andrey Kornich' | ||
s.social_media_url = 'http://twitter.com/rollbar' | ||
s.source = { :git => 'https://github.com/rollbar/rollbar-apple.git', | ||
:tag => 'v#{s.version}' | ||
} | ||
s.resource = "rollbar-logo.png" | ||
# s.resources = "Resources/*.png" | ||
s.resource = 'rollbar-logo.png' | ||
# s.resources = 'Resources/*.png' | ||
|
||
# When using multiple platforms: | ||
s.ios.deployment_target = "9.0" | ||
s.osx.deployment_target = "10.10" | ||
s.tvos.deployment_target = "11.0" | ||
s.watchos.deployment_target = "4.0" | ||
s.ios.deployment_target = '9.0' | ||
s.osx.deployment_target = '10.10' | ||
s.tvos.deployment_target = '11.0' | ||
s.watchos.deployment_target = '4.0' | ||
# Any platform, if omitted: | ||
# s.platform = :ios | ||
# s.platform = :ios, "5.0" | ||
# s.platform = :ios, '5.0' | ||
|
||
s.source_files = "#{s.name}/Sources/#{s.name}/**/*.{h,m}" | ||
s.public_header_files = "#{s.name}/Sources/#{s.name}/include/*.h" | ||
s.module_map = "#{s.name}/Sources/#{s.name}/include/module.modulemap" | ||
# s.exclude_files = "Classes/Exclude" | ||
# s.preserve_paths = "FilesToSave", "MoreFilesToSave" | ||
s.source_files = '#{s.name}/Sources/#{s.name}/**/*.{h,m}' | ||
s.public_header_files = '#{s.name}/Sources/#{s.name}/include/*.h' | ||
s.module_map = '#{s.name}/Sources/#{s.name}/include/module.modulemap' | ||
# s.exclude_files = 'Classes/Exclude' | ||
# s.preserve_paths = 'FilesToSave', 'MoreFilesToSave' | ||
|
||
s.framework = "Foundation" | ||
# s.frameworks = "SomeFramework", "AnotherFramework" | ||
# s.library = "iconv" | ||
# s.libraries = "iconv", "xml2" | ||
# s.dependency "JSONKit", "~> 1.4" | ||
s.framework = 'Foundation' | ||
# s.frameworks = 'SomeFramework', 'AnotherFramework' | ||
# s.library = 'iconv' | ||
# s.libraries = 'iconv', 'xml2' | ||
# s.dependency 'JSONKit', '~> 1.4' | ||
|
||
s.requires_arc = true | ||
# s.xcconfig = { | ||
# "USE_HEADERMAP" => "NO", | ||
# "HEADER_SEARCH_PATHS" => "$(PODS_ROOT)/Sources/#{s.name}/**" | ||
# 'USE_HEADERMAP' => 'NO', | ||
# 'HEADER_SEARCH_PATHS' => '$(PODS_ROOT)/Sources/#{s.name}/**' | ||
# } | ||
|
||
s.pod_target_xcconfig = { "ONLY_ACTIVE_ARCH" => "YES", "EXCLUDED_ARCHS[sdk=iphonesimulator*]" => "arm64" } | ||
s.user_target_xcconfig = { "ONLY_ACTIVE_ARCH" => "YES", "EXCLUDED_ARCHS[sdk=iphonesimulator*]" => "arm64" } | ||
s.pod_target_xcconfig = { 'ONLY_ACTIVE_ARCH' => 'YES', 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' } | ||
s.user_target_xcconfig = { 'ONLY_ACTIVE_ARCH' => 'YES', 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' } | ||
|
||
s.tvos.pod_target_xcconfig = { "ONLY_ACTIVE_ARCH" => "YES", "EXCLUDED_ARCHS[sdk=appletvsimulator*]" => "arm64" } | ||
s.tvos.user_target_xcconfig = { "ONLY_ACTIVE_ARCH" => "YES", "EXCLUDED_ARCHS[sdk=appletvsimulator*]" => "arm64" } | ||
s.tvos.pod_target_xcconfig = { 'ONLY_ACTIVE_ARCH' => 'YES', 'EXCLUDED_ARCHS[sdk=appletvsimulator*]' => 'arm64' } | ||
s.tvos.user_target_xcconfig = { 'ONLY_ACTIVE_ARCH' => 'YES', 'EXCLUDED_ARCHS[sdk=appletvsimulator*]' => 'arm64' } | ||
|
||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters