4f4fdbc458
Running shell commands has never worked on iOS, it was just a hack to enable kareman/FileSmith (which _does_ work on iOS) and SwiftShell to use the same `*Stream` protocols.
13 lines
646 B
Ruby
13 lines
646 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = 'SwiftShell'
|
|
s.version = '5.0.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.11'
|
|
end
|