ruby-changes:54774
From: hsbt <ko1@a...>
Date: Sat, 2 Feb 2019 19:41:29 +0900 (JST)
Subject: [ruby-changes:54774] hsbt:r66993 (trunk): Fixup r66984. Update the location of bundler gemspec.
hsbt 2019-02-02 19:41:22 +0900 (Sat, 02 Feb 2019) New Revision: 66993 https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=66993 Log: Fixup r66984. Update the location of bundler gemspec. Modified files: trunk/spec/bundler/support/path.rb trunk/tool/sync_default_gems.rb Index: spec/bundler/support/path.rb =================================================================== --- spec/bundler/support/path.rb (revision 66992) +++ spec/bundler/support/path.rb (revision 66993) @@ -9,7 +9,7 @@ module Spec https://github.com/ruby/ruby/blob/trunk/spec/bundler/support/path.rb#L9 end def gemspec - @gemspec ||= root.join(ruby_core? ? "lib/bundler.gemspec" : "bundler.gemspec") + @gemspec ||= root.join(ruby_core? ? "lib/bundler/bundler.gemspec" : "bundler.gemspec") end def bindir Index: tool/sync_default_gems.rb =================================================================== --- tool/sync_default_gems.rb (revision 66992) +++ tool/sync_default_gems.rb (revision 66993) @@ -89,7 +89,7 @@ def sync_default_gems(gem) https://github.com/ruby/ruby/blob/trunk/tool/sync_default_gems.rb#L89 `rm -rf lib/bundler* libexec/bundler libexec/bundle libexec/bundle_ruby spec/bundler man/bundle* man/gemfile*` `cp -r ../../bundler/bundler/lib/bundler* ./lib` `cp -r ../../bundler/bundler/exe/bundle* ./libexec` - `cp ../../bundler/bundler/bundler.gemspec ./lib` + `cp ../../bundler/bundler/bundler.gemspec ./lib/bundler` `cp -r ../../bundler/bundler/spec spec/bundler` `cp -r ../../bundler/bundler/man/*.{1,5,1\.txt,5\.txt,ronn} ./man` `rm -rf spec/bundler/support/artifice/vcr_cassettes` -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/