aboutsummaryrefslogtreecommitdiffstats
path: root/spec
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
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')
-rw-r--r--spec/dummy/config/application.rb7
-rw-r--r--spec/dummy/config/initializers/session_store.rb2
-rw-r--r--spec/dummy/config/initializers/wrap_parameters.rb2
3 files changed, 8 insertions, 3 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
diff --git a/spec/dummy/config/initializers/session_store.rb b/spec/dummy/config/initializers/session_store.rb
index 952473f..aa2f512 100644
--- a/spec/dummy/config/initializers/session_store.rb
+++ b/spec/dummy/config/initializers/session_store.rb
@@ -1,6 +1,6 @@
# Be sure to restart your server when you modify this file.
-Dummy::Application.config.session_store :cookie_store, key: '_dummy_session'
+Dummy::Application.config.session_store :cookie_store, :key => '_dummy_session'
# Use the database for sessions instead of the cookie-based default,
# which shouldn't be used to store highly confidential information
diff --git a/spec/dummy/config/initializers/wrap_parameters.rb b/spec/dummy/config/initializers/wrap_parameters.rb
index 16c3243..71b88b0 100644
--- a/spec/dummy/config/initializers/wrap_parameters.rb
+++ b/spec/dummy/config/initializers/wrap_parameters.rb
@@ -4,7 +4,7 @@
# is enabled by default.
# Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
-ActionController::Base.wrap_parameters format: [:json]
+ActionController::Base.wrap_parameters :format => [:json]
# Disable root element in JSON by default.
if defined?(ActiveRecord)