Files
SwiftShell/SwiftShell.podspec
T
2018-07-31 17:57:04 +02:00

14 lines
680 B
Ruby

Pod::Spec.new do |s|
s.name = 'SwiftShell'
s.version = '4.1.1'
s.summary = 'A Swift framework for shell scripting.'
s.description = 'SwiftShell is a library for creating command-line applications and running shell commands in Swift.'
s.homepage = 'https://github.com/kareman/SwiftShell'
s.license = { type: 'MIT', file: 'LICENSE.txt' }
s.author = { 'Kare Morstol' => 'kare@nottoobadsoftware.com' }
s.source = { git: 'https://github.com/kareman/SwiftShell.git', tag: s.version.to_s }
s.source_files = 'Sources/SwiftShell/*.swift','Sources/SwiftShell/*/*.swift'
s.osx.deployment_target = '10.10'
s.ios.deployment_target = '9.0'
end