lib/dry/view/tilt/haml.rb in dry-view-0.7.1 vs lib/dry/view/tilt/haml.rb in dry-view-0.8.0
- old
+ new
@@ -3,20 +3,20 @@
module Dry
class View
module Tilt
module Haml
def self.requirements
- ["hamlit/block", <<~ERROR]
- dry-view requires hamlit-block for full compatibility when rendering .haml templates (e.g. implicitly capturing block content when yielding)
+ ["hamlit", <<~ERROR]
+ dry-view requires hamlit (3.0 or greater) for full compatibility when rendering .haml templates (e.g. implicitly capturing block content when yielding)
To ignore this and use another engine for .haml templates, dereigster this adapter before calling your views:
Dry::View::Tilt.deregister_adatper(:haml)
ERROR
end
def self.activate
- # Requiring hamlit/block will register the engine with Tilt
+ # Requiring hamlit will register the engine with Tilt
self
end
end
register_adapter :haml, Haml