-
Notifications
You must be signed in to change notification settings - Fork 87
/
ShellOut.podspec
17 lines (16 loc) · 921 Bytes
/
ShellOut.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Pod::Spec.new do |s|
s.name = "ShellOut"
s.version = "2.0.0"
s.summary = "Easily run shell commands from a Swift script or command line tool"
s.description = <<-DESC
ShellOut is a simple package that enables you to easily “shell out” from a Swift script or command line tool.
Even though you can accomplish most of the tasks you need to do in native Swift code, sometimes you need to invoke the power of the command line from a script or tool - and this is exactly what ShellOut makes so simple.
DESC
s.homepage = "https://github.com/JohnSundell/ShellOut"
s.authors = "John Sundell"
s.social_media_url = "http://twitter.com/JohnSundell"
s.license = { :type => "MIT", :file => "LICENSE" }
s.osx.deployment_target = "10.12"
s.source = { :git => "https://github.com/JohnSundell/ShellOut.git", :tag => "#{s.version}" }
s.source_files = "Sources"
end