ruby-llenv 0.0.5 → 0.0.6

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.
@@ -1,3 +1,7 @@
1
+ ## 0.0.6 (2012-11-25)
2
+
3
+ * add update task
4
+
1
5
  ## 0.0.5 (2012-11-25)
2
6
 
3
7
  * Change declare script name
@@ -11,19 +11,25 @@ class LLenv::CLI < Thor
11
11
  super
12
12
  end
13
13
 
14
- desc "list", "List of declaring"
14
+ desc "list", "List of declared LLs"
15
15
  def list
16
16
  check_root_dir!
17
17
  @declare.list
18
18
  end
19
19
 
20
- desc "install", "Install declared LL"
20
+ desc "update", "Update declared LLs"
21
+ def update
22
+ check_root_dir!
23
+ system("cd #{@root_dir}; git pull")
24
+ end
25
+
26
+ desc "install", "Install specific LLenv"
21
27
  def install
22
28
  check_root_dir!
23
29
  @declare.install(llenv)
24
30
  end
25
31
 
26
- desc "exec", "Execute command with declared LL"
32
+ desc "exec", "Execute command with specific LLenv"
27
33
  def exec(*argv)
28
34
  check_root_dir!
29
35
  @declare.execute(llenv, argv)
@@ -1,3 +1,3 @@
1
1
  module LLenv
2
- VERSION = "0.0.5"
2
+ VERSION = "0.0.6"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruby-llenv
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.5
4
+ version: 0.0.6
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors: