Commit eb1156b592955cc4e5043d8e570baac2064b854f
1 parent
7fe62e2c
Exists in
colab
and in
4 other branches
Configured to Mezuro
Showing
11 changed files
with
12 additions
and
12 deletions
Show diff stats
.ruby-gemset
Rakefile
config/application.rb
... | ... | @@ -6,7 +6,7 @@ require 'rails/all' |
6 | 6 | # you've limited to :test, :development, or :production. |
7 | 7 | Bundler.require(:default, Rails.env) |
8 | 8 | |
9 | -module BaseRailsApp | |
9 | +module Mezuro | |
10 | 10 | class Application < Rails::Application |
11 | 11 | # Settings in config/environments/* take precedence over those specified here. |
12 | 12 | # Application configuration should go into files in config/initializers | ... | ... |
config/environment.rb
config/environments/development.rb
config/environments/production.rb
config/environments/test.rb
config/initializers/secret_token.rb
... | ... | @@ -9,4 +9,4 @@ |
9 | 9 | |
10 | 10 | # Make sure your secret_key_base is kept private |
11 | 11 | # if you're sharing your code publicly. |
12 | -BaseRailsApp::Application.config.secret_key_base = '911af0f72528665828e90df909cbb42098b26a622cdc41456f89020a89c861b8f7b8c4c94924e2c791e5be6c8996453fd8ea99ab5b6c054a292b735518ef9e17' | |
12 | +Mezuro::Application.config.secret_key_base = '911af0f72528665828e90df909cbb42098b26a622cdc41456f89020a89c861b8f7b8c4c94924e2c791e5be6c8996453fd8ea99ab5b6c054a292b735518ef9e17' | ... | ... |
config/initializers/session_store.rb
config/routes.rb
db/schema.rb
... | ... | @@ -9,8 +9,8 @@ |
9 | 9 | # from scratch. The latter is a flawed and unsustainable approach (the more migrations |
10 | 10 | # you'll amass, the slower it'll run and the greater likelihood for issues). |
11 | 11 | # |
12 | -# It's strongly recommended to check this file into your version control system. | |
12 | +# It's strongly recommended that you check this file into your version control system. | |
13 | 13 | |
14 | -ActiveRecord::Schema.define(:version => 0) do | |
14 | +ActiveRecord::Schema.define(version: 0) do | |
15 | 15 | |
16 | 16 | end | ... | ... |