lense 0.1.35 → 0.1.36
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: 7696033816f95fd7cb4fcfcbfb21499bb9e16f28
|
4
|
+
data.tar.gz: 4b6f43019e361b303eea94418d59e7b51b92d09c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 45135fbf39e5134035144cf7ee4966407ad8befc82b59f33e292f465f3b36a31d1ebd7c192f770a07d4c2e4ae2d8fac4fc8b943492633eee59ad5d7866930c0c
|
7
|
+
data.tar.gz: 301edc0568412c2c68ba5619e66d39d09c224be93f3384571b24331c03f07821f37c57f919148c55f1d641a2e9fd4f7fb07df636fc47e119d6ad830448e3a7f9
|
data/lib/lense.rb
CHANGED
@@ -6,7 +6,7 @@ require 'sqlite3'
|
|
6
6
|
class LENSE
|
7
7
|
attr_reader :config, :current_course, :lense_file_hash
|
8
8
|
|
9
|
-
VERSION = '0.1.
|
9
|
+
VERSION = '0.1.36'
|
10
10
|
LENSE_DIR = File.join(ENV['HOME'],'.lense')
|
11
11
|
COURSES_DIR = File.join(LENSE_DIR,'courses')
|
12
12
|
CURRENT_COURSE_FILE = File.join(LENSE_DIR,'current_course')
|
@@ -137,7 +137,7 @@ class LENSE
|
|
137
137
|
def status()
|
138
138
|
say "Hash : #{@lense_file_hash}"
|
139
139
|
exit_now!("Not a LENSE project: .lense") unless File.directory?(LOCAL_LENSE_DIR)
|
140
|
-
@DB.execute
|
140
|
+
@DB.execute("select path from staging;").each { |p| say "Staged: #{p}"}
|
141
141
|
# check changes in depenancy files
|
142
142
|
# - for each depenceny
|
143
143
|
# - - get the current file hash
|