Here we go

This commit is contained in:
Thomas Reynolds 2015-05-02 14:23:16 -07:00
parent 5591c3337b
commit 9454536b12
6 changed files with 6 additions and 9 deletions

View file

@ -405,7 +405,7 @@ module Middleman
elsif g.is_a? Symbol
definition = method(g)
if definition.arity === 0
if definition.arity == 0
send(g)
else
send(g, resources)
@ -421,7 +421,7 @@ module Middleman
if g.is_a? Symbol
definition = method(g)
g = if definition.arity === 0
g = if definition.arity == 0
send(g)
else
send(g, resources)

View file

@ -54,7 +54,6 @@ module Middleman
context.init_haml_helpers if context.respond_to?(:init_haml_helpers)
end
end
end
end

View file

@ -6,7 +6,7 @@ module Middleman
class KramdownTemplate < ::Tilt::KramdownTemplate
def evaluate(scope, *)
@output ||= begin
MiddlemanKramdownHTML.scope = ::Middleman::Renderers::Haml.last_haml_scope || scope
MiddlemanKramdownHTML.scope = (defined?(::Middleman::Renderers::Haml) && ::Middleman::Renderers::Haml.last_haml_scope) ? ::Middleman::Renderers::Haml.last_haml_scope : scope
output, warnings = MiddlemanKramdownHTML.convert(@engine.root, @engine.options)
@engine.warnings.concat(warnings)

View file

@ -7,7 +7,6 @@ module Middleman
# Manages the list of proxy configurations and manipulates the sitemap
# to include new resources based on those configurations
class Redirects < Extension
# Expose `create_redirect` to config as `redirect`
expose_to_config redirect: :create_redirect

View file

@ -4,7 +4,6 @@ module Middleman
module Sitemap
module Extensions
class RequestEndpoints < Extension
# Expose `create_endpoint` to config as `endpoint`
expose_to_config endpoint: :create_endpoint