Skip to content

Instantly share code, notes, and snippets.

@tomaskraina
Last active June 21, 2016 12:44
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 tomaskraina/6a30d8bf00eb12bbe653a80cc567b0c4 to your computer and use it in GitHub Desktop.
Save tomaskraina/6a30d8bf00eb12bbe653a80cc567b0c4 to your computer and use it in GitHub Desktop.
Pod::Spec.new do |s|
s.name = 'PayMillSDK'
s.version = '2.2.0'
s.summary = "PAYMILL iOS SDK enables processing of payments for iOS applications. Visit http://www.paymill.com for more information."
s.homepage = "https://www.paymill.com/en-gb/documentation-3/reference/mobile-sdk/"
s.license = 'Commercial, :file => License.md'
s.author = { "Paymill GmbH" => "support@paymill.de" }
s.source = { :git => "https://github.com/paymill/paymill-ios.git", :tag => '2.2.0' }
s.ios.deployment_target = '6.0'
s.osx.deployment_target = '10.8'
s.ios.source_files = 'samples/vouchermill/PayMillSDK/PayMillSDK.framework/Versions/A/Headers/*.h'
s.osx.source_files = 'macos/PayMillSDK.framework/Versions/A/Headers/*.h'
s.ios.preserve_paths = 'samples/vouchermill/PayMillSDK/PayMillSDK.framework'
s.osx.preserve_paths = 'macos/PayMillSDK.framework'
s.ios.vendored_frameworks = 'samples/vouchermill/PayMillSDK/PayMillSDK.framework'
s.osx.vendored_frameworks = 'macos/PayMillSDK.framework'
s.requires_arc = true
s.framework = 'Security'
s.xcconfig = { 'OTHER_LDFLAGS' => '-ObjC' }
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment