multi_ruby_runner 1.0.1 → 1.0.2
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/CHANGELOG.md +4 -0
- data/lib/multi_ruby_runner/version.rb +1 -1
- data/lib/multi_ruby_runner/version_manager/rbenv.rb +1 -0
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 06e774088593a5de42c26d7f5bbe79ed84abc733
|
4
|
+
data.tar.gz: 12eda98207469cf116b07a995642daa0c8d30895
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 085ffae8976d313d0162ac727337e13bf65fe8d1d02a73835772862e7370358cbdb44f5bf5d65f4ccd188ced3a2721aa6334c9daa1f46fd72937c32572e15ca6
|
7
|
+
data.tar.gz: c0ef1590d62d9962940a7fac1c231575d2944234e6715dbe691110498ffe3ace37f457a9dbcf3b48cb9075495e620ee977ecddcdb74b13bfced231b052426a09
|
data/CHANGELOG.md
CHANGED
@@ -15,6 +15,7 @@ class MultiRubyRunner
|
|
15
15
|
def compute_process_args(command_string, directory, options)
|
16
16
|
shell_command_string = [
|
17
17
|
"cd #{ directory }", # cd into the directory containing .ruby-version file
|
18
|
+
%(eval "$(rbenv init -)"), # let rbenv update the environment (particularly PATH)
|
18
19
|
command_string, # execute command
|
19
20
|
].join('; ')
|
20
21
|
# For rbenv we just have to reset RBENV_VERSION and override RBENV_DIR
|