diff --git a/app/views/layouts/application.html.erb b/app/views/layouts/application.html.erb index 8b1ab5b..73b4b66 100644 --- a/app/views/layouts/application.html.erb +++ b/app/views/layouts/application.html.erb @@ -3,8 +3,8 @@ - Oct Blog - <%= stylesheet_link_tag :flutie, 'oct_blog', :cache => true %> + CHANGETITLE + <%= stylesheet_link_tag :flutie, 'CHANGEME', :cache => true %>
diff --git a/config/environment.rb b/config/environment.rb index 724a0d3..7bf60b2 100644 --- a/config/environment.rb +++ b/config/environment.rb @@ -1,7 +1,7 @@ # Be sure to restart your server when you modify this file # Specifies gem version of Rails to use when vendor/rails is not present -RAILS_GEM_VERSION = '2.3.4' unless defined? RAILS_GEM_VERSION +RAILS_GEM_VERSION = '2.3.3' unless defined? RAILS_GEM_VERSION # Bootstrap the Rails environment, frameworks, and default configuration require File.join(File.dirname(__FILE__), 'boot') diff --git a/config/environments/production.rb b/config/environments/production.rb index 180100e..5de8359 100644 --- a/config/environments/production.rb +++ b/config/environments/production.rb @@ -22,5 +22,5 @@ config.gem "rubaidh-google_analytics", :version => "1.1.4", :source => "http://gems.github.com" -HOST = "oct_blog.heroku.com" +HOST = "CHANGEME.heroku.com" diff --git a/config/environments/staging.rb b/config/environments/staging.rb index 49d97ed..5c5e1cd 100644 --- a/config/environments/staging.rb +++ b/config/environments/staging.rb @@ -11,5 +11,5 @@ config.action_controller.perform_caching = true # Disable delivery errors if you bad email addresses should just be ignored config.action_mailer.raise_delivery_errors = false -HOST = "oct_blog.heroku.com" +HOST = "CHANGEME.heroku.com" diff --git a/config/initializers/session_store.rb b/config/initializers/session_store.rb index 9f8d41a..b359fb7 100644 --- a/config/initializers/session_store.rb +++ b/config/initializers/session_store.rb @@ -5,8 +5,8 @@ # Make sure the secret is at least 30 characters and all random, # no regular words or you'll be exposed to dictionary attacks. ActionController::Base.session = { - :session_key => "_oct_blog_session", - :secret => "90dfe6c47d4bd8fd80e450d591f92a58" + :session_key => "_CHANGEME_session", + :secret => "CHANGESESSION" } # Use the database for sessions instead of the cookie-based default, diff --git a/public/stylesheets/oct_blog.css b/public/stylesheets/oct_blog.css deleted file mode 100644 index 5496468..0000000 --- a/public/stylesheets/oct_blog.css +++ /dev/null @@ -1,40 +0,0 @@ -body { - background-color: #dadada; } - -.content { - background: #fff; - padding: 40px; - margin: 40px auto; - width: 880px; - -moz-border-radius: 24px; - -webkit-border-radius: 24px; } - -/* flash color */ - -#flash_success { - background: seagreen; } -#flash_failure { - color: beige; - background: firebrick; } -#flash_notice { - color: snow; - background: dimgray; } - -/* flashes spacing */ - -#flash { - margin-bottom: 0.6em; } - -#flash_notice, #flash_success, #flash_failure, #errorExplanation ul li { - padding: 0.6em; } - -/* flash scale */ - -#flash_notice, #flash_success, #flash_failure, #errorExplanation ul li { - font-size: 1.6em; } - -/* flash weighting */ - -#flash_notice, #flash_success, #flash_failure, #errorExplanation ul li { - font-weight: bold; } - diff --git a/public/stylesheets/screen.css b/public/stylesheets/screen.css new file mode 100644 index 0000000..5496468 --- /dev/null +++ b/public/stylesheets/screen.css @@ -0,0 +1,40 @@ +body { + background-color: #dadada; } + +.content { + background: #fff; + padding: 40px; + margin: 40px auto; + width: 880px; + -moz-border-radius: 24px; + -webkit-border-radius: 24px; } + +/* flash color */ + +#flash_success { + background: seagreen; } +#flash_failure { + color: beige; + background: firebrick; } +#flash_notice { + color: snow; + background: dimgray; } + +/* flashes spacing */ + +#flash { + margin-bottom: 0.6em; } + +#flash_notice, #flash_success, #flash_failure, #errorExplanation ul li { + padding: 0.6em; } + +/* flash scale */ + +#flash_notice, #flash_success, #flash_failure, #errorExplanation ul li { + font-size: 1.6em; } + +/* flash weighting */ + +#flash_notice, #flash_success, #flash_failure, #errorExplanation ul li { + font-weight: bold; } + diff --git a/script/create_project b/script/create_project index f1d95ef..f5bfde4 100755 --- a/script/create_project +++ b/script/create_project @@ -14,9 +14,9 @@ project_directory = base_directory + project_name fail("Project directory (#{project_directory}) already exists") if project_directory.exist? template_url = "git://github.com/dancroak/heroku_suspenders.git" -changeme = "oct_blog" +changeme = "CHANGEME" changesession = "CHANGESESSION" -changetitle = "Oct Blog" +changetitle = "CHANGETITLE" def run(cmd) puts "Running '#{cmd}'" -- libgit2 0.21.2