Skip to content

Commit 1122a5b

Browse files
committed
Add a podspec
1 parent 0570384 commit 1122a5b

File tree

3 files changed

+19
-0
lines changed

3 files changed

+19
-0
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@ before_install:
44
- gem install xcpretty --no-document
55
script:
66
- set -o pipefail && xcodebuild -project Commander.xcodeproj -scheme Commander -sdk macosx test | xcpretty -c
7+
- pod lib lint

Commander.podspec

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
Pod::Spec.new do |spec|
2+
spec.name = 'Commander'
3+
spec.version = '0.1.0'
4+
spec.summary = 'Compose beautiful command line interfaces'
5+
spec.homepage = 'https://github.com/kylef/Commander'
6+
spec.license = { :type => 'BSD', :file => 'LICENSE' }
7+
spec.author = { 'Kyle Fuller' => '[email protected]' }
8+
spec.social_media_url = 'http://twitter.com/kylefuller'
9+
spec.source = { :git => 'https://github.com/kylef/Commander.git', :tag => spec.version }
10+
spec.source_files = 'Commander/*.{h,swift}'
11+
spec.ios.deployment_target = '8.0'
12+
spec.osx.deployment_target = '10.9'
13+
spec.requires_arc = true
14+
end
15+

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
[![Build Status](http://img.shields.io/travis/kylef/Commander/master.svg?style=flat)](https://travis-ci.org/kylef/Commander)
44

5+
Commander is a small Swift framework allowing you to craft beautiful command
6+
line interfaces in a composable way.
7+
58
## Usage
69

710
## License

0 commit comments

Comments
 (0)