rubygems-test 0.3.9 → 0.3.10

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/History.txt CHANGED
@@ -1,3 +1,7 @@
1
+ === 0.3.10 / 2011-03-08
2
+
3
+ * Fixed an issue locating the .gemtest file.
4
+
1
5
  === 0.3.9 / 2011-03-08
2
6
 
3
7
  * Fix for a bug where rake19, etc would not be located.
data/Rakefile CHANGED
@@ -12,7 +12,7 @@ spec = Hoe.spec 'rubygems-test' do
12
12
 
13
13
  # doin' it wrong because we're a gem plugin
14
14
  # that means I can be "special"!
15
- self.version = '0.3.9'
15
+ self.version = '0.3.10'
16
16
 
17
17
  self.rubyforge_name = nil
18
18
 
@@ -464,7 +464,7 @@ class Gem::Commands::TestCommand < Gem::Command
464
464
  next
465
465
  end
466
466
 
467
- if File.join(spec.installation_path, '.gemtest') or options[:force]
467
+ if File.exist?(File.join(spec.full_gem_path, '.gemtest')) or options[:force]
468
468
  # we find rake and the rakefile first to eliminate needlessly installing
469
469
  # dependencies.
470
470
  find_rakefile(spec)
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: rubygems-test
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 0.3.9
5
+ version: 0.3.10
6
6
  platform: ruby
7
7
  authors:
8
8
  - Erik Hollensbe