T3rminal -> AsciiIo

openid
Marcin Kulik 13 years ago
parent c6e6efa4b6
commit 4692ea08e6

@ -4,4 +4,4 @@
require File.expand_path('../config/application', __FILE__)
T3rminalTv::Application.load_tasks
AsciiIo::Application.load_tasks

@ -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

@ -2,4 +2,4 @@
require File.expand_path('../application', __FILE__)
# Initialize the rails application
T3rminalTv::Application.initialize!
AsciiIo::Application.initialize!

@ -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

@ -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

@ -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

@ -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'

@ -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

@ -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.

Loading…
Cancel
Save