summaryrefslogtreecommitdiff
path: root/tool
diff options
context:
space:
mode:
authoreregon <eregon@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-02-27 20:44:57 +0000
committereregon <eregon@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-02-27 20:44:57 +0000
commit5506d86e99ef5d3a43d4bc71021d16ed7447863a (patch)
treea0bf050bcfee189becaa01ccccb68b156c5c35c3 /tool
parenta5023c33b537edd6e6785b1e81f35bee4093fac5 (diff)
Remove tool/pull-latest-mspec-spec
* It is now part of mspec in spec/mspec/tool/pull-latest-mspec-spec git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@62604 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'tool')
-rwxr-xr-xtool/pull-latest-mspec-spec18
1 files changed, 0 insertions, 18 deletions
diff --git a/tool/pull-latest-mspec-spec b/tool/pull-latest-mspec-spec
deleted file mode 100755
index dfd80582b3..0000000000
--- a/tool/pull-latest-mspec-spec
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/bin/bash
-
-# Assumes all commits have been synchronized to https://github.com/ruby/spec
-# See spec/mspec/tool/sync/sync-rubyspec.rb
-
-rm -rf spec/mspec
-git clone --depth 1 https://github.com/ruby/mspec.git spec/mspec
-commit=$(git -C spec/mspec log -n 1 --format='%h')
-rm -rf spec/mspec/.git
-git add spec/mspec
-git commit -m "Update to ruby/mspec@${commit}"
-
-rm -rf spec/ruby
-git clone --depth 1 https://github.com/ruby/spec.git spec/ruby
-commit=$(git -C spec/ruby log -n 1 --format='%h')
-rm -rf spec/ruby/.git
-git add spec/ruby
-git commit -m "Update to ruby/spec@${commit}"