Updated spec tags for new rubyspecs.
[rbx.git] / spec / full.mspec
blobb156d5d3bab8281681a09419a20d50367dd3e16d
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/frozen/1.8/library',
12     # parser specs cause odd problems with library
13     # specs, so they go last
14     'spec/parser',
15   ]
17   # The directory to search for tags for each spec file
18   # processed. The directory is relative to the directory
19   # in which the spec runner is invoked, in this case,
20   # the rubinius root.
21   set :tags_dir, File.expand_path('spec/tags')
23   # The default implementation to run the specs.
24   set :target, 'shotgun/rubinius'
25 end