Provides a curry method that can be mixed in to classes that make sense with currying. Depends on self implementing a call method.

Methods
Public Instance methods
curriable.curry(*spice) → #<Curry...>

Create a new curried proc from this curriable, using the supplied spice.

     # File lib/curry.rb, line 274
274:   def curry(*spice)
275:     Curry.new(self, *spice)
276:   end