Commit a689d49b59bdc465b7dcc21981a17a8720783dd1

Authored by Jared Pace
1 parent 7f282a97
Exists in master and in 1 other branch production

Change some extra bits to Errbit

app/views/layouts/application.html.haml
... ... @@ -2,7 +2,7 @@
2 2 %html
3 3 %head
4 4 %title
5   - Hypnotoad —
  5 + Errbit —
6 6 = yield(:page_title).present? ? yield(:page_title) : yield(:title)
7 7 %meta{ :content => "text/html; charset=utf-8", "http-equiv" => "content-type" }/
8 8 = csrf_meta_tag
... ... @@ -12,7 +12,7 @@
12 12 %body{:id => controller.controller_name, :class => controller.action_name}
13 13 %header
14 14 %div
15   - = link_to 'Hypnotoad', root_path, :id => 'site-name'
  15 + = link_to 'Errbit', root_path, :id => 'site-name'
16 16  
17 17 = render :partial => 'shared/navigation'
18 18  
... ...
config.ru
1 1 # This file is used by Rack-based servers to start the application.
2 2  
3 3 require ::File.expand_path('../config/environment', __FILE__)
4   -run Hypnotoad::Application
  4 +run Errbit::Application
... ...