Rails: uninitialized constant Draper::Base (NameError)
From Draper v1.0 your decorators need to inherit from Draper::Decorator
so:
class BookingDecorator < Draper::Decorator
instead of:
class BookingDecorator < Draper::Base
From Draper v1.0 your decorators need to inherit from Draper::Decorator
so:
class BookingDecorator < Draper::Decorator
instead of:
class BookingDecorator < Draper::Base