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,7 +6,7 @@ require 'rails/all' | ||
6 | # you've limited to :test, :development, or :production. | 6 | # you've limited to :test, :development, or :production. |
7 | Bundler.require(:default, Rails.env) | 7 | Bundler.require(:default, Rails.env) |
8 | 8 | ||
9 | -module BaseRailsApp | 9 | +module Mezuro |
10 | class Application < Rails::Application | 10 | class Application < Rails::Application |
11 | # Settings in config/environments/* take precedence over those specified here. | 11 | # Settings in config/environments/* take precedence over those specified here. |
12 | # Application configuration should go into files in config/initializers | 12 | # Application configuration should go into files in config/initializers |
config/environment.rb
config/environments/development.rb
1 | -BaseRailsApp::Application.configure do | 1 | +Mezuro::Application.configure do |
2 | # Settings specified here will take precedence over those in config/application.rb | 2 | # Settings specified here will take precedence over those in config/application.rb |
3 | 3 | ||
4 | # In the development environment your application's code is reloaded on | 4 | # In the development environment your application's code is reloaded on |
config/environments/production.rb
1 | -BaseRailsApp::Application.configure do | 1 | +Mezuro::Application.configure do |
2 | # Settings specified here will take precedence over those in config/application.rb. | 2 | # Settings specified here will take precedence over those in config/application.rb. |
3 | 3 | ||
4 | # Code is not reloaded between requests. | 4 | # Code is not reloaded between requests. |
config/environments/test.rb
1 | -BaseRailsApp::Application.configure do | 1 | +Mezuro::Application.configure do |
2 | # Settings specified here will take precedence over those in config/application.rb | 2 | # Settings specified here will take precedence over those in config/application.rb |
3 | 3 | ||
4 | # The test environment is used exclusively to run your application's | 4 | # The test environment is used exclusively to run your application's |
config/initializers/secret_token.rb
@@ -9,4 +9,4 @@ | @@ -9,4 +9,4 @@ | ||
9 | 9 | ||
10 | # Make sure your secret_key_base is kept private | 10 | # Make sure your secret_key_base is kept private |
11 | # if you're sharing your code publicly. | 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
1 | # Be sure to restart your server when you modify this file. | 1 | # Be sure to restart your server when you modify this file. |
2 | 2 | ||
3 | -BaseRailsApp::Application.config.session_store :cookie_store, key: '_base_rails_app_session' | 3 | +Mezuro::Application.config.session_store :cookie_store, key: '_mezuro_session' |
config/routes.rb
1 | -BaseRailsApp::Application.routes.draw do | 1 | +Mezuro::Application.routes.draw do |
2 | # The priority is based upon order of creation: first created -> highest priority. | 2 | # The priority is based upon order of creation: first created -> highest priority. |
3 | # See how all your routes lay out with "rake routes". | 3 | # See how all your routes lay out with "rake routes". |
4 | 4 |
db/schema.rb
@@ -9,8 +9,8 @@ | @@ -9,8 +9,8 @@ | ||
9 | # from scratch. The latter is a flawed and unsustainable approach (the more migrations | 9 | # from scratch. The latter is a flawed and unsustainable approach (the more migrations |
10 | # you'll amass, the slower it'll run and the greater likelihood for issues). | 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 | end | 16 | end |