lense 0.2.9 → 0.2.10
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 +1 -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: dfccfbb38a9524c09680157894df7c3d3329f196
|
4
|
+
data.tar.gz: 47f6dedc68a8805973b31f60621b0f39d98d5459
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 825e5fbf97cc43263945963dc0d63f5a8d31b2590d9237ca1fb8d3bf91e86c11bbcff26ae4693c73379212522d4a3a7c5c2a9753c0e2714e86f4db4e25aa4f76
|
7
|
+
data.tar.gz: d16a43e01936db62100023d6fc05feddf6610f666fb6e40e2bb0b7559b74b2db3f1be7346f3a79f8ffc6175e20d1081c7e438395428897603dd4f63f291e032b
|
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.10'
|
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')
|
@@ -289,7 +289,6 @@ class LENSE
|
|
289
289
|
end
|
290
290
|
|
291
291
|
def install_repo(repo,action)
|
292
|
-
puts caller
|
293
292
|
exit_now!("Invalid repo name.") unless repo =~ /\A\w+\/\w+\Z/
|
294
293
|
username, project_name = repo.split '/'
|
295
294
|
|