summaryrefslogtreecommitdiffhomepage
path: root/Rakefile
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2020-10-29 23:16:54 +0900
committerYukihiro "Matz" Matsumoto <[email protected]>2020-10-29 23:16:54 +0900
commite4d4192c3ae05364b1c522752b79884ee74931bd (patch)
treeb433863d2979417763347f09bfdf83acd85b33d8 /Rakefile
parenta5d05ea8b712ffd51e9518a5604815f10e89bee7 (diff)
downloadmruby-e4d4192c3ae05364b1c522752b79884ee74931bd.tar.gz
mruby-e4d4192c3ae05364b1c522752b79884ee74931bd.zip
Exclude symbols from `mruby-test` gem only used for tests.
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Rakefile b/Rakefile
index 036894592..dc0f23a71 100644
--- a/Rakefile
+++ b/Rakefile
@@ -105,7 +105,7 @@ cfiles = (
).uniq
rbfiles = (
Dir.glob("#{MRUBY_ROOT}/mrblib/**/*.rb")+
- Dir.glob("#{MRUBY_ROOT}/mrbgems/*/mrblib/**/*.rb")+
+ Dir.glob("#{MRUBY_ROOT}/mrbgems/*/mrblib/**/*.rb").grep_v(/mruby-test/)+
Dir.glob("#{MRUBY_ROOT}/build/repos/**/mrblib/**/*.rb")
).uniq
psfiles = Dir.glob("#{MRUBY_ROOT}/{mrblib,mrbgems,build/repos}/**/presym")