2
I Use This!
Very Low Activity

News

Analyzed about 9 hours ago. based on code collected 1 day ago.
Posted about 16 years ago by John Mettraux
I’ve just released version 0.1 of ‘rufus-rtm’, yet another Remember The Milk Ruby gem. The license is MIT, the features are pretty limited for now but it’s already quite useful (at least to me). The documentation is at http://rufus.rubyforge.org/rufus-rtm, but here is a usage sample : require 'rubygems' require 'rufus/rtm' [...]
Posted about 16 years ago by John Mettraux
This is the latest episode of my move to Rufus of some of the OpenWFEru subprojects. The ‘rufus-decision‘ gem contains a Ruby implementation of [CSV] decision tables. After sudo gem install -y rufus-decision given that table : you can have : ... [More] require 'rubygems' require 'rufus/decision' include Rufus TABLE = DecisionTable.new(""" in:age,in:trait,out:salesperson 18..35,,adeslky 25..35,,bronco 36..50,,espadas 51..78,,thorsten 44..120,,ojiisan 25..35,rich,kerfelden ,cheerful,swanson ,maniac,korolev """) # # Given a customer (a Hash instance directly, for # convenience), returns the name of the [...] [Less]