Hi All
I'm trying to pass data between blocks using sinatra. For example:
@data = Hash.new
post "/" do
@data[:test] = params.fetch("test").to_s
redirect "/tmp"
end
get "/tmp" do
puts @data[:test]
end
However whenever i get to the tmp block @data is nil and throws an error. Why is that?