lense 0.2.6 → 0.2.7
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: ec156c1811be9d14df4746757856bf6df747adbc
|
4
|
+
data.tar.gz: 3833cf6a368d6b0f795fc4a9783a0d6ea705dff1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c977bc392c01f297c73303bd64cb28e7bbd1c6fc6243a7f65f1708bffb4ec2165a39e0da9d7dca0ea9b998103b2e972721ab5411221ae76a1477f85b4651328f
|
7
|
+
data.tar.gz: dd1bcafeb6e86a4204a96147cb40864c94a73598e6ad012ead7dc14a4d1191770b76a0e7177699e8f10a686ec0f59a0f053675e1d3d177d84c681971d8d1391a
|
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.7'
|
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')
|
@@ -297,7 +297,7 @@ class LENSE
|
|
297
297
|
|
298
298
|
# cd into repo dir and untar
|
299
299
|
say "untaring to ... #{rel_tar_path}"
|
300
|
-
`cd #{project_name} && tar -x#{TARFLAGS}f
|
300
|
+
`cd #{project_name} && tar -x#{TARFLAGS}f .lense/temp/#{tar_fname}`
|
301
301
|
|
302
302
|
say "done"
|
303
303
|
# read lensefile
|