Skip to content

Commit 088049c

Browse files
committed
Rails wants these files, so we'd best obey.
1 parent 58e563c commit 088049c

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

config/initializers/secret_token.rb

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Be sure to restart your server when you modify this file.
2+
3+
# Your secret key for verifying the integrity of signed cookies.
4+
# If you change this key, all old signed cookies will become invalid!
5+
# Make sure the secret is at least 30 characters and all random,
6+
# no regular words or you'll be exposed to dictionary attacks.
7+
Refinery::Application.config.secret_token = 'a87f3b2cd301eab5bfd6b21288123b0a76fc604844f73e2eeca7dd6936330d86e2b057ee91304b9b4244eb1aed83eaef882194983abdcfb0b75ba3714708e668'

lib/tasks/.gitkeep

Whitespace-only changes.

script/rails

+2-5
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
#!/usr/bin/env ruby
22
# This command will automatically be run when you run "rails" with Rails 3 gems installed from the root of your application.
33

4-
ENV_PATH = File.expand_path('../../config/environment', __FILE__)
5-
BOOT_PATH = File.expand_path('../../config/boot', __FILE__)
6-
APP_PATH = File.expand_path('../../config/application', __FILE__)
7-
8-
require BOOT_PATH
4+
APP_PATH = File.expand_path('../../config/application', __FILE__)
5+
require File.expand_path('../../config/boot', __FILE__)
96
require 'rails/commands'

0 commit comments

Comments
 (0)