spec/dummy/config/application.rb in cadenero-0.0.2.b2 vs spec/dummy/config/application.rb in cadenero-0.0.2.b3

- old
+ new

@@ -1,11 +1,15 @@ require File.expand_path('../boot', __FILE__) require 'rails/all' -Bundler.require(*Rails.groups) -require "cadenero" +if defined?(Bundler) + # If you precompile assets before deploying to production, use this line + Bundler.require(*Rails.groups(:assets => %w(development test))) + # If you want your assets lazily compiled in production, use this line + # Bundler.require(:default, :assets, Rails.env) +end module Dummy class Application < Rails::Application # Settings in config/environments/* take precedence over those specified here. # Application configuration should go into files in config/initializers @@ -45,19 +49,14 @@ # Enforce whitelist mode for mass assignment. # This will create an empty whitelist of attributes available for mass-assignment for all models # in your app. As such, your models will need to explicitly whitelist or blacklist accessible # parameters by using an attr_accessible or attr_protected declaration. - config.active_record.whitelist_attributes = true + #config.active_record.whitelist_attributes = true # Enable the asset pipeline config.assets.enabled = true # Version of your assets, change this if you want to expire all your assets config.assets.version = '1.0' - - config.generators do |g| - g.test_framework :rspec - end end end -