aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--vendor/plugins/rspec_on_rails/MIT-LICENSE31
-rw-r--r--vendor/plugins/rspec_on_rails/README1
-rw-r--r--vendor/plugins/rspec_on_rails/Rakefile9
-rw-r--r--vendor/plugins/rspec_on_rails/init.rb9
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.