keycutter 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG +3 -0
- data/lib/keycutter.rb +0 -1
- data/lib/keycutter/version.rb +1 -1
- data/lib/{keycutter → rubygems/commands}/keys_command.rb +2 -1
- data/lib/rubygems_plugin.rb +4 -2
- metadata +4 -4
data/CHANGELOG
CHANGED
data/lib/keycutter.rb
CHANGED
data/lib/keycutter/version.rb
CHANGED
@@ -1,4 +1,3 @@
|
|
1
|
-
require 'rubygems/command'
|
2
1
|
require 'rubygems/gemcutter_utilities'
|
3
2
|
|
4
3
|
class Gem::Commands::KeysCommand < Gem::Command
|
@@ -37,6 +36,8 @@ class Gem::Commands::KeysCommand < Gem::Command
|
|
37
36
|
end
|
38
37
|
|
39
38
|
def execute
|
39
|
+
require 'keycutter'
|
40
|
+
|
40
41
|
options[:list] = !(options[:use] || options[:remove] || options[:add])
|
41
42
|
|
42
43
|
if options[:add] then
|
data/lib/rubygems_plugin.rb
CHANGED
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: keycutter
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 25
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 1
|
9
|
-
-
|
10
|
-
version: 0.1.
|
9
|
+
- 1
|
10
|
+
version: 0.1.1
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Josh French
|
@@ -47,9 +47,9 @@ files:
|
|
47
47
|
- keycutter.gemspec
|
48
48
|
- lib/keycutter.rb
|
49
49
|
- lib/keycutter/configuration.rb
|
50
|
-
- lib/keycutter/keys_command.rb
|
51
50
|
- lib/keycutter/testing.rb
|
52
51
|
- lib/keycutter/version.rb
|
52
|
+
- lib/rubygems/commands/keys_command.rb
|
53
53
|
- lib/rubygems_plugin.rb
|
54
54
|
- spec/configuration_spec.rb
|
55
55
|
- spec/spec_helper.rb
|