public
Description: Executable specification for the Ruby programming language using RSpec syntax.
Homepage: http://rubyspec.org
Clone URL: git://github.com/rubyspec/rubyspec.git
brixen (author)
Mon Jun 08 15:34:41 -0700 2009
commit  68fb64a589478e87d6abf027a5b83a513c9b5002
tree    c9ae42765790785102d73649ea32b766e50e708e
parent  81dc3e6cdc8c9cda84b0b2bb41719aa4230daf30
rubyspec / ruby.1.8.mspec
100644 42 lines (34 sloc) 0.941 kb
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
# 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)
 
  # The default implementation to run the specs.
  set :target, 'ruby'
end