We got nominated! Help us out and vote for GitHub as Best Bootstrapped Startup of 2008. (You can vote once a day.) [ hide ]

public
Fork of dchelimsky/rspec
Description: Behaviour Driven Development framework for Ruby
Homepage: http://rspec.info
Clone URL: git://github.com/jdelStrother/rspec.git
josephwilk (author)
Mon Jul 14 04:51:52 -0700 2008
dchelimsky (committer)
Tue Jul 15 20:57:11 -0700 2008
commit  d84231200d1b09ed4d21c82487a6bf4cc29509f6
tree    5b8be6fc84189f99c4a596d9702be1fa1fe57d0a
parent  5bb989c6a54e325198e180ef3d4e59b5bf6eb21c
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 Sat Jul 12 16:18:23 -0700 2008 words [dchelimsky]
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 Sun Jul 06 05:10:47 -0700 2008 add example and fix coverage problem with have_... [dchelimsky]
file TODO Fri Apr 18 15:05:23 -0700 2008 Revert "just testing some stuff" [Brian Takita & Nathan Sobo]
directory bin/ Sat Jul 12 10:16:12 -0700 2008 eliminated (use Spec::Runner.options instead) [dchelimsky]
directory examples/ Thu May 29 17:20:46 -0700 2008 support multiline (specs and code from Ola Bini) [dchelimsky]
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 Jul 15 20:57:11 -0700 2008 "And"s in Story HTML output [josephwilk]
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/ Tue Jul 15 20:57:11 -0700 2008 "And"s in Story HTML output [josephwilk]
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.