Skip to content

Commit

Permalink
Change app name
Browse files Browse the repository at this point in the history
  • Loading branch information
excid3 committed Dec 2, 2012
1 parent f269b7f commit 3133ce8
Show file tree
Hide file tree
Showing 10 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion Rakefile
Expand Up @@ -4,4 +4,4 @@

require File.expand_path('../config/application', __FILE__)

Seventhc::Application.load_tasks
AnonyKron::Application.load_tasks
2 changes: 1 addition & 1 deletion config/application.rb
Expand Up @@ -9,7 +9,7 @@
# Bundler.require(:default, :assets, Rails.env)
end

module Seventhc
module AnonyKron
class Application < Rails::Application
# Settings in config/environments/* take precedence over those specified here.
# Application configuration should go into files in config/initializers
Expand Down
2 changes: 1 addition & 1 deletion config/environment.rb
Expand Up @@ -2,4 +2,4 @@
require File.expand_path('../application', __FILE__)

# Initialize the rails application
Seventhc::Application.initialize!
AnonyKron::Application.initialize!
2 changes: 1 addition & 1 deletion config/environments/development.rb
@@ -1,4 +1,4 @@
Seventhc::Application.configure do
AnonyKron::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
Expand Down
2 changes: 1 addition & 1 deletion config/environments/production.rb
@@ -1,4 +1,4 @@
Seventhc::Application.configure do
AnonyKron::Application.configure do
# Settings specified here will take precedence over those in config/application.rb

# Code is not reloaded between requests
Expand Down
2 changes: 1 addition & 1 deletion config/environments/test.rb
@@ -1,4 +1,4 @@
Seventhc::Application.configure do
AnonyKron::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
Expand Down
14 changes: 7 additions & 7 deletions config/initializers/rails_admin.rb
Expand Up @@ -7,7 +7,7 @@
################ Global configuration ################

# Set the admin name here (optional second array element will appear in red). For example:
config.main_app_name = ['Seventhc', 'Admin']
config.main_app_name = ['AnonyKron', 'Admin']
# or for a more dynamic name:
# config.main_app_name = Proc.new { |controller| [Rails.application.engine_name.titleize, controller.params['action'].titleize] }

Expand Down Expand Up @@ -64,12 +64,12 @@

# # Found columns:

# configure :id, :integer
# configure :title, :string
# configure :slug, :string
# configure :body, :text
# configure :created_at, :datetime
# configure :updated_at, :datetime
# configure :id, :integer
# configure :title, :string
# configure :slug, :string
# configure :body, :text
# configure :created_at, :datetime
# configure :updated_at, :datetime

# # Cross-section configuration:

Expand Down
2 changes: 1 addition & 1 deletion config/initializers/secret_token.rb
Expand Up @@ -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.
Seventhc::Application.config.secret_token = '89f0e3b79b002585194e08e5a08c75dbb59ca2b4bac651e474a4a407b67c80497e92ca767ecc07ac881cbd1c0bdca0122baf2cd19574fa296ac798b7aa929131'
AnonyKron::Application.config.secret_token = '89f0e3b79b002585194e08e5a08c75dbb59ca2b4bac651e474a4a407b67c80497e92ca767ecc07ac881cbd1c0bdca0122baf2cd19574fa296ac798b7aa929131'
4 changes: 2 additions & 2 deletions config/initializers/session_store.rb
@@ -1,8 +1,8 @@
# Be sure to restart your server when you modify this file.

Seventhc::Application.config.session_store :cookie_store, key: '_seventhc_session'
AnonyKron::Application.config.session_store :cookie_store, key: '_seventhc_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")
# Seventhc::Application.config.session_store :active_record_store
# AnonyKron::Application.config.session_store :active_record_store
2 changes: 1 addition & 1 deletion config/routes.rb
@@ -1,4 +1,4 @@
Seventhc::Application.routes.draw do
AnonyKron::Application.routes.draw do
devise_for :users

mount RailsAdmin::Engine => '/admin', :as => 'rails_admin'
Expand Down

0 comments on commit 3133ce8

Please sign in to comment.