Files
SwiftMessages/SwiftMessages.podspec
T
2016-08-15 19:04:36 -05:00

15 lines
793 B
Ruby

Pod::Spec.new do |spec|
spec.name = 'SwiftMessages'
spec.version = '1.0.0'
spec.license = { :type => 'MIT' }
spec.homepage = 'https://github.com/SwiftKickMobile/swift-messages-ios'
spec.authors = { 'Timothy Moose' => 'tim@swiftkick.it' }
spec.summary = 'A very flexible message bar for iOS written in Swift.'
spec.source = {:git => 'https://github.com/SwiftKickMobile/swift-messages-ios.git', :tag => 'v1.0.0'}
spec.platform = :ios, '8.0'
spec.ios.deployment_target = '8.0'
spec.source_files = 'SwiftMessages/**/*.swift'
spec.resource_bundles = {'SwiftMessages' => ['SwiftMessages/Resources/**/*']}
spec.framework = 'UIKit'
spec.requires_arc = true
end