summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAzul <azul@leap.se>2012-10-08 10:48:02 +0200
committerAzul <azul@leap.se>2012-10-08 10:48:45 +0200
commit7b706df83679c364451352660e59e5fb5ec9ecad (patch)
tree99e24d7d4dc4617373d63646bff604fe63f037c3
parent7eb16bf58d4a2cc7e7fae2b9ffe015de8ee199e8 (diff)
LeapWebDemo -> LeapWeb
-rw-r--r--Rakefile2
-rw-r--r--app/views/layouts/application.html.erb2
-rw-r--r--config.ru2
-rw-r--r--config/application.rb2
-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/secret_token.rb2
-rw-r--r--config/initializers/session_store.rb2
-rw-r--r--config/routes.rb2
11 files changed, 11 insertions, 11 deletions
diff --git a/Rakefile b/Rakefile
index d09b419..884c035 100644
--- a/Rakefile
+++ b/Rakefile
@@ -4,4 +4,4 @@
require File.expand_path('../config/application', __FILE__)
-LeapWebDemo::Application.load_tasks
+LeapWeb::Application.load_tasks
diff --git a/app/views/layouts/application.html.erb b/app/views/layouts/application.html.erb
index a4962fb..ce68ec8 100644
--- a/app/views/layouts/application.html.erb
+++ b/app/views/layouts/application.html.erb
@@ -1,7 +1,7 @@
<!DOCTYPE html>
<html>
<head>
- <title>LeapWebDemo</title>
+ <title>LeapWeb</title>
<%= stylesheet_link_tag "application", :media => "all" %>
<%= javascript_include_tag "application" %>
<%= csrf_meta_tags %>
diff --git a/config.ru b/config.ru
index c6ba8bb..e798eef 100644
--- a/config.ru
+++ b/config.ru
@@ -1,4 +1,4 @@
# This file is used by Rack-based servers to start the application.
require ::File.expand_path('../config/environment', __FILE__)
-run LeapWebDemo::Application
+run LeapWeb::Application
diff --git a/config/application.rb b/config/application.rb
index 5d44a94..cad4356 100644
--- a/config/application.rb
+++ b/config/application.rb
@@ -15,7 +15,7 @@ if defined?(Bundler)
# Bundler.require(:default, :assets, Rails.env)
end
-module LeapWebDemo
+module LeapWeb
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/environment.rb b/config/environment.rb
index 198698d..fe16a54 100644
--- a/config/environment.rb
+++ b/config/environment.rb
@@ -2,4 +2,4 @@
require File.expand_path('../application', __FILE__)
# Initialize the rails application
-LeapWebDemo::Application.initialize!
+LeapWeb::Application.initialize!
diff --git a/config/environments/development.rb b/config/environments/development.rb
index 19ade85..9ff9476 100644
--- a/config/environments/development.rb
+++ b/config/environments/development.rb
@@ -1,4 +1,4 @@
-LeapWebDemo::Application.configure do
+LeapWeb::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 d89379b..d9d37bd 100644
--- a/config/environments/production.rb
+++ b/config/environments/production.rb
@@ -1,4 +1,4 @@
-LeapWebDemo::Application.configure do
+LeapWeb::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 b0a542e..1a38df7 100644
--- a/config/environments/test.rb
+++ b/config/environments/test.rb
@@ -1,4 +1,4 @@
-LeapWebDemo::Application.configure do
+LeapWeb::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/secret_token.rb b/config/initializers/secret_token.rb
index 94e038e..23c1aac 100644
--- a/config/initializers/secret_token.rb
+++ b/config/initializers/secret_token.rb
@@ -4,4 +4,4 @@
# If you change this key, all old signed cookies will become invalid!
# Make sure the secret is at least 30 characters and all random,
# no regular words or you'll be exposed to dictionary attacks.
-LeapWebDemo::Application.config.secret_token = '550df064dbc5052d9e192b324c1c5a1095c85a2195f88bd6f6829c63b74d8dffa4556494a2e8cc44345a1926be8b6cb17aa4b3f3102d826f5679c3fb57bb7100'
+LeapWeb::Application.config.secret_token = '550df064dbc5052d9e192b324c1c5a1095c85a2195f88bd6f6829c63b74d8dffa4556494a2e8cc44345a1926be8b6cb17aa4b3f3102d826f5679c3fb57bb7100'
diff --git a/config/initializers/session_store.rb b/config/initializers/session_store.rb
index 0c3a729..01dda89 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.
-LeapWebDemo::Application.config.session_store = CouchRestSessionStore
+LeapWeb::Application.config.session_store = CouchRestSessionStore
diff --git a/config/routes.rb b/config/routes.rb
index eff6844..ca8d753 100644
--- a/config/routes.rb
+++ b/config/routes.rb
@@ -1,4 +1,4 @@
-LeapWebDemo::Application.routes.draw do
+LeapWeb::Application.routes.draw do
# The priority is based upon order of creation:
# first created -> highest priority.