-
Notifications
You must be signed in to change notification settings - Fork 1
/
ruby.1.8.mspec
58 lines (47 loc) · 1.48 KB
/
ruby.1.8.mspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# Configuration file for Ruby 1.8-compatible Ruby implementations.
#
# Unless you passed to --config (or -B) to MSpec, MSpec will automatically
# use this config file if the Ruby interpreter with which MSpec advertises
# itself with RUBY_VERSION =~ /1.8/
class MSpecScript
# Language features specs
set :language, [ 'language' ]
# Core library specs
set :core, [
'core',
# 1.9
'^core/basicobject'
]
# Standard library specs
set :library, [
'library',
# 1.9 feature
'^library/cmath',
'^library/continuation',
'^library/coverage',
'^library/fiber',
'^library/json',
'^library/minitest',
'^library/prime',
'^library/ripper',
'^library/rake',
'^library/rubygems',
]
# An ordered list of the directories containing specs to run
set :files, get(:language) + get(:core) + get(:library)
# This set of files is run by mspec ci
set :ci_files, get(:files)
# Optional library specs
set :ffi, 'optional/ffi'
# A list of _all_ optional library specs
set :optional, [get(:ffi)]
# The default implementation to run the specs
set :target, 'ruby'
set :tags_patterns, [
[%r(language/), 'tags/1.8/language/'],
[%r(core/), 'tags/1.8/core/'],
[%r(command_line/), 'tags/1.8/command_line/'],
[%r(library/), 'tags/1.8/library/'],
[/_spec.rb$/, '_tags.txt']
]
end