To summarize thus far...

proceed.curry.apply(proceed.bind(this), args).delay(seconds)     //
this works and I like it
proceed.curry(proceed.bind(this), args).delay(seconds);             //
this does not pass the arguments correctly
proceed.bind(this, arg1, arg2...).delay(seconds);
  // this requires me to know the arguments I'm passing
proceed.bind.apply(proceed, [this].concat(args)).delay(seconds) //
this works, but I still like the first solution the best

-justin

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Spinoffs" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-spinoffs?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to