Skip to content

Commit

Permalink
reorder default rake task for rspec-rails spec suite
Browse files Browse the repository at this point in the history
  • Loading branch information
dchelimsky committed Jun 6, 2010
1 parent a3a06d6 commit cba0156
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 5 deletions.
1 change: 1 addition & 0 deletions Gemfile
Original file line number Original file line Diff line number Diff line change
@@ -1,5 +1,6 @@
source "http://rubygems.org" source "http://rubygems.org"


gem 'arel', :path => "./vendor/arel"
gem 'rails', :path => "./vendor/rails" gem 'rails', :path => "./vendor/rails"
gem 'rspec', '>= 2.0.0.beta.10' gem 'rspec', '>= 2.0.0.beta.10'
gem 'cucumber' gem 'cucumber'
Expand Down
2 changes: 1 addition & 1 deletion Rakefile
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -137,5 +137,5 @@ namespace :clobber do
end end
end end


task :default => ["clobber:app", "generate:app", "generate:stuff", :spec, :cucumber, :smoke] task :default => ["clobber:app", "generate:app", "generate:stuff", :smoke, :spec, :cucumber]


2 changes: 1 addition & 1 deletion rspec-rails.gemspec
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ Gem::Specification.new do |s|
"VERSION", "VERSION",
"autotest/discover.rb", "autotest/discover.rb",
"cucumber.yml", "cucumber.yml",
"example_app_template.rb",
"features/controller_specs/do_not_render_views.feature", "features/controller_specs/do_not_render_views.feature",
"features/controller_specs/readers.feature", "features/controller_specs/readers.feature",
"features/controller_specs/render_views.feature", "features/controller_specs/render_views.feature",
Expand Down Expand Up @@ -104,6 +103,7 @@ Gem::Specification.new do |s|
"spec/spec_helper.rb", "spec/spec_helper.rb",
"spec/support/helpers.rb", "spec/support/helpers.rb",
"specs.watchr", "specs.watchr",
"templates/Gemfile",
"templates/generate_stuff.rb", "templates/generate_stuff.rb",
"templates/run_specs.rb" "templates/run_specs.rb"
] ]
Expand Down
1 change: 0 additions & 1 deletion templates/Gemfile
Original file line number Original file line Diff line number Diff line change
@@ -1,7 +1,6 @@
source 'http://rubygems.org' source 'http://rubygems.org'


gem "rails", :path => "../../vendor/rails" gem "rails", :path => "../../vendor/rails"
gem "arel", :path => "../../vendor/arel"


gem 'sqlite3-ruby', :require => 'sqlite3' gem 'sqlite3-ruby', :require => 'sqlite3'


Expand Down
2 changes: 0 additions & 2 deletions templates/generate_stuff.rb
Original file line number Original file line Diff line number Diff line change
@@ -1,5 +1,3 @@
run('bundle lock')

generate('rspec:install') generate('rspec:install')
generate('controller wombats index') generate('controller wombats index')
generate('integration_test widgets') generate('integration_test widgets')
Expand Down

0 comments on commit cba0156

Please sign in to comment.