File tree Expand file tree Collapse file tree 3 files changed +19
-0
lines changed
Expand file tree Collapse file tree 3 files changed +19
-0
lines changed Original file line number Diff line number Diff line change @@ -4,3 +4,4 @@ before_install:
44- gem install xcpretty --no-document
55script :
66- set -o pipefail && xcodebuild -project Commander.xcodeproj -scheme Commander -sdk macosx test | xcpretty -c
7+ - pod lib lint
Original file line number Diff line number Diff line change 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+
Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments