Files
redpotion/lib/project/ext/object.rb
2015-04-13 16:44:37 -07:00

14 lines
194 B
Ruby

class Object
def app
rmq.app
end
def device
rmq.device
end
def find(*args) # Do not alias this, strange bugs happen where classes don't have methods
rmq(*args)
end
end