Commit 24d0dec6d71628dcce42369f09b881372f249082

Authored by Stephen Crosby
1 parent 2d4c3e4b
Exists in master and in 1 other branch production

fixes #908 update displayed errbit version

app/views/layouts/application.html.haml
@@ -34,5 +34,5 @@ @@ -34,5 +34,5 @@
34 #footer 34 #footer
35 = t('.powered_html', :link => link_to(t('.errbit'), 'http://github.com/errbit/errbit', :target => '_blank')) 35 = t('.powered_html', :link => link_to(t('.errbit'), 'http://github.com/errbit/errbit', :target => '_blank'))
36 %br 36 %br
37 - = Errbit::Version.to_s 37 + = Errbit::VERSION
38 = yield :scripts 38 = yield :scripts
lib/errbit/version.rb
1 -module Errbit::Version  
2 - MAJOR = 0  
3 - MINOR = 3  
4 - PATCH = 0  
5 -  
6 - def self.to_s  
7 - "#{MAJOR}.#{MINOR}.#{PATCH}.dev"  
8 - end 1 +module Errbit
  2 + VERSION = '0.4.0'
9 end 3 end