rubygems-test 0.3.11 → 0.3.12

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.
@@ -14,7 +14,7 @@ class Gem::Commands::TestCommand < Gem::Command
14
14
  include Gem::VersionOption
15
15
  include Gem::DefaultUserInteraction
16
16
 
17
- VERSION = "0.3.11"
17
+ VERSION = "0.3.12"
18
18
 
19
19
  # taken straight out of rake
20
20
  DEFAULT_RAKEFILES = ['rakefile', 'Rakefile', 'rakefile.rb', 'Rakefile.rb']
@@ -100,7 +100,7 @@ class Gem::Commands::TestCommand < Gem::Command
100
100
  rake_path = nil;
101
101
 
102
102
  begin
103
- rake_path = Gem.bin_path('rake')
103
+ rake_path = Gem.bin_path('rake', 'rake')
104
104
  rescue
105
105
  if RUBY_VERSION > '1.9' and File.exist?(File.join(RbConfig::CONFIG["bindir"], Gem::Installer.exec_format % 'rake'))
106
106
  rake_path = File.join(RbConfig::CONFIG["bindir"], Gem::Installer.exec_format % 'rake')
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.11
5
+ version: 0.3.12
6
6
  platform: ruby
7
7
  authors:
8
8
  - Erik Hollensbe
@@ -11,8 +11,7 @@ autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
13
 
14
- date: 2011-03-12 23:00:00 -05:00
15
- default_executable:
14
+ date: 2011-04-08 00:00:00 Z
16
15
  dependencies:
17
16
  - !ruby/object:Gem::Dependency
18
17
  name: rake
@@ -33,7 +32,7 @@ dependencies:
33
32
  requirements:
34
33
  - - ">="
35
34
  - !ruby/object:Gem::Version
36
- version: 2.9.1
35
+ version: 2.9.4
37
36
  type: :development
38
37
  version_requirements: *id002
39
38
  description: " This installs three major features:\n\n * a 'gem test' command.\n * the ability to test your gems on installation, and uninstall them if they fail testing.\n * A facility to upload your test results to http://www.gem-testers.org.\n"
@@ -66,7 +65,6 @@ files:
66
65
  - test/helper.rb
67
66
  - test/interactive_test_on-install.rb
68
67
  - test/test_execute.rb
69
- has_rdoc: true
70
68
  homepage: http://github.com/rubygems/rubygems-test
71
69
  licenses: []
72
70
 
@@ -91,7 +89,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
91
89
  requirements: []
92
90
 
93
91
  rubyforge_project:
94
- rubygems_version: 1.6.2
92
+ rubygems_version: 1.7.2
95
93
  signing_key:
96
94
  specification_version: 3
97
95
  summary: commands and facilities for automated and user-contributed rubygems testing and reporting