al-quran.reflectslight.io/nanoc/lib/mixin/erb.rb

9 lines
242 B
Ruby
Raw Normal View History

2023-10-07 08:21:48 +02:00
module Mixin::ERB
def erb(path, local_assigns = {})
erb = File.binread File.join(Dir.getwd, "src", "html", path)
2023-10-07 08:21:48 +02:00
scope = binding
local_assigns.each { scope.local_variable_set(_1, _2) }
::ERB.new(erb).result(scope)
end
end