I was trying to understand how the ERB works in the IRB.
>> require 'erb'
=> true
>> weekday = Time.now.strftime('%A')
=> "Wednesday"
>> simple_template = "Today is <%= weekday %>."
=> "Today is <%= weekday %>."
>> renderer = ERB.new(simple_template)
=> #<ERB:0x287f568 @safe_level=nil, @src="#coding:IBM437\n_erbout = ''; _erbout.concat \"Today is \"; _erbout.concat(( weekday ).to_s); _erbout.concat \".\"; _erbout.force_encoding(__ENCODING__)", @encoding=#<Encoding:IBM437>, @filename=nil, @lineno=0>
>> puts output = renderer.result()
NameError: undefined local variable or method `weekday' for main:Object
from (erb):1:in `<main>'
from C:/Ruby22/lib/ruby/2.2.0/erb.rb:863:in `eval'
from C:/Ruby22/lib/ruby/2.2.0/erb.rb:863:in `result'
from (irb):5
from C:/Ruby22/bin/irb:11:in `<main>'
I was not able to figure out the reason of the above error cause I can see the variable is returning it's value.
>> weekday
=> "Wednesday"
Now when I took the code and put it in a file, it ran fine. Please explain.
The line
doesn't have access to your context so it can't see the variable
weekday
You need to pass the current context (the "binding")Try instead