‹prev | My Chain | next› I left off last night pondering how to make Sinatra helpers available to Haml view specs. I tried digging into how helpers works in Sinatra, but was unable to discern a way to put any of it to use. My ultimate solution is to break out my helper methods into a file named helpers.rb:module Eee module Helpers def hours(minutes) h = minutes.to_i / 60 m = minutes.to_i % 60 h >

