rvm-tui 0.0.3 → 0.0.4

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 (6) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +6 -1
  3. data/VERSION +1 -1
  4. data/lib/rvm-tui.rb +1 -1
  5. metadata +24 -6
  6. data/CHANGELOG.md +0 -14
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6f8e1ca41e20bf11009fcc58b89fcfa31a44106b302b06da1a657493e5ec14ef
4
- data.tar.gz: '07923852d21ad5c2d196f6aa4e9d72e6456a41da59f275542495f27e3389434f'
3
+ metadata.gz: 41f83c17d25917d5fda5079abc57e5ab1bf63b4764d121eb53c20c304dbeddba
4
+ data.tar.gz: 588dd92c2b110152f17c217b9161dbeed3eb83f8bcec21440c4c320b1b103ded
5
5
  SHA512:
6
- metadata.gz: a5f1a67b33c3a96920f43d863a51c818486a85045d56aa3f23476db87028e094d17ec2e0637c68321fcf0bead8330c080691cdbc78acb5f31688d381d0fdeb60
7
- data.tar.gz: cb35303b5f28f756315aff515830d65fa53c4ff1937bada40a2aed1f2f112bc2dc5d442b9d3366891306197935308496eecfc2ee34d0dfa93eae5d4523cad1f9
6
+ metadata.gz: f552858af4da1cd3dc98c5b8bbf80f39a857cc22d8ff0baf1368a313c9fb5e6268482224a91094f59f467f3808d33d7da87d3f6b9ab56b50837679377936f7db
7
+ data.tar.gz: a4640cbb5ff9cd9a0f7ce96d74c49abcf2c853a83cc31fdce343a59c2646ad9e68351177f12a6174d4ec159c1a657191c7eddbcbabff4bd03ca39941de9e6c51
data/README.md CHANGED
@@ -9,10 +9,15 @@
9
9
  - Prevent odd bugs that happen when sharing gems with other projects due to making changes in them
10
10
  - Simplify gem-related troubleshooting without a domino effect on other projects
11
11
 
12
- Given how practical and often-used [RVM](https://rvm.io) is, I am providing a text-based user interface for it.
12
+ Given how practical and often-used [RVM](https://rvm.io) is, I am providing a text-based user interface for it that facilitates these tasks:
13
+ - Testing the same project with multiple Rubies (e.g. ensuring it runs on both Ruby and JRuby)
14
+ - Testing the same project with different gem version combinations in different gemsets (e.g. checking if it works with both facets 3 + dependencies and facets 2 + dependencies)
13
15
 
14
16
  ![RVM TUI DEMO](rvm-tui-demo.gif)
15
17
 
18
+ Other TUI gems you may be interested in:
19
+ - [rake-tui](https://github.com/AndyObtiva/rake-tui)
20
+
16
21
  ## Pre-requisites
17
22
 
18
23
  - [RVM](https://rvm.io)
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.3
1
+ 0.0.4
@@ -20,7 +20,7 @@ require 'tty-prompt'
20
20
 
21
21
  CURRENT_RVM_RUBY = ARGV[0]
22
22
  CURRENT_RVM_GEMSET = ARGV[1] || 'default'
23
- current_rvm = CURRENT_RVM_RUBY
23
+ current_rvm = CURRENT_RVM_RUBY.to_s
24
24
  current_rvm += "@#{CURRENT_RVM_GEMSET}" unless CURRENT_RVM_GEMSET.nil?
25
25
  CURRENT_RVM = current_rvm
26
26
  puts "Current: #{CURRENT_RVM}"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rvm-tui
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.4
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-06 00:00:00.000000000 Z
11
+ date: 2021-01-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tty-prompt
@@ -16,14 +16,20 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '0'
19
+ version: 0.23.0
20
+ - - "<"
21
+ - !ruby/object:Gem::Version
22
+ version: 2.0.0
20
23
  type: :runtime
21
24
  prerelease: false
22
25
  version_requirements: !ruby/object:Gem::Requirement
23
26
  requirements:
24
27
  - - ">="
25
28
  - !ruby/object:Gem::Version
26
- version: '0'
29
+ version: 0.23.0
30
+ - - "<"
31
+ - !ruby/object:Gem::Version
32
+ version: 2.0.0
27
33
  - !ruby/object:Gem::Dependency
28
34
  name: rspec
29
35
  requirement: !ruby/object:Gem::Requirement
@@ -108,17 +114,29 @@ dependencies:
108
114
  - - ">="
109
115
  - !ruby/object:Gem::Version
110
116
  version: '0'
117
+ - !ruby/object:Gem::Dependency
118
+ name: rake-tui
119
+ requirement: !ruby/object:Gem::Requirement
120
+ requirements:
121
+ - - ">="
122
+ - !ruby/object:Gem::Version
123
+ version: '0'
124
+ type: :development
125
+ prerelease: false
126
+ version_requirements: !ruby/object:Gem::Requirement
127
+ requirements:
128
+ - - ">="
129
+ - !ruby/object:Gem::Version
130
+ version: '0'
111
131
  description: Ruby enVironment Manager - Text-based User Interface
112
132
  email: andy.am@gmail.com
113
133
  executables:
114
134
  - rvm-tui-setup
115
135
  extensions: []
116
136
  extra_rdoc_files:
117
- - CHANGELOG.md
118
137
  - LICENSE.txt
119
138
  - README.md
120
139
  files:
121
- - CHANGELOG.md
122
140
  - LICENSE.txt
123
141
  - README.md
124
142
  - VERSION
@@ -1,14 +0,0 @@
1
- # Change Log
2
-
3
- ## 0.0.3
4
-
5
- - Corrected declaration of license as Apache-2.0
6
-
7
- ## 0.0.2
8
-
9
- - Safe abort support (use CTRL+C without seeing error messages)
10
- - Highlight current RVM Gemset (not just the current Ruby)
11
-
12
- ## 0.0.1
13
-
14
- - Initial implementation supporting selection of RVM Ruby and Gemset