gemwhois 0.2 → 0.2.1
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.
- data/Rakefile +1 -1
- data/lib/gemwhois.rb +3 -7
- data/lib/rubygems/commands/{whois.rb → whois_command.rb} +2 -0
- data/lib/rubygems_plugin.rb +2 -1
- data/test/helper.rb +5 -3
- metadata +3 -3
- data/lib/gemwhois/version.rb +0 -3
data/Rakefile
CHANGED
data/lib/gemwhois.rb
CHANGED
data/lib/rubygems_plugin.rb
CHANGED
data/test/helper.rb
CHANGED
@@ -4,10 +4,12 @@ require 'shoulda'
|
|
4
4
|
require 'fakeweb'
|
5
5
|
require 'mocha'
|
6
6
|
require 'helpers/output'
|
7
|
+
require 'pathname'
|
7
8
|
|
8
|
-
|
9
|
-
|
10
|
-
require 'gemwhois'
|
9
|
+
dir = Pathname(__FILE__).join('..', '..', 'lib')
|
10
|
+
|
11
|
+
require dir.join('gemwhois').expand_path
|
12
|
+
require dir.join('rubygems', 'commands', 'whois_command').expand_path
|
11
13
|
|
12
14
|
FakeWeb.allow_net_connect = false
|
13
15
|
|
metadata
CHANGED
@@ -5,7 +5,8 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 0
|
7
7
|
- 2
|
8
|
-
|
8
|
+
- 1
|
9
|
+
version: 0.2.1
|
9
10
|
platform: ruby
|
10
11
|
authors:
|
11
12
|
- John Nunemaker
|
@@ -102,8 +103,7 @@ files:
|
|
102
103
|
- README.rdoc
|
103
104
|
- Rakefile
|
104
105
|
- lib/gemwhois.rb
|
105
|
-
- lib/
|
106
|
-
- lib/rubygems/commands/whois.rb
|
106
|
+
- lib/rubygems/commands/whois_command.rb
|
107
107
|
- lib/rubygems_plugin.rb
|
108
108
|
- test/fixtures/httparty.json
|
109
109
|
- test/fixtures/missing.json
|
data/lib/gemwhois/version.rb
DELETED