diff options
| -rw-r--r-- | Rakefile | 2 | ||||
| -rw-r--r-- | app/assets/javascripts/application.js.coffee | 2 | ||||
| -rw-r--r-- | app/assets/javascripts/erkell.js.coffee (renamed from app/assets/javascripts/mocode.js.coffee) | 0 | ||||
| -rw-r--r-- | app/views/layouts/application.html.erb | 2 | ||||
| -rw-r--r-- | config/application.rb | 2 | ||||
| -rw-r--r-- | config/database.yml.example | 4 | ||||
| -rw-r--r-- | config/environment.rb | 2 | ||||
| -rw-r--r-- | config/environments/development.rb | 2 | ||||
| -rw-r--r-- | config/environments/production.rb | 2 | ||||
| -rw-r--r-- | config/environments/test.rb | 2 | ||||
| -rw-r--r-- | config/initializers/session_store.rb | 2 | ||||
| -rw-r--r-- | config/routes.rb | 2 |
12 files changed, 12 insertions, 12 deletions
@@ -3,4 +3,4 @@ require File.expand_path('../config/application', __FILE__) -Mocode::Application.load_tasks +Erkell::Application.load_tasks diff --git a/app/assets/javascripts/application.js.coffee b/app/assets/javascripts/application.js.coffee index bf4a816..6fb6ff4 100644 --- a/app/assets/javascripts/application.js.coffee +++ b/app/assets/javascripts/application.js.coffee @@ -17,7 +17,7 @@ #= require ember #= require ember-data #= require_self -#= require mocode +#= require erkell # for more details see: http://emberjs.com/guides/application/ window.App = Ember.Application.create diff --git a/app/assets/javascripts/mocode.js.coffee b/app/assets/javascripts/erkell.js.coffee index f66117a..f66117a 100644 --- a/app/assets/javascripts/mocode.js.coffee +++ b/app/assets/javascripts/erkell.js.coffee diff --git a/app/views/layouts/application.html.erb b/app/views/layouts/application.html.erb index caac970..b5c196d 100644 --- a/app/views/layouts/application.html.erb +++ b/app/views/layouts/application.html.erb @@ -8,7 +8,7 @@ <meta name="author" content=""> <link rel="shortcut icon" href="../../assets/ico/favicon.ico"> - <title>Mocode</title> + <title>Erkell - Ooops... did i do that?</title> <%= stylesheet_link_tag "application", media: "all", "data-turbolinks-track" => true %> <%= javascript_include_tag "application", "data-turbolinks-track" => true %> <%= csrf_meta_tags %> diff --git a/config/application.rb b/config/application.rb index 4fc0c65..5af1dfc 100644 --- a/config/application.rb +++ b/config/application.rb @@ -11,7 +11,7 @@ require "sprockets/railtie" # you've limited to :test, :development, or :production. Bundler.require(*Rails.groups) -module Mocode +module Erkell class Application < Rails::Application # Settings in config/environments/* take precedence over those specified here. # Application configuration should go into files in config/initializers diff --git a/config/database.yml.example b/config/database.yml.example index 9f80e4c..e617ba0 100644 --- a/config/database.yml.example +++ b/config/database.yml.example @@ -1,7 +1,7 @@ development: adapter: postgresql encoding: unicode - database: mocode-development + database: erkell-development pool: 5 username: mo password: @@ -9,7 +9,7 @@ development: test: adapter: postgresql encoding: unicode - database: mocode-test + database: erkell-test pool: 5 username: mo password: diff --git a/config/environment.rb b/config/environment.rb index c2da3ac..2a17b52 100644 --- a/config/environment.rb +++ b/config/environment.rb @@ -2,4 +2,4 @@ require File.expand_path('../application', __FILE__) # Initialize the Rails application. -Mocode::Application.initialize! +Erkell::Application.initialize! diff --git a/config/environments/development.rb b/config/environments/development.rb index 8729435..cd975f7 100644 --- a/config/environments/development.rb +++ b/config/environments/development.rb @@ -1,4 +1,4 @@ -Mocode::Application.configure do +Erkell::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 diff --git a/config/environments/production.rb b/config/environments/production.rb index 5620aad..f21c0ee 100644 --- a/config/environments/production.rb +++ b/config/environments/production.rb @@ -1,4 +1,4 @@ -Mocode::Application.configure do +Erkell::Application.configure do # Settings specified here will take precedence over those in config/application.rb. # Code is not reloaded between requests. diff --git a/config/environments/test.rb b/config/environments/test.rb index 826d1eb..08a0ff2 100644 --- a/config/environments/test.rb +++ b/config/environments/test.rb @@ -1,4 +1,4 @@ -Mocode::Application.configure do +Erkell::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 diff --git a/config/initializers/session_store.rb b/config/initializers/session_store.rb index f36b67a..a558ccb 100644 --- a/config/initializers/session_store.rb +++ b/config/initializers/session_store.rb @@ -1,3 +1,3 @@ # Be sure to restart your server when you modify this file. -Mocode::Application.config.session_store :cookie_store, key: '_mocode_session' +Erkell::Application.config.session_store :cookie_store, key: '_erkell_session' diff --git a/config/routes.rb b/config/routes.rb index 90fd189..bde8f92 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -1,4 +1,4 @@ -Mocode::Application.routes.draw do +Erkell::Application.routes.draw do resources :sessions, only: [:new, :create, :destroy] resources :videos, only: [:index, :create, :update, :destroy] get 'dashboard', to: 'dashboard#index' |
