hitoro, I guess you could reqrite the find_not_done in ruby like
def self.find_not_done
descriptions.reject {|x| x.done? }
end
(rubists love blocks as much as Smalltalkers do <Wink> but this would move the selecting from the database ti ruby code withouth adding much.
I agree on the part about linear programming with modal frameworks.
by rff — Jun 01
def self.find_not_done
descriptions.reject {|x| x.done? }
end
(rubists love blocks as much as Smalltalkers do <Wink> but this would move the selecting from the database ti ruby code withouth adding much.
I agree on the part about linear programming with modal frameworks.