lense 0.1.28 → 0.1.29

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/bin/lense +6 -0
  3. data/lib/lense.rb +9 -3
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1c51ada6145c206b237c6b9d635aae93395c0d47
4
- data.tar.gz: a8bd87c757cfd920165acecd30ed67cef791aa37
3
+ metadata.gz: bed2ac9dd98f2eb6280ab8eef4689dbe14fb4504
4
+ data.tar.gz: 7a0989d4c5093bac8096d6da73dbf8e56bf65ce2
5
5
  SHA512:
6
- metadata.gz: 6519b151c146b39c292dde22e85ac28ce7a9bf2f952573c491f4c1ba151aaf433cc36dec993d662c58fb3d73cec63bb74e1cc94c75d02bdb8a57552cb3b8b8ef
7
- data.tar.gz: 854ec5218be0251eea7c042a6e60713ecfb461d897e2e8a04109f4e7fac082b0c74c1edbc7ffcad17fbd8c43245610396a2ed4192204ef4013de964fdf3e7add
6
+ metadata.gz: 70fabf5d567a2837c8a6f8c5612f38d1cbca658ee74710c98d5bb4cbd3657e8ee8d7cedf4e9905a32bcb4dd5fc77bd879ac1def75e7cce50967e4d1d2dfea864
7
+ data.tar.gz: d21f958ea64ee1d5a17791fd06783ecffabee2066fd5a76d29d6b76bc931fd57be481760fd09bfc6dbb19975322f372214d5740426cc444be87b28e716a7b6d7
data/bin/lense CHANGED
@@ -102,4 +102,10 @@ command :init do |c|
102
102
  end
103
103
  end
104
104
 
105
+ command :status do |c|
106
+ c.action do
107
+ LENSE_APP.status
108
+ end
109
+ end
110
+
105
111
  exit run(ARGV)
data/lib/lense.rb CHANGED
@@ -4,10 +4,12 @@ require 'highline/import'
4
4
  class LENSE
5
5
  attr_reader :config, :current_course
6
6
 
7
- VERSION = '0.1.28'
7
+ VERSION = '0.1.29'
8
8
  LENSE_DIR = File.join(ENV['HOME'],'.lense')
9
9
  COURSES_DIR = File.join(LENSE_DIR,'courses')
10
10
  CURRENT_COURSE_FILE = File.join(LENSE_DIR,'current_course')
11
+ LOCAL_LENSE_DIR = File.join(ENV['PWD'],'.lense')
12
+ DEPS_DIR = File.join(LOCAL_LENSE_DIR,'deps')
11
13
 
12
14
  def initialize()
13
15
  Dir.mkdir(LENSE_DIR) unless File.directory?(LENSE_DIR)
@@ -103,7 +105,11 @@ class LENSE
103
105
  end
104
106
 
105
107
  def init()
106
- local_lense_dir = File.join(ENV['PWD'],'.lense')
107
- Dir.mkdir(local_lense_dir) unless File.directory?(local_lense_dir)
108
+ Dir.mkdir(LOCAL_LENSE_DIR) unless File.directory?(LOCAL_LENSE_DIR)
109
+ Dir.mkdir(DEPS_DIR) unless File.directory?(DEPS_DIR)
110
+ end
111
+
112
+ def status()
113
+ exit_now!("Not a LENSE project: .lense") unless File.directory?(LOCAL_LENSE_DIR)
108
114
  end
109
115
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lense
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.28
4
+ version: 0.1.29
5
5
  platform: ruby
6
6
  authors:
7
7
  - Manuel Zubieta