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.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +8 -10
  3. data/VERSION +1 -1
  4. data/bin/jrake-tui +3 -0
  5. metadata +4 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 49dc062ea430b2a65be5a69d587de76d0de3a87dacb7305c41d77db7ea55ddc4
4
- data.tar.gz: d87e1c482e8abf53d5023c1a030493dc3816d3c621a225bfb68bc21a631bf427
3
+ metadata.gz: 1092a4fede513e79f5e497319b6e28a1db283dad58082e8032128a35a8e00ac1
4
+ data.tar.gz: a7f6bc652016b1295fc88ff60e2ea3658d4f646d4c195a8ba9a3c8ac556f52d0
5
5
  SHA512:
6
- metadata.gz: 1c89b628e3f77dff0fa3d33fc516243fd9724e4bce59cba7c98815b6f9fe8a15a48af42825b076931080a70e7f73d946d354f34fdc9959a60e6e33de2ab61892
7
- data.tar.gz: ed063cf1785f5006ad6ddd5667e27c0ad7702e16dd658ce48774f772419cb2316db30df99d161f06f2746e1b103848878ceb8f4d53c029c619ec37a567e26b52
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
- ### [JRuby](https://www.jruby.org/)
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
- To use `rake-tui` with [JRuby](https://www.jruby.org/) without [RVM](https://rvm.io/), you must create a symlink for `ruby` pointing to `jruby` as follows:
34
+ Simply run this command:
39
35
 
40
36
  ```
41
- ln -s $(which jruby) $(dirname $(which jruby))/ruby
37
+ rake-tui
42
38
  ```
43
39
 
44
- ## Usage
40
+ ### [JRuby](https://www.jruby.org/)
45
41
 
46
- Simply run this command:
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
- rake-tui
47
+ jrake-tui
50
48
  ```
51
49
 
52
50
  ## Contributing to rake-tui
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.0
1
+ 0.1.1
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env jruby
2
+
3
+ require_relative '../lib/rake-tui.rb'
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.0
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-05 00:00:00.000000000 Z
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