summaryrefslogtreecommitdiff
path: root/tool/sync_default_gems.rb
diff options
context:
space:
mode:
Diffstat (limited to 'tool/sync_default_gems.rb')
-rw-r--r--tool/sync_default_gems.rb9
1 files changed, 9 insertions, 0 deletions
diff --git a/tool/sync_default_gems.rb b/tool/sync_default_gems.rb
index 72cb3b16f9..d42ad70658 100644
--- a/tool/sync_default_gems.rb
+++ b/tool/sync_default_gems.rb
@@ -1,6 +1,7 @@
# sync following repositories to ruby repository
#
# * https://github.com/rubygems/rubygems
+# * https://github.com/bundler/bundler
# * https://github.com/ruby/rdoc
# * https://github.com/flori/json
# * https://github.com/ruby/psych
@@ -39,6 +40,7 @@
$repositories = {
rubygems: 'rubygems/rubygems',
+ bundler: 'bundler/bundler',
rdoc: 'ruby/rdoc',
json: 'flori/json',
psych: 'ruby/psych',
@@ -83,6 +85,13 @@ def sync_default_gems(gem)
`rm -rf lib/rubygems* test/rubygems`
`cp -r ../../rubygems/rubygems/lib/rubygems* ./lib`
`cp -r ../../rubygems/rubygems/test/rubygems ./test`
+ when "bundler"
+ `rm -rf lib/bundler* bin/bundler bin/bundle bin/bundle_ruby spec/bundler man/bundle* man/gemfile*`
+ `cp -r ../../bundler/bundler/lib/bundler* ./lib`
+ `cp -r ../../bundler/bundler/exe/bundle* ./bin`
+ `cp ../../bundler/bundler/bundler.gemspec ./lib`
+ `cp -r ../../bundler/bundler/spec spec/bundler`
+ `cp -r ../../bundler/bundler/man/*.{1,5,1\.txt,5\.txt,ronn} ./man`
when "rdoc"
`rm -rf lib/rdoc* test/rdoc`
`cp -rf ../rdoc/lib/rdoc* ./lib`