summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authormo khan <mo@mokhan.ca>2014-11-09 21:53:08 -0700
committermo khan <mo@mokhan.ca>2014-11-09 21:53:08 -0700
commita991dce5dfa930ec9ee4430d7433ad20be469dcd (patch)
treeb940f9780c2a356c1bd6b3f6d574b7123436133b /config
parentb5f0d919f3793cd542a8284dce6627620ec2a629 (diff)
rename project to erkell.
Diffstat (limited to 'config')
-rw-r--r--config/application.rb2
-rw-r--r--config/database.yml.example4
-rw-r--r--config/environment.rb2
-rw-r--r--config/environments/development.rb2
-rw-r--r--config/environments/production.rb2
-rw-r--r--config/environments/test.rb2
-rw-r--r--config/initializers/session_store.rb2
-rw-r--r--config/routes.rb2
8 files changed, 9 insertions, 9 deletions
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'