diff --git a/README.md b/README.md index 6d7116c..e4a7fed 100644 --- a/README.md +++ b/README.md @@ -240,6 +240,15 @@ Add `github "kareman/SwiftShell" "master"` to your Cartfile, then run `carthage [carthage-installation]: https://github.com/Carthage/Carthage#adding-frameworks-to-an-application +### [CocoaPods](https://cocoapods.org/) + +Add `SwiftShell` to your `Podfile`. + +```Ruby +pod "SwiftShell", git: "https://github.com/kareman/SwiftShell.git" +``` + +Then run `pod install` to install it. ## License diff --git a/SwiftShell.podspec b/SwiftShell.podspec new file mode 100644 index 0000000..472f4c7 --- /dev/null +++ b/SwiftShell.podspec @@ -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