public
Description: Behaviour Driven Development framework for Ruby
Homepage: http://rspec.info
Clone URL: git://github.com/dchelimsky/rspec.git
Click here to lend your support to: rspec and make a donation at www.pledgie.com !
Jonathan del Strother (author)
Tue Aug 05 10:04:55 -0700 2008
commit  c0ba1fcdab4c30b0075b326119b23bc196ad5355
tree    c5954d3336beeba38ab1cece921cfd384e49e8e6
parent  59128a36e46becf3045ffe6ab4a32bb10f0ab8e9
rspec /
name age message
file .autotest Thu Apr 03 15:02:31 -0700 2008 remove everything but rspec (core) from main rs... [dchelimsky]
file .gitignore Sun Jul 06 05:10:03 -0700 2008 ignore coverage [dchelimsky]
file History.txt Loading commit data...
file Manifest.txt Sat Jul 05 22:19:20 -0700 2008 Remove translator from Manifest.txt [#458 statu... [dchelimsky]
file README.txt Wed Jul 02 21:55:56 -0700 2008 update README [dchelimsky]
file Rakefile
file TODO Fri Apr 18 15:05:23 -0700 2008 Revert "just testing some stuff" This reverts ... [Brian Takita & Nathan Sobo]
directory bin/
directory examples/
directory failing_examples/ Thu Apr 03 15:02:31 -0700 2008 remove everything but rspec (core) from main rs... [dchelimsky]
file init.rb Thu Apr 03 15:02:31 -0700 2008 remove everything but rspec (core) from main rs... [dchelimsky]
directory lib/ Tue Aug 05 10:04:55 -0700 2008 Avoid ruby invocation errors when autotesting ... [Jonathan del Strother]
directory plugins/ Sat May 24 15:55:15 -0700 2008 Decouple mock framework from global extensions ... [dchelimsky]
directory rake_tasks/ Sun Jul 06 05:10:47 -0700 2008 add example and fix coverage problem with have_... [dchelimsky]
directory spec/
directory stories/ Sat Jul 12 15:04:40 -0700 2008 Apply before_suite_parts *after* loading files!... [dchelimsky]
directory story_server/ Thu Apr 03 15:02:31 -0700 2008 remove everything but rspec (core) from main rs... [dchelimsky]
README.txt
= RSpec

* http://rspec.info
* http://rspec.info/rdoc/
* http://github.com/dchelimsky/rspec-rails/wikis
* mailto:rspec-devel@rubyforge.org

== DESCRIPTION:

RSpec is a Behaviour Driven Development framework with tools to express User
Stories with Executable Scenarios and Executable Examples at the code level.

== FEATURES:

* Spec::Story provides a framework for expressing User Stories and Scenarios
* Spec::Example provides a framework for expressing Isolated Examples
* Spec::Matchers provides Expression Matchers for use with Spec::Expectations and Spec::Mocks.

== SYNOPSIS:

Spec::Expectations supports setting expectations on your objects so you
can do things like:

  result.should equal(expected_result)
  
Spec::Mocks supports creating Mock Objects, Stubs, and adding Mock/Stub
behaviour to your existing objects.

== INSTALL:

  [sudo] gem install rspec

 or

  git clone git://github.com/dchelimsky/rspec.git
  cd rspec
  rake gem
  rake install_gem

== LICENSE:

(The MIT License)

Copyright (c) 2005-2008 The RSpec Development Team

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.