Skip to content
This repository has been archived by the owner on Apr 4, 2018. It is now read-only.

Commit

Permalink
We don't call the app Halberd any more, so let's remove those references
Browse files Browse the repository at this point in the history
  • Loading branch information
jystewart committed Jan 4, 2012
1 parent 10972ad commit 94ac390
Show file tree
Hide file tree
Showing 12 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion Rakefile
Expand Up @@ -5,4 +5,4 @@ require File.expand_path('../config/application', __FILE__)
require 'rake'
require 'ci/reporter/rake/rspec' if Rails.env.development?

Halberd::Application.load_tasks
Signonotron::Application.load_tasks
2 changes: 1 addition & 1 deletion app/views/layouts/application.html.erb
Expand Up @@ -8,7 +8,7 @@
</head>
<body role="application">

<div id="halberd">
<div id="signonotron">
<h1>GDS Sign On</h1>
<%= yield %>
</div>
Expand Down
2 changes: 1 addition & 1 deletion 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 Halberd::Application
run Signonotron::Application
2 changes: 1 addition & 1 deletion config/application.rb
Expand Up @@ -6,7 +6,7 @@
# you've limited to :test, :development, or :production.
Bundler.require(:default, Rails.env) if defined?(Bundler)

module Halberd
module Signonotron
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
Halberd::Application.initialize!
Signonotron::Application.initialize!
2 changes: 1 addition & 1 deletion config/environments/development.rb
@@ -1,4 +1,4 @@
Halberd::Application.configure do
Signonotron::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 @@
Halberd::Application.configure do
Signonotron::Application.configure do
# Settings specified here will take precedence over those in config/application.rb

# The production environment is meant for finished, "live" apps.
Expand Down
2 changes: 1 addition & 1 deletion config/environments/test.rb
@@ -1,4 +1,4 @@
Halberd::Application.configure do
Signonotron::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
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.
Halberd::Application.config.secret_token = '9a0439f500d0f1344e2b58b0092106c3e3be03e683ecad5b9d2dfab84cbbdb539b01c10e7b8e641c5da9193a536d7929efbf1541b0a90d741186b7054aa7fb9a'
Signonotron::Application.config.secret_token = '9a0439f500d0f1344e2b58b0092106c3e3be03e683ecad5b9d2dfab84cbbdb539b01c10e7b8e641c5da9193a536d7929efbf1541b0a90d741186b7054aa7fb9a'
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.

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

match '/oauth/authorize', :via => :get, :to => 'authorisations#new'
Expand Down
2 changes: 1 addition & 1 deletion public/stylesheets/style.css
Expand Up @@ -15,7 +15,7 @@ body {
color: #444;
}

#halberd {
#signonotron {
background: #EFECE0;
border: 2px solid #bbb;
-webkit-border-radius: 0.5em;
Expand Down

0 comments on commit 94ac390

Please sign in to comment.