1
1
mirror of https://github.com/nsomar/Swiftline.git synced 2024-09-11 13:45:31 +03:00
Swiftline/Swiftline.podspec
Omar Abdelhafith 235378c870 Adding swift package manager manifest file
Cleanup
Removing subfolders to flatten source
2016-02-14 17:43:35 +00:00

22 lines
895 B
Ruby

Pod::Spec.new do |s|
s.name = "Swiftline"
s.version = "0.3.0"
s.summary = "Swiftline is a set of tools to help you create command line applications"
s.description = <<-DESC
Swiftline can be divided to three main parts:
- Colorize; Helps adding colors to strings written to the terminal
- Ask, Choose and agree; Easily create prompt for asking the user more info
- Runner; A quick way to run an external command and read its standard output and standard error.
DESC
s.homepage = "https://github.com/oarrabi/Swiftline"
s.license = 'MIT'
s.author = { "Omar Abdelhafith" => "o.arrabi@me.com" }
s.source = { :git => "https://github.com/oarrabi/Swiftline.git", :tag => s.version.to_s }
s.platform = :osx, '10.9'
s.requires_arc = true
s.source_files = 'Source/**/*'
end