module Ritm
Constants
- GLOBAL_SESSION
- VERSION
Public Class Methods
method_missing(m, *args, &block)
click to toggle source
Calls superclass method
# File lib/ritm/main.rb, line 6 def self.method_missing(m, *args, &block) if GLOBAL_SESSION.respond_to?(m) GLOBAL_SESSION.send(m, *args, &block) else super end end
respond_to_missing?(method_name, _include_private = false)
click to toggle source
Calls superclass method
# File lib/ritm/main.rb, line 14 def self.respond_to_missing?(method_name, _include_private = false) GLOBAL_SESSION.respond_to?(method_name) || super end