mirror of
https://github.com/zhigang1992/redpotion.git
synced 2026-06-15 02:29:06 +08:00
14 lines
194 B
Ruby
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
|