mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
14 lines
465 B
Text
14 lines
465 B
Text
|
class MSpecScript
|
||
|
# An ordered list of the directories containing specs to run
|
||
|
# as the CI process.
|
||
|
set :ci_files, %w[
|
||
|
spec/rubyspec/1.9/core
|
||
|
spec/rubyspec/1.9/language
|
||
|
spec/rubyspec/1.9/library
|
||
|
]
|
||
|
|
||
|
srcdir = File.expand_path(File.join(File.dirname(__FILE__), '..'))
|
||
|
# The default implementation to run the specs.
|
||
|
set :target, File.join(srcdir, `#{srcdir}/miniruby -I#{srcdir} -rrbconfig -e 'print Config::CONFIG["RUBY_INSTALL_NAME"]'`)
|
||
|
end
|