Commit eb1156b592955cc4e5043d8e570baac2064b854f

Authored by Rafael Manzo
1 parent 7fe62e2c

Configured to Mezuro

.ruby-gemset
1   -base-rails-app
  1 +mezuro-standalone
... ...
Rakefile
... ... @@ -3,4 +3,4 @@
3 3  
4 4 require File.expand_path('../config/application', __FILE__)
5 5  
6   -BaseRailsApp::Application.load_tasks
  6 +Mezuro::Application.load_tasks
... ...
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
... ... @@ -2,4 +2,4 @@
2 2 require File.expand_path('../application', __FILE__)
3 3  
4 4 # Initialize the Rails application
5   -BaseRailsApp::Application.initialize!
  5 +Mezuro::Application.initialize!
... ...
config/environments/development.rb
1   -BaseRailsApp::Application.configure do
  1 +Mezuro::Application.configure do
2 2 # Settings specified here will take precedence over those in config/application.rb
3 3  
4 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 2 # Settings specified here will take precedence over those in config/application.rb.
3 3  
4 4 # Code is not reloaded between requests.
... ...
config/environments/test.rb
1   -BaseRailsApp::Application.configure do
  1 +Mezuro::Application.configure do
2 2 # Settings specified here will take precedence over those in config/application.rb
3 3  
4 4 # The test environment is used exclusively to run your application's
... ...
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
1 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 2 # The priority is based upon order of creation: first created -> highest priority.
3 3 # See how all your routes lay out with "rake routes".
4 4  
... ...
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
... ...