Commit 52f657aa15e730c686eeb16dc102d2e5ce46d524

Authored by Dmitriy Zaporozhets
2 parents d66f6922 4d9197ef

Merge pull request #1286 from steveklabnik/master

Misspelled Draper
Gemfile
... ... @@ -54,7 +54,7 @@ gem "unicorn"
54 54 gem "acts-as-taggable-on", "2.3.1"
55 55  
56 56 # Decorators
57   -gem "drapper"
  57 +gem "draper"
58 58  
59 59 # Background jobs
60 60 gem "resque", "~> 1.20.0"
... ...
app/decorators/application_decorator.rb
1   -class ApplicationDecorator < Drapper::Base
  1 +class ApplicationDecorator < Draper::Base
2 2 # Lazy Helpers
3 3 # PRO: Call Rails helpers without the h. proxy
4 4 # ex: number_to_currency(model.price)
... ...