File: callable.rb

package info (click to toggle)
ruby-uber 0.1.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 216 kB
  • sloc: ruby: 466; makefile: 4
file content (7 lines) | stat: -rw-r--r-- 236 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
module Uber
  # Include this module into a class or extend an object to mark it as callable.
  # E.g., in a dynamic option in Options::Value it will be treated like a Proc object
  # and invoked with +#call+.
  module Callable
  end
end