aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAaron Patterson <aaron.patterson@gmail.com>2010-09-24 15:23:19 -0700
committerAaron Patterson <aaron.patterson@gmail.com>2010-09-24 15:23:19 -0700
commitc12b886031ac59dd379f24434c2c14cf41d4082b (patch)
tree176c2c613a5f1579bf849315bc9b09e665581c2e
parent6b86ae4f9f2fb8cd145f958753fedf16aae3a0d4 (diff)
downloadrails-c12b886031ac59dd379f24434c2c14cf41d4082b.tar.gz
rails-c12b886031ac59dd379f24434c2c14cf41d4082b.tar.bz2
rails-c12b886031ac59dd379f24434c2c14cf41d4082b.zip
removing the v1 rake task
-rw-r--r--Rakefile12
1 files changed, 0 insertions, 12 deletions
diff --git a/Rakefile b/Rakefile
index a6f80222c8..40fb0afc07 100644
--- a/Rakefile
+++ b/Rakefile
@@ -41,18 +41,6 @@ else
desc "Run specs with the #{adapter} database adapter"
task adapter => "set_env_for_#{adapter}"
-
- namespace :v1 do
- Spec::Rake::SpecTask.new(adapter) do |t|
- t.spec_opts = ['--options', "\"#{File.dirname(__FILE__)}/spec/spec.opts\""]
- t.libs << "#{File.dirname(__FILE__)}/spec"
- t.warning = true
- t.spec_files = FileList['spec/arel/**/*_spec.rb']
- end
-
- desc "Run specs with the #{adapter} database adapter"
- task adapter => "set_env_for_#{adapter}"
- end
end
end