lense 0.2.15 → 0.2.16
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/lib/lense.rb +2 -2
- 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: c121069eb1ee2fbdfee54479be7b2be9fec63a3f
|
4
|
+
data.tar.gz: 875b065ea8d1f0f4f5ae1c63ac05bc0b16d7dcde
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a60eb1b8c2484ccc3dbd7d8a952ff513e44c04a01d54d43e96b438a04c40fd63dfa8d1dfac7dff245eec1cf39bb869d514a9ea8f5fb53b44d1126b0dd1db19da
|
7
|
+
data.tar.gz: 8cf1ebaf4b5488c43f77151680c467d06a729c0d6317b7bd40d708971da92a6fa6e44cbc4316a4f982c7888ce4f9e6193d1e413d8e2142123b4752b052bc25dc
|
data/lib/lense.rb
CHANGED
@@ -7,7 +7,7 @@ require 'base64'
|
|
7
7
|
class LENSE
|
8
8
|
attr_reader :config, :current_course, :lense_file_hash
|
9
9
|
|
10
|
-
VERSION = '0.2.
|
10
|
+
VERSION = '0.2.16'
|
11
11
|
LENSE_DIR = File.join(ENV['HOME'],'.lense')
|
12
12
|
COURSES_DIR = File.join(LENSE_DIR,'courses')
|
13
13
|
CURRENT_COURSE_FILE = File.join(LENSE_DIR,'current_course')
|
@@ -257,7 +257,7 @@ class LENSE
|
|
257
257
|
lense = read_lensefile
|
258
258
|
lense['up'].each do |cmd|
|
259
259
|
say "<%= color('running: ',:green) %> #{cmd}"
|
260
|
-
output `#{cmd}`
|
260
|
+
output = `#{cmd}`
|
261
261
|
say "<%= color(' => ',:blue) %> #{output}"
|
262
262
|
end
|
263
263
|
end
|