diff --git a/Rakefile b/Rakefile index d48d4dd..3327c8e 100644 --- a/Rakefile +++ b/Rakefile @@ -4,4 +4,4 @@ require File.expand_path('../config/application', __FILE__) -T3rminalTv::Application.load_tasks +AsciiIo::Application.load_tasks diff --git a/config/application.rb b/config/application.rb index 522ab53..cee2949 100644 --- a/config/application.rb +++ b/config/application.rb @@ -15,7 +15,7 @@ if defined?(Bundler) # Bundler.require(:default, :assets, Rails.env) end -module T3rminalTv +module AsciiIo 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 882d627..6c5be02 100644 --- a/config/environment.rb +++ b/config/environment.rb @@ -2,4 +2,4 @@ require File.expand_path('../application', __FILE__) # Initialize the rails application -T3rminalTv::Application.initialize! +AsciiIo::Application.initialize! diff --git a/config/environments/development.rb b/config/environments/development.rb index f098ef9..e691c0d 100644 --- a/config/environments/development.rb +++ b/config/environments/development.rb @@ -1,4 +1,4 @@ -T3rminalTv::Application.configure do +AsciiIo::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 fddbdce..09d6227 100644 --- a/config/environments/production.rb +++ b/config/environments/production.rb @@ -1,4 +1,4 @@ -T3rminalTv::Application.configure do +AsciiIo::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 0f9c1b5..dae4256 100644 --- a/config/environments/test.rb +++ b/config/environments/test.rb @@ -1,4 +1,4 @@ -T3rminalTv::Application.configure do +AsciiIo::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 e3dc42d..ff77c5a 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. -T3rminalTv::Application.config.secret_token = 'e43ff30a45b7552eee8da56ec764006dd67ae894e8f2ac7a334feb00a9b0f606e5fae9ff5e01d4fcccb567ac0401437fe351b2ef2c6c62217b85a398bf883797' +AsciiIo::Application.config.secret_token = 'e43ff30a45b7552eee8da56ec764006dd67ae894e8f2ac7a334feb00a9b0f606e5fae9ff5e01d4fcccb567ac0401437fe351b2ef2c6c62217b85a398bf883797' diff --git a/config/initializers/session_store.rb b/config/initializers/session_store.rb index 449a5c4..b879891 100644 --- a/config/initializers/session_store.rb +++ b/config/initializers/session_store.rb @@ -1,8 +1,8 @@ # Be sure to restart your server when you modify this file. -T3rminalTv::Application.config.session_store :cookie_store, key: '_t3rminal-tv_session' +AsciiIo::Application.config.session_store :cookie_store, key: '_t3rminal-tv_session' # Use the database for sessions instead of the cookie-based default, # which shouldn't be used to store highly confidential information # (create the session table with "rails generate session_migration") -# T3rminalTv::Application.config.session_store :active_record_store +# AsciiIo::Application.config.session_store :active_record_store diff --git a/config/routes.rb b/config/routes.rb index d79e9d4..db47880 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -1,4 +1,4 @@ -T3rminalTv::Application.routes.draw do +AsciiIo::Application.routes.draw do # The priority is based upon order of creation: # first created -> highest priority.