Sha256: 06a3bb1120503452630dd1199a0a188e61b936bb4bf82479a4b6f16c20854104
Contents?: true
Size: 1.93 KB
Versions: 10
Compression:
Stored size: 1.93 KB
Contents
config.cache_classes = true # This must be true for Cucumber to operate correctly! # Log error messages when you accidentally call methods on nil. config.whiny_nils = true # Show full error reports and disable caching config.action_controller.consider_all_requests_local = true config.action_controller.perform_caching = false config.action_view.cache_template_loading = true # Disable request forgery protection in test environment config.action_controller.allow_forgery_protection = false # Tell Action Mailer not to deliver emails to the real world. # The :test delivery method accumulates sent emails in the # ActionMailer::Base.deliveries array. config.action_mailer.delivery_method = :test config.gem 'thoughtbot-factory_girl', :lib => 'factory_girl', :source => 'http://gems.github.com' config.gem 'thoughtbot-shoulda', :lib => 'shoulda', :source => 'http://gems.github.com' config.gem "cucumber", :lib => false, :version => ">=0.3.92" unless File.directory?(File.join(Rails.root, 'vendor/plugins/cucumber')) config.gem "webrat", :lib => false, :version => ">=0.4.4" unless File.directory?(File.join(Rails.root, 'vendor/plugins/webrat')) config.gem "rspec", :lib => false, :version => ">=1.2.6" unless File.directory?(File.join(Rails.root, 'vendor/plugins/rspec')) config.gem "rspec-rails", :lib => 'spec/rails', :version => ">=1.2.6" unless File.directory?(File.join(Rails.root, 'vendor/plugins/rspec-rails')) # only required if you want to use selenium for testing #config.gem 'selenium-client', :lib => 'selenium/client' #config.gem 'bmabey-database_cleaner', :lib => 'database_cleaner', :source => 'http://gems.github.com' config.gem 'term-ansicolor', :version => '>=1.0.3', :lib => 'term/ansicolor' require 'factory_girl' begin require 'redgreen'; rescue LoadError; end config.action_controller.session = { :key => GlobalConfig.session_key, :secret => GlobalConfig.session_secret }
Version data entries
10 entries across 10 versions & 1 rubygems