named_scope :schedule_limits, lambda { |*args| {:conditions => ["id =
? and sched_start > ? and sched_start < ?" , ( args[0], args[1],
args[2]) ]} }
it just produces the error
/dir/dir/dir/schedule.rb:9: syntax error, unexpected ')', expecting '='
--
Posted via http://www.ruby-forum.com/.
undefined method `schedule_limits'
I figured it out just in time to not need the whole shebang (at least i
did learn something though). figures. thank you very much for your
help.