rubyspec / rubyspec

Executable specification for the Ruby programming language using RSpec syntax.

This URL has Read+Write access

rubyspec / ruby.1.8.mspec
100644 31 lines (25 sloc) 0.643 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
class MSpecScript
  # Language features specs
  set :language, [ 'language' ]
 
  # Core library specs
  set :core, [ 'core' ]
 
  # 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