commander-fastlane 4.4.4 → 4.4.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +16 -2
- data/commander.gemspec +1 -2
- data/lib/commander/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d28d59a6cc9f6f509e7dd975c6e9810f79d68168
|
4
|
+
data.tar.gz: a95fa24aec357f85c10f69dc93fe7e4553317c8a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 90c988f320592c8ab3751eb768bdf6531b4d0aee84f1c9b90ce925760d9a59a111fe92ed9805ebd282500f903c7d746b1531abd993abc084a2e466107c86623a
|
7
|
+
data.tar.gz: fee955eb147ce3009f1c8c5eccf1c595b32e0efe26aec732f1a503287fe9cad0c94d740e80386ae19b21953e134d1dea26c50b02b2b4bc4a12da03ccaeeb2b25
|
data/README.md
CHANGED
@@ -1,5 +1,19 @@
|
|
1
|
-
[<img src="https://secure.travis-ci.org/commander-rb/commander.
|
2
|
-
[![Inline docs](http://inch-ci.org/github/commander-rb/commander.
|
1
|
+
[<img src="https://secure.travis-ci.org/commander-rb/commander.svg?branch=master" alt="Build Status" />](http://travis-ci.org/commander-rb/commander)
|
2
|
+
[![Inline docs](http://inch-ci.org/github/commander-rb/commander.svg)](http://inch-ci.org/github/commander-rb/commander)
|
3
|
+
|
4
|
+
# Note: This is a fork
|
5
|
+
|
6
|
+
Find the original repo on [commander-rb/commander](https://github.com/commander-rb/commander).
|
7
|
+
|
8
|
+
This fork shows the available options for the default action, which is heavily used in fastlane.
|
9
|
+
|
10
|
+
To ship a new release, just do the following
|
11
|
+
|
12
|
+
- Increment the version number in `version.rb`
|
13
|
+
- Run `bundle update && rake install`
|
14
|
+
- Run `gem push pkg/commander-fastlane-[version].gem`
|
15
|
+
|
16
|
+
💥
|
3
17
|
|
4
18
|
# Commander
|
5
19
|
|
data/commander.gemspec
CHANGED
@@ -8,13 +8,12 @@ Gem::Specification.new do |s|
|
|
8
8
|
s.authors = ['TJ Holowaychuk', 'Gabriel Gilder']
|
9
9
|
s.email = ['gabriel@gabrielgilder.com']
|
10
10
|
s.license = 'MIT'
|
11
|
-
s.homepage = 'https://github.com/
|
11
|
+
s.homepage = 'https://github.com/fastlane/commander'
|
12
12
|
s.summary = 'The complete solution for Ruby command-line executables'
|
13
13
|
s.description = 'The complete solution for Ruby command-line executables. Commander bridges the gap between other terminal related libraries you know and love (OptionParser, HighLine), while providing many new features, and an elegant API.'
|
14
14
|
|
15
15
|
s.files = `git ls-files`.split("\n")
|
16
16
|
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
17
|
-
# s.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
|
18
17
|
s.require_paths = ['lib']
|
19
18
|
|
20
19
|
s.add_runtime_dependency('highline', '~> 1.7.2')
|
data/lib/commander/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: commander-fastlane
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 4.4.
|
4
|
+
version: 4.4.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- TJ Holowaychuk
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2017-
|
12
|
+
date: 2017-06-27 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: highline
|
@@ -136,7 +136,7 @@ files:
|
|
136
136
|
- spec/runner_spec.rb
|
137
137
|
- spec/spec_helper.rb
|
138
138
|
- spec/ui_spec.rb
|
139
|
-
homepage: https://github.com/
|
139
|
+
homepage: https://github.com/fastlane/commander
|
140
140
|
licenses:
|
141
141
|
- MIT
|
142
142
|
metadata: {}
|
@@ -156,7 +156,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
156
156
|
version: '0'
|
157
157
|
requirements: []
|
158
158
|
rubyforge_project:
|
159
|
-
rubygems_version: 2.
|
159
|
+
rubygems_version: 2.6.8
|
160
160
|
signing_key:
|
161
161
|
specification_version: 4
|
162
162
|
summary: The complete solution for Ruby command-line executables
|