public
Description: Executable specification for the Ruby programming language using RSpec syntax.
Homepage: http://rubyspec.org
Clone URL: git://github.com/rubyspec/rubyspec.git
runpaint (author)
Fri Jul 03 15:15:52 -0700 2009
commit  5f71bc4d5bb37dafea002372d06adc2c8b1da19f
tree    59bad48c557bf7e7c3c79fe02f1d240a1021a786
parent  36c1c47cc87add18d35f2da64b67663f7734f3fd
name age message
file .gitignore Wed Jun 10 11:00:03 -0700 2009 Updated .gitignore [alloy]
file CHANGES.before-2008-05-10 Sat May 10 11:20:23 -0700 2008 Extracted the spec revision history from the Ru... [rue]
file LICENSE Sat May 17 00:12:15 -0700 2008 Update license info. [brixen]
file README.markdown Sun May 24 11:15:49 -0700 2009 Add a README to make it easier for people to ge... [Hongli Lai (Phusion)]
file TODO Loading commit data...
directory command_line/ Sun Jun 28 03:38:24 -0700 2009 ruby -U: Dpecify 1.9 switch. [runpaint]
directory core/
directory fixtures/ Fri Jun 12 12:29:48 -0700 2009 #method_missing: Move shared fixture code to f... [runpaint]
directory language/ Thu Jul 02 00:21:55 -0700 2009 Add spec for mismatched block arguments [enebo]
directory library/
directory nbproject/ Wed Feb 04 16:02:23 -0800 2009 Remove nbproject/private directory and add it t... [mernen]
directory optional/ Wed Jun 10 11:12:32 -0700 2009 Major messup while rebasing. Luckily git saved ... [alloy]
file ruby.1.8.mspec Wed Jun 17 20:12:43 -0700 2009 Teach mspec about 1.8 tags. [runpaint]
file ruby.1.9.mspec Wed Jun 10 11:00:13 -0700 2009 Added :ffi and :optional (which at some point c... [alloy]
directory shared/
file spec_helper.rb Mon Jun 08 15:34:41 -0700 2009 Update version to 0.7.6 and require mspec 1.5.12. [brixen]
directory tags/ Wed Jul 01 15:09:24 -0700 2009 Complex#%: Tag for 1.9; isn't implemented yet. [runpaint]
file version.rb Mon Jun 08 15:34:41 -0700 2009 Update version to 0.7.6 and require mspec 1.5.12. [brixen]
README.markdown

About RubySpec

RubySpec is a project to write a complete, executable specification for the Ruby programming language. The goal is official recognition and support from all the organizations currently involved in Ruby implementations, such as MatzRuby (including YARV), JRuby, IronRuby, MacRuby, Ruby.NET and MagLev. The specs describe Ruby language syntax, core library classes, and standard library classes.

This project has a free-flowing commit bit policy. If you have had a patch accepted by any current Ruby implementation project, you can get a commit bit by referencing your patch. Anyone who submits an accepted patch to this project will also receive a commit bit. The only requirement is that you have a Github account.

Running RubySpec

The RubySpec specification files are written in Ruby, utilizing the MSpec testing framework, so you need to download MSpec in order to run the RubySpec suite. If you don't have MSpec yet, then go to a directory outside the RubySpec directory and check out its source code from Github:

$ cd /somewhere
$ git clone git://github.com/rubyspec/mspec.git
# MSpec is now available in /somewhere/mspec.

You should add the MSpec bin directory to your PATH for easy access. In this README we'll assume that the mspec command is in PATH.

$ export PATH=/somewhere/mspec/bin:$PATH

If you already have MSpec, then you should run git pull from the MSpec source directory from time to time, because RubySpec often utilizes the latest MSpec features.

By invoking the mspec command inside the RubySpec directory, it will run the entire RubySpec suite against the Ruby interpreter (named ruby) in your PATH:

$ cd /path-to-rubyspec
$ mspec

Running RubySpec against a specific Ruby interpreter

Use the -t option to specify the Ruby interpreter that you want to run RubySpec against. The argument may be a full path to the Ruby binary:

# Runs RubySpec against /opt/ruby-enterprise/bin/ruby
$ mspec -t /opt/ruby-enterprise/bin/ruby

The argument may also be a shortcut. For example, if you specify j, then MSpec will look for jruby in PATH and run RubySpec against that:

# Runs RubySpec against JRuby in PATH.
$ mspec -t j

See mspec --help for a list of possible -t shortcut values.

Running parts of the spec

To run a single spec file, pass the filename to MSpec, for example:

$ mspec core/kernel/kind_of_spec.rb

You can also pass a directory, in which case all specs in that directories will be run:

$ mspec core/kernel

Note however that passing a directory to MSpec may not always be a good idea, because some specs aren't supposed to be run against the active Ruby interpreter. For example, if you run mspec -t /usr/bin/ruby1.8 library, then MSpec will run the 1.9-specific library specs as well, even though you specified Ruby 1.8 as the Ruby interpreter. Instead, you can specify pseudo-directories, which are defined in ruby.1.8.mspec and ruby.1.9.mspec. These pseudo-directories only include files appropriate for the active Ruby interpreter.

$ mspec :core
$ mspec :library
$ mspec :language

More

For more documentation, e.g. with regard to writing specs, please visit the Wiki.