module Ground::Protocol::Helper

Constants

Ridge

Public Instance Methods

help(*args, &p) click to toggle source
# File lib/ground/protocol/helper.rb, line 7
def help(*args, &p)
  if args.first == :all_states
    help Ground::State, &p
  else
    args.each {|obj|
      obj.class_eval &p if block_given?
    }
  end
end