aboutsummaryrefslogtreecommitdiffstats
path: root/spec/dummy/config/application.rb
diff options
context:
space:
mode:
authorJamie Winsor <jamie@enmasse.com>2011-08-14 19:31:36 -0700
committerJamie Winsor <jamie@enmasse.com>2011-08-14 19:32:25 -0700
commit13cafc094712787bf0e5ad0b1dc0e4eb764920d9 (patch)
tree45fe84815cf7a86451a87b934a46154eeeb9d974 /spec/dummy/config/application.rb
parent87bc12a1e47779fcfa90d24a2eb22862560ca646 (diff)
downloadrefinerycms-blog-13cafc094712787bf0e5ad0b1dc0e4eb764920d9.tar.gz
refinerycms-blog-13cafc094712787bf0e5ad0b1dc0e4eb764920d9.tar.bz2
refinerycms-blog-13cafc094712787bf0e5ad0b1dc0e4eb764920d9.zip
Syntax fixes for Ruby 1.8.7
Diffstat (limited to 'spec/dummy/config/application.rb')
-rw-r--r--spec/dummy/config/application.rb7
1 files changed, 6 insertions, 1 deletions
diff --git a/spec/dummy/config/application.rb b/spec/dummy/config/application.rb
index 60df716..e67cf82 100644
--- a/spec/dummy/config/application.rb
+++ b/spec/dummy/config/application.rb
@@ -3,7 +3,12 @@ require File.expand_path('../boot', __FILE__)
require 'rails/all'
require 'bundler/setup'
-Bundler.require
+
+# If you have a Gemfile, require the default gems, the ones in the
+# current environment and also include :assets gems if in development
+# or test environments.
+Bundler.require *Rails.groups(:assets) if defined?(Bundler)
+
require 'refinerycms-blog'
module Dummy