# Methods added to this helper will be available to all templates in the application. module ApplicationHelper include Hobo::DefineTags def_tag :oblique_strategy do OBLIQUE[rand(OBLIQUE.length)] end # List of all original oblique strategies (shortened for presentation). OBLIQUE = %Q{ (Organic) machinery (1-3) %% A line has two sides (1-4) %% A very small object-Its centre (2) %% Abandon desire (4) %% Abandon normal instructions (4) %% Take away as much mystery as possible. What is left?(diary 12/30) }.split(/%%/).collect { |str| str.strip } end