diff options
author | drbrain <drbrain@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2013-10-16 00:14:16 +0000 |
---|---|---|
committer | drbrain <drbrain@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2013-10-16 00:14:16 +0000 |
commit | 28918eac58eb6e2681d10839ac0d1430b2a4f1f9 (patch) | |
tree | 3c2c9e36118efe1d9406acdd14c186788879bea3 /test/rubygems/test_gem_commands_pristine_command.rb | |
parent | cfe1458078b8cf36e490c516977c52e1faa9e88a (diff) |
* lib/rubygems: Update to RubyGems master commit 2a74263. This fixes
several bugs in RubyGems 2.2.0.preview.1.
* test/rubygems: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@43298 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/rubygems/test_gem_commands_pristine_command.rb')
-rw-r--r-- | test/rubygems/test_gem_commands_pristine_command.rb | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/test/rubygems/test_gem_commands_pristine_command.rb b/test/rubygems/test_gem_commands_pristine_command.rb index 1767397d16..1dde7d1219 100644 --- a/test/rubygems/test_gem_commands_pristine_command.rb +++ b/test/rubygems/test_gem_commands_pristine_command.rb @@ -117,8 +117,9 @@ class TestGemCommandsPristineCommand < Gem::TestCase write_file ext_path do |io| io.write <<-'RUBY' File.open "Makefile", "w" do |f| + f.puts "clean:\n\techo cleaned\n" f.puts "all:\n\techo built\n" - f.puts "install:\n\techo built\n" + f.puts "install:\n\techo installed\n" end RUBY end @@ -177,8 +178,9 @@ class TestGemCommandsPristineCommand < Gem::TestCase write_file ext_path do |io| io.write <<-'RUBY' File.open "Makefile", "w" do |f| + f.puts "clean:\n\techo cleaned\n" f.puts "all:\n\techo built\n" - f.puts "install:\n\techo built\n" + f.puts "install:\n\techo installed\n" end RUBY end |