pik 0.2.4 → 0.2.5
Sign up to get free protection for your applications and to get access to all the features.
- data/History.txt +12 -0
- data/Manifest.txt +2 -0
- data/Rakefile +4 -2
- data/features/add_command.feature +2 -2
- data/features/config_command.feature +1 -1
- data/features/default_command.feature +3 -4
- data/features/env.rb +2 -4
- data/features/list_command.feature +1 -1
- data/features/remove_command.feature +2 -9
- data/features/run_command.feature +4 -4
- data/features/step_definitions/pik_commands.rb +4 -0
- data/features/switch_command.feature +14 -1
- data/features/uninstall_command.feature +13 -0
- data/lib/pik.rb +11 -4
- data/lib/pik/commands/add_command.rb +8 -8
- data/lib/pik/commands/batch_file_editor.rb +16 -26
- data/lib/pik/commands/implode_command.rb +2 -2
- data/lib/pik/commands/install_command.rb +4 -4
- data/lib/pik/commands/remove_command.rb +6 -3
- data/lib/pik/commands/uninstall_command.rb +39 -0
- data/lib/pik/implementations.rb +13 -8
- data/spec/html/jruby.htm +182 -184
- data/spec/implementations_spec.rb +2 -2
- data/spec/remove_command_spec.rb +9 -1
- data/tools/pik/pik_runner.exe +0 -0
- data/tools/pik/pik_runner.exy +131 -64
- metadata +4 -2
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pik
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Gordon Thiesfeld
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2009-
|
12
|
+
date: 2009-11-02 00:00:00 -06:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
@@ -78,6 +78,7 @@ files:
|
|
78
78
|
- features/step_definitions/pik_commands.rb
|
79
79
|
- features/switch_command.feature
|
80
80
|
- features/tag_command.feature
|
81
|
+
- features/uninstall_command.feature
|
81
82
|
- features/version.feature
|
82
83
|
- lib/pik.rb
|
83
84
|
- lib/pik/batch_file.rb
|
@@ -99,6 +100,7 @@ files:
|
|
99
100
|
- lib/pik/commands/run_command.rb
|
100
101
|
- lib/pik/commands/switch_command.rb
|
101
102
|
- lib/pik/commands/tag_command.rb
|
103
|
+
- lib/pik/commands/uninstall_command.rb
|
102
104
|
- lib/pik/config_file.rb
|
103
105
|
- lib/pik/contrib/progressbar.rb
|
104
106
|
- lib/pik/contrib/unzip.rb
|