Add CocoaPods support.

This commit is contained in:
Kare Morstol
2017-03-01 19:17:43 +01:00
parent bcaab22767
commit a93535b390
2 changed files with 21 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
Pod::Spec.new do |s|
s.name = 'SwiftShell'
s.version = '3.0.0-beta.11'
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'
end