mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
e370754189
* Makefile.in (update-rubyspec): renamed the rubyspec directory "spec". Changed directory structure. * Makefile.in (test-rubyspec): ditto. * spec/README: described the structure of "spec" directory. * spec/default.mspec: configured for Matz's Ruby Implementation. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@18359 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
13 lines
465 B
Ruby
13 lines
465 B
Ruby
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
|