Updated MSpec source to 46e80081.
[rbx.git] / spec / default.mspec
blob60467ecd5ff87f3b64746565de02c89f5767e695
1 class MSpecScript
2   # An ordered list of the directories containing specs to run
3   # as the CI process.
4   set :ci_files, [
5     'spec/frozen/1.8/core',
6     'spec/frozen/1.8/language',
7     'spec/compiler',
8     'spec/core',
9     'spec/debugger',
10     'spec/subtend',
11     'spec/parser',
12   ]
14   # The set of substitutions to transform a spec filename
15   # into a tag filename.
16   set :tags_patterns, [
17                         [%r(spec/ruby/), 'spec/frozen/'],
18                         [%r(spec/), 'spec/tags/'],
19                         [/_spec.rb$/, '_tags.txt']
20                       ]
22   # The default implementation to run the specs.
23   set :target, 'shotgun/rubinius'
24 end