23 lines
669 B
Ruby
23 lines
669 B
Ruby
LOGROCKET_VERSION = "3.1.0"
|
|
|
|
Pod::Spec.new do |s|
|
|
s.name = "LogRocket"
|
|
s.version = LOGROCKET_VERSION
|
|
s.summary = "LogRocket SDK"
|
|
s.author = { "LogRocket" => "support@logrocket.com" }
|
|
s.description = <<-DESC
|
|
LogRocket SDK for iOS
|
|
DESC
|
|
s.homepage = "https://logrocket.com/"
|
|
s.license = { :type => "Proprietary", :file => "ACKNOWLEDGEMENTS" }
|
|
s.platform = :ios
|
|
s.ios.deployment_target = '12.0'
|
|
s.swift_version = '5.0'
|
|
s.source = {
|
|
:http => "https://storage.googleapis.com/logrocket-ios/#{LOGROCKET_VERSION}/LogRocket.xcframework.zip",
|
|
}
|
|
s.vendored_frameworks = "LogRocket.xcframework"
|
|
end
|
|
|
|
# vi: ft=ruby
|