prettier dev render

This commit is contained in:
Kyle Drake 2013-06-24 14:49:27 -07:00
parent 27e32a82c8
commit ca6f890223

View file

@ -51,3 +51,11 @@ Backburner.configure do |config|
config.retry_delay = 200
config.respond_timeout = 120
end
class Sinatra::Base
alias_method :render_original, :render
def render(engine, data, options = {}, locals = {}, &block)
options.merge!(pretty: self.class.development?) if engine == :slim && options[:pretty].nil?
render_original engine, data, options, locals, &block
end
end