From 45d8663de5a58740ac6bcf6c18a377aeb6fa0cd5 Mon Sep 17 00:00:00 2001 From: Jamie Winsor Date: Wed, 10 Aug 2011 17:03:37 -0700 Subject: Dummy app is no longer a submodule, now part of the projected - generated by testing generator Remove remaining traces of cucumber --- spec/dummy | 1 - spec/dummy/config/application.rb | 43 ++++++++++++++++++++++++++++++++++++++++ 2 files changed, 43 insertions(+), 1 deletion(-) delete mode 160000 spec/dummy create mode 100644 spec/dummy/config/application.rb (limited to 'spec/dummy/config/application.rb') diff --git a/spec/dummy b/spec/dummy deleted file mode 160000 index 36f851b..0000000 --- a/spec/dummy +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 36f851b7d5eca685475eb3a232e1d8dabfb1653a diff --git a/spec/dummy/config/application.rb b/spec/dummy/config/application.rb new file mode 100644 index 0000000..60df716 --- /dev/null +++ b/spec/dummy/config/application.rb @@ -0,0 +1,43 @@ +require File.expand_path('../boot', __FILE__) + +require 'rails/all' + +require 'bundler/setup' +Bundler.require +require 'refinerycms-blog' + +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 + # -- all .rb files in that directory are automatically loaded. + + # Custom directories with classes and modules you want to be autoloadable. + # config.autoload_paths += %W(#{config.root}/extras) + + # Only load the plugins named here, in the order given (default is alphabetical). + # :all can be used as a placeholder for all plugins not explicitly named. + # config.plugins = [ :exception_notification, :ssl_requirement, :all ] + + # Activate observers that should always be running. + # config.active_record.observers = :cacher, :garbage_collector, :forum_observer + + # Set Time.zone default to the specified zone and make Active Record auto-convert to this zone. + # Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC. + # config.time_zone = 'Central Time (US & Canada)' + + # The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded. + # config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s] + # config.i18n.default_locale = :de + + # Configure the default encoding used in templates for Ruby 1.9. + config.encoding = "utf-8" + + # Configure sensitive parameters which will be filtered from the log file. + config.filter_parameters += [:password] + + # Enable the asset pipeline + config.assets.enabled = true + end +end + -- cgit v1.2.3