Commit 3418fa5
Changed files (13)
app
assets
javascripts
views
layouts
shared
config
environments
initializers
app/assets/javascripts/application.js.coffee
@@ -17,7 +17,7 @@
#= require ember
#= require ember-data
#= require_self
-#= require erkell
+#= require urkel
# for more details see: http://emberjs.com/guides/application/
window.App = Ember.Application.create
app/assets/javascripts/erkell.js.coffee → app/assets/javascripts/urkel.js.coffee
File renamed without changes
app/views/layouts/application.html.erb
@@ -8,7 +8,7 @@
<meta name="author" content="">
<link rel="shortcut icon" href="../../assets/ico/favicon.ico">
- <title>Erkell - Ooops... did i do that?</title>
+ <title>Urkel - 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 %>
config/environments/development.rb
@@ -1,4 +1,4 @@
-Erkell::Application.configure do
+Urkel::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
config/environments/production.rb
@@ -1,4 +1,4 @@
-Erkell::Application.configure do
+Urkel::Application.configure do
# Settings specified here will take precedence over those in config/application.rb.
# Code is not reloaded between requests.
config/environments/test.rb
@@ -1,4 +1,4 @@
-Erkell::Application.configure do
+Urkel::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
config/initializers/session_store.rb
@@ -1,3 +1,3 @@
# Be sure to restart your server when you modify this file.
-Erkell::Application.config.session_store :cookie_store, key: '_erkell_session'
+Urkel::Application.config.session_store :cookie_store, key: '_erkell_session'
config/application.rb
@@ -11,7 +11,7 @@ require "sprockets/railtie"
# you've limited to :test, :development, or :production.
Bundler.require(*Rails.groups)
-module Erkell
+module Urkel
class Application < Rails::Application
# Settings in config/environments/* take precedence over those specified here.
# Application configuration should go into files in config/initializers
config/database.yml.example
@@ -1,7 +1,7 @@
development:
adapter: postgresql
encoding: unicode
- database: erkell-development
+ database: urkel-development
pool: 5
username: mo
password:
@@ -9,7 +9,7 @@ development:
test:
adapter: postgresql
encoding: unicode
- database: erkell-test
+ database: urkel-test
pool: 5
username: mo
password:
config/environment.rb
@@ -2,4 +2,4 @@
require File.expand_path('../application', __FILE__)
# Initialize the Rails application.
-Erkell::Application.initialize!
+Urkel::Application.initialize!
config/routes.rb
@@ -1,4 +1,4 @@
-Erkell::Application.routes.draw do
+Urkel::Application.routes.draw do
resources :sessions, only: [:new, :create, :destroy]
resources :videos, only: [:index, :create, :update, :destroy]
resources :services, only: [:index, :create, :update, :destroy]
Rakefile
@@ -3,4 +3,4 @@
require File.expand_path('../config/application', __FILE__)
-Erkell::Application.load_tasks
+Urkel::Application.load_tasks