Skip to content

Commit

Permalink
310rc5 -> 310rc6 in code constants
Browse files Browse the repository at this point in the history
  • Loading branch information
paneq committed Aug 23, 2011
1 parent 2d1aa99 commit 2630ca2
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion test/dummy310rc6/config.ru
@@ -1,4 +1,4 @@
# This file is used by Rack-based servers to start the application.

require ::File.expand_path('../config/environment', __FILE__)
run Dummy310rc5::Application
run Dummy310rc6::Application
2 changes: 1 addition & 1 deletion test/dummy310rc6/config/application.rb
Expand Up @@ -6,7 +6,7 @@
# you've limited to :test, :development, or :production.
Bundler.require(:default, Rails.env) if defined?(Bundler)

module Dummy310rc5
module Dummy310rc6
class Application < Rails::Application
# Settings in config/environments/* take precedence over those specified here.
# Application configuration should go into files in config/initializers
Expand Down
2 changes: 1 addition & 1 deletion test/dummy310rc6/config/environment.rb
Expand Up @@ -2,4 +2,4 @@
require File.expand_path('../application', __FILE__)

# Initialize the rails application
Dummy310rc5::Application.initialize!
Dummy310rc6::Application.initialize!
2 changes: 1 addition & 1 deletion test/dummy310rc6/config/environments/development.rb
@@ -1,6 +1,6 @@
require File.expand_path( File.join(File.dirname(__FILE__), '..', '..', '..', 'support', "defined_middleware") )

Dummy310rc5::Application.configure do
Dummy310rc6::Application.configure do
# Settings specified here will take precedence over those in config/application.rb

# In the development environment your application's code is reloaded on
Expand Down
2 changes: 1 addition & 1 deletion test/dummy310rc6/config/environments/production.rb
@@ -1,4 +1,4 @@
Dummy310rc5::Application.configure do
Dummy310rc6::Application.configure do
# Settings specified here will take precedence over those in config/application.rb

# Code is not reloaded between requests
Expand Down
2 changes: 1 addition & 1 deletion test/dummy310rc6/config/environments/test.rb
@@ -1,4 +1,4 @@
Dummy310rc5::Application.configure do
Dummy310rc6::Application.configure do
# Settings specified here will take precedence over those in config/application.rb

# The test environment is used exclusively to run your application's
Expand Down
2 changes: 1 addition & 1 deletion test/dummy310rc6/config/initializers/secret_token.rb
Expand Up @@ -4,4 +4,4 @@
# If you change this key, all old signed cookies will become invalid!
# Make sure the secret is at least 30 characters and all random,
# no regular words or you'll be exposed to dictionary attacks.
Dummy310rc5::Application.config.secret_token = '63f22d8dffc57bb0684cb6d95a5514d1e4d18b548a59b46e510da81e9296ce7ad80591d8acccb581df66fa80d4692fe51e34f4a387d9c43ad0825dc278be0fd4'
Dummy310rc6::Application.config.secret_token = '63f22d8dffc57bb0684cb6d95a5514d1e4d18b548a59b46e510da81e9296ce7ad80591d8acccb581df66fa80d4692fe51e34f4a387d9c43ad0825dc278be0fd4'
4 changes: 2 additions & 2 deletions test/dummy310rc6/config/initializers/session_store.rb
@@ -1,8 +1,8 @@
# Be sure to restart your server when you modify this file.

Dummy310rc5::Application.config.session_store :cookie_store, :key => '_dummy310rc4_session'
Dummy310rc6::Application.config.session_store :cookie_store, :key => '_dummy310rc4_session'

# Use the database for sessions instead of the cookie-based default,
# which shouldn't be used to store highly confidential information
# (create the session table with "rails generate session_migration")
# Dummy310rc5::Application.config.session_store :active_record_store
# Dummy310rc6::Application.config.session_store :active_record_store
2 changes: 1 addition & 1 deletion test/dummy310rc6/config/routes.rb
@@ -1,4 +1,4 @@
Dummy310rc5::Application.routes.draw do
Dummy310rc6::Application.routes.draw do
match "/empty", :to => "empty#index"
match "/root", :to => "root#index"

Expand Down

0 comments on commit 2630ca2

Please sign in to comment.