diff options
author | louise <louise> | 2007-10-16 18:53:14 +0000 |
---|---|---|
committer | louise <louise> | 2007-10-16 18:53:14 +0000 |
commit | 3b1d8bfdeea68da1ad083a305d0df8f458c362a0 (patch) | |
tree | db8397b939cbe2d66ac7a0f26d8e3e175c7999da | |
parent | fe23a63607353b0173133183030faccea882629d (diff) |
Adding rspec_on_rails plugin
-rw-r--r-- | vendor/plugins/rspec_on_rails/MIT-LICENSE | 31 | ||||
-rw-r--r-- | vendor/plugins/rspec_on_rails/README | 1 | ||||
-rw-r--r-- | vendor/plugins/rspec_on_rails/Rakefile | 9 | ||||
-rw-r--r-- | vendor/plugins/rspec_on_rails/init.rb | 9 |
4 files changed, 50 insertions, 0 deletions
diff --git a/vendor/plugins/rspec_on_rails/MIT-LICENSE b/vendor/plugins/rspec_on_rails/MIT-LICENSE new file mode 100644 index 000000000..239d8e7ee --- /dev/null +++ b/vendor/plugins/rspec_on_rails/MIT-LICENSE @@ -0,0 +1,31 @@ +==================================================================== +== RSpec +Copyright (c) 2005-2007 The RSpec Development Team +==================================================================== +== ARTS +Copyright (c) 2006 Kevin Clark, Jake Howerton +==================================================================== +== ZenTest +Copyright (c) 2001-2006 Ryan Davis, Eric Hodel, Zen Spider Software +==================================================================== +== AssertSelect +Copyright (c) 2006 Assaf Arkin +==================================================================== + +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. diff --git a/vendor/plugins/rspec_on_rails/README b/vendor/plugins/rspec_on_rails/README new file mode 100644 index 000000000..5ba4ec2f3 --- /dev/null +++ b/vendor/plugins/rspec_on_rails/README @@ -0,0 +1 @@ +See Spec::Rails
\ No newline at end of file diff --git a/vendor/plugins/rspec_on_rails/Rakefile b/vendor/plugins/rspec_on_rails/Rakefile new file mode 100644 index 000000000..39b5d2256 --- /dev/null +++ b/vendor/plugins/rspec_on_rails/Rakefile @@ -0,0 +1,9 @@ +require 'rake' +require 'rake/rdoctask' + +desc 'Generate RDoc' +rd = Rake::RDocTask.new do |rdoc| + rdoc.rdoc_dir = '../doc/output/rdoc-rails' + rdoc.options << '--title' << 'Spec::Rails' << '--line-numbers' << '--inline-source' << '--main' << 'Spec::Rails' + rdoc.rdoc_files.include('MIT-LICENSE', 'lib/**/*.rb') +end diff --git a/vendor/plugins/rspec_on_rails/init.rb b/vendor/plugins/rspec_on_rails/init.rb new file mode 100644 index 000000000..54e574905 --- /dev/null +++ b/vendor/plugins/rspec_on_rails/init.rb @@ -0,0 +1,9 @@ +# Placeholder to satisfy Rails. +# +# Do NOT add any require statements to this file. Doing +# so will cause Rails to load this plugin all of the time. +# +# Running 'ruby script/generate rspec' will +# generate spec/spec_helper.rb, which includes the necessary +# require statements and configuration. This file should +# be required by all of your spec files. |