lense 0.2.18 → 0.2.19
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: dde2ef6f7effa4d8ca5ce04fe3fa07a4c20a72fe
|
4
|
+
data.tar.gz: 395d5904a3d120d1433e426efc0cbfbab127df70
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c89b96ef8bd428661082395d25946dc6d93e53cf62bfa4a1ccab34efe18d59fb921a13e250c80d8f6e8c97c21955a22c66d68cb3fb1f45f66ed146eeb4ede783
|
7
|
+
data.tar.gz: b41009a673d426a0cc4005cc18d7642f5c621edcc443c2c5682a70636157516a9474e9c76b996876691b15a31f8102d82785f01b9144cb82803b883d493ede4e
|
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.19'
|
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')
|
@@ -271,7 +271,7 @@ class LENSE
|
|
271
271
|
end
|
272
272
|
end
|
273
273
|
|
274
|
-
def push(
|
274
|
+
def push()
|
275
275
|
repo = validate_in_repo
|
276
276
|
user, project = repo.split '/'
|
277
277
|
rows = @DB.execute "select path from dependencies where not deleted;"
|