summaryrefslogtreecommitdiff
path: root/tool
diff options
context:
space:
mode:
authorhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-07-25 12:26:41 +0000
committerhsbt <hsbt@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-07-25 12:26:41 +0000
commit82f55bae8697645505b386c04619df353e14938f (patch)
treefd1ca886a7f14ca936237e5d33167098498f6c78 /tool
parentddb6e1f7129ddb247ef8e2c083e7d54b3a6e8b65 (diff)
Promote Exception2MessageMapper to Default gems.
* lib/e2mmap.gemspec: Added initial gemspec. * lib/e2mmap/version.rb: Added Exception2MessageMapper::VERSION for gemspec. * tool/sync_default_gems.rb: Support Exception2MessageMapper. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@64046 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'tool')
-rw-r--r--tool/sync_default_gems.rb8
1 files changed, 7 insertions, 1 deletions
diff --git a/tool/sync_default_gems.rb b/tool/sync_default_gems.rb
index b48a2ed7ed..0bf1867062 100644
--- a/tool/sync_default_gems.rb
+++ b/tool/sync_default_gems.rb
@@ -33,6 +33,7 @@
# * https://github.com/ruby/shell
# * https://github.com/ruby/forwardable
# * https://github.com/ruby/thwait
+# * https://github.com/ruby/e2mmap
#
$repositories = {
@@ -68,7 +69,8 @@ $repositories = {
tracer: 'ruby/tracer',
shell: 'ruby/shell',
forwardable: "ruby/forwardable",
- thwait: "ruby/thwait"
+ thwait: "ruby/thwait",
+ e2mmap: "ruby/e2mmap"
}
def sync_default_gems(gem)
@@ -178,6 +180,10 @@ def sync_default_gems(gem)
`rm -rf lib/thwait*`
`cp -rf ../thwait/lib/* lib`
`cp -rf ../thwait/thwait.gemspec lib`
+ when "e2mmap"
+ `rm -rf lib/e2mmap*`
+ `cp -rf ../e2mmap/lib/* lib`
+ `cp -rf ../e2mmap/e2mmap.gemspec lib`
when "strscan"
`rm -rf ext/strscan test/strscan`
`cp -rf ../strscan/ext/strscan ext`