1 2 3 4
require 'rubygems' require 'spec' ...
Ruby On Code to detect the web browser
by dcadenas.blogspot.com,
August 29, 2008 02:10
@chrismo: check that your c...
1 2 3 4
def test_web_browser() if request.env["HTTP_USER_AGENT"][/Firefox\/3/]=="Firefox/3" return "Firefox3" ...
Ruby Code to detect the web browser
by dcadenas.blogspot.com,
August 28, 2008 17:19,
18 refactorings
This is not my code but I w...
1 2 3 4
static class ExtensionsMethods { public static bool IsMultipleOf(this int number, int num) ...
1 2 3 4
def human_date date date = Date.parse(date) if date.is_a?(String) date.strftime date_format(date) ...
Ruby On Human Date Method
by dcadenas.blogspot.com,
July 06, 2008 10:12
I share the scudco point of...

@foca: A method extraction ...