Enabled hirb for better console formatting.
This commit is contained in:
parent
dcd2a514a6
commit
be85296ddb
3 changed files with 7 additions and 0 deletions
1
Gemfile
1
Gemfile
|
@ -12,4 +12,5 @@ gem 'sqlite3-ruby'
|
|||
|
||||
group :development do
|
||||
gem 'annotate'
|
||||
gem 'hirb'
|
||||
end
|
|
@ -14,6 +14,7 @@ GEM
|
|||
annotate (2.4.0)
|
||||
fastercsv (1.5.4)
|
||||
haml (3.0.25)
|
||||
hirb (0.3.4)
|
||||
mysql (2.8.1)
|
||||
prawn (0.6.3)
|
||||
prawn-core (< 0.7, >= 0.6.3)
|
||||
|
@ -44,6 +45,7 @@ DEPENDENCIES
|
|||
annotate
|
||||
fastercsv
|
||||
haml (>= 2.0.6)
|
||||
hirb
|
||||
mysql
|
||||
prawn (<= 0.6.3)
|
||||
rails (= 2.3.10)
|
||||
|
|
|
@ -27,3 +27,7 @@ config.action_mailer.smtp_settings = {
|
|||
:password => "secret"
|
||||
}
|
||||
|
||||
# Enable hirb for better console formatting
|
||||
require "hirb"
|
||||
Hirb.enable
|
||||
|
Loading…
Reference in a new issue