1 2 3 4
def browser?(b) user_agents = { :ff => /Firefox/, ...
Ruby On Code to detect the web browser
by seaofclouds,
October 16, 2008 18:24
here it is. to test firefox...
1 2 3 4
def browser?(b) user_agents = { :ff => /Firefox/, ...
Ruby browser detection and url r...
i have a simple browser det...
1 2 3 4
def browser(b)? user_agents = { /Firefox\/3/ => "ff3", ...
Ruby On Code to detect the web browser
by seaofclouds,
October 13, 2008 16:51
i like what i see here, but...
1 2 3 4
def translation_links languages = [ %w[en english us], ...
Ruby On nested array to set of html...
by seaofclouds,
October 09, 2008 15:02
AWESOME. i like the explici...
1 2 3 4
def translation_links lang = [ %w[en english us], ...
Ruby nested array to set of html...
i have a simple array that ...
@adam - thanks for having a...