rake-tui 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +8 -10
- data/VERSION +1 -1
- data/bin/jrake-tui +3 -0
- metadata +4 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1092a4fede513e79f5e497319b6e28a1db283dad58082e8032128a35a8e00ac1
|
|
4
|
+
data.tar.gz: a7f6bc652016b1295fc88ff60e2ea3658d4f646d4c195a8ba9a3c8ac556f52d0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6c562c98c51b42d4b0e3a2ca524ef44726f27e37c1880527092601995818cd20a781c33b30b487c94ff1a4da0c5f51ab9001b7e331fc059c1eb17f594f4b4cf1
|
|
7
|
+
data.tar.gz: 1dd408ab34bd38289ff2a3b68a9347a3729564f752b2c4c1d5f447e47a325ca7810935e608e45c8fad7b66ab8fd563d24de423b144c6e10843a6ab408626eddc
|
data/README.md
CHANGED
|
@@ -29,24 +29,22 @@ gem 'rake-tui'
|
|
|
29
29
|
rvm @global do gem install rake-tui
|
|
30
30
|
```
|
|
31
31
|
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
The `rake-tui` binary uses a `ruby` shebang: `#!/usr/bin/env ruby`
|
|
35
|
-
|
|
36
|
-
When using [JRuby](https://www.jruby.org/) with [RVM](https://rvm.io/), `ruby` is automatically symlinked as `jruby`, so `rake-tui` works fine.
|
|
32
|
+
## Usage
|
|
37
33
|
|
|
38
|
-
|
|
34
|
+
Simply run this command:
|
|
39
35
|
|
|
40
36
|
```
|
|
41
|
-
|
|
37
|
+
rake-tui
|
|
42
38
|
```
|
|
43
39
|
|
|
44
|
-
|
|
40
|
+
### [JRuby](https://www.jruby.org/)
|
|
45
41
|
|
|
46
|
-
|
|
42
|
+
If you are using [RVM](https://rvm.io/), then `rake-tui` works in [JRuby](https://www.jruby.org/) too.
|
|
43
|
+
|
|
44
|
+
Otherwise, simply run this command instead:
|
|
47
45
|
|
|
48
46
|
```
|
|
49
|
-
|
|
47
|
+
jrake-tui
|
|
50
48
|
```
|
|
51
49
|
|
|
52
50
|
## Contributing to rake-tui
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.1
|
data/bin/jrake-tui
ADDED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rake-tui
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- andy_maleh
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-09-
|
|
11
|
+
date: 2020-09-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tty-prompt
|
|
@@ -126,6 +126,7 @@ description: Rake Text-based User Interface
|
|
|
126
126
|
email: andy.am@gmail.com
|
|
127
127
|
executables:
|
|
128
128
|
- rake-tui
|
|
129
|
+
- jrake-tui
|
|
129
130
|
extensions: []
|
|
130
131
|
extra_rdoc_files:
|
|
131
132
|
- LICENSE.txt
|
|
@@ -134,6 +135,7 @@ files:
|
|
|
134
135
|
- LICENSE.txt
|
|
135
136
|
- README.md
|
|
136
137
|
- VERSION
|
|
138
|
+
- bin/jrake-tui
|
|
137
139
|
- bin/rake-tui
|
|
138
140
|
- lib/rake-tui.rb
|
|
139
141
|
homepage: http://github.com/AndyObtiva/rake-tui
|