Skip to content

Commit

Permalink
Get the dummy app running with Rails 3.1 and ignore vim swap files
Browse files Browse the repository at this point in the history
  • Loading branch information
mhoran committed Feb 22, 2012
1 parent ec656e1 commit 7556fcd
Show file tree
Hide file tree
Showing 5 changed files with 1 addition and 27 deletions.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -4,3 +4,4 @@ pkg/
spec/dummy/db/*.sqlite3
spec/dummy/log/*.log
spec/dummy/tmp/
*.swp
1 change: 0 additions & 1 deletion spec/dummy/config/application.rb
@@ -1,7 +1,6 @@
require File.expand_path('../boot', __FILE__)

require "active_model/railtie"
require "active_record/railtie"
require "action_controller/railtie"
require "action_view/railtie"
require "action_mailer/railtie"
Expand Down
22 changes: 0 additions & 22 deletions spec/dummy/config/database.yml

This file was deleted.

1 change: 0 additions & 1 deletion spec/dummy/config/environments/development.rb
Expand Up @@ -11,7 +11,6 @@

# Show full error reports and disable caching
config.consider_all_requests_local = true
config.action_view.debug_rjs = true
config.action_controller.perform_caching = false

# Don't care if the mailer can't send
Expand Down
3 changes: 0 additions & 3 deletions spec/spec_helper.rb
Expand Up @@ -16,9 +16,6 @@
Capybara.default_driver = :rack_test
Capybara.default_selector = :css

# Run any available migration
ActiveRecord::Migrator.migrate File.expand_path("../dummy/db/migrate/", __FILE__)

# Load support files
Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }

Expand Down

0 comments on commit 7556fcd

Please sign in to comment.