Class: Utils::IRB::Shell::MethodWrapper
- Inherits:
-
WrapperBase
- Object
- WrapperBase
- Utils::IRB::Shell::MethodWrapper
- Defined in:
- lib/utils/irb.rb
Instance Attribute Summary collapse
-
#method ⇒ Object
readonly
Returns the value of attribute method.
Attributes inherited from WrapperBase
Instance Method Summary collapse
- #<=>(other) ⇒ Object
- #arity ⇒ Object
-
#initialize(obj, name, modul) ⇒ MethodWrapper
constructor
A new instance of MethodWrapper.
- #owner ⇒ Object
- #source_location ⇒ Object
Methods inherited from WrapperBase
Constructor Details
#initialize(obj, name, modul) ⇒ MethodWrapper
Returns a new instance of MethodWrapper.
158 159 160 161 162 |
# File 'lib/utils/irb.rb', line 158 def initialize(obj, name, modul) super(name) @method = modul ? obj.instance_method(name) : obj.method(name) @description = "#{owner}##@name(#{arity})" end |
Instance Attribute Details
#method ⇒ Object (readonly)
Returns the value of attribute method.
164 165 166 |
# File 'lib/utils/irb.rb', line 164 def method @method end |
Instance Method Details
#<=>(other) ⇒ Object
178 179 180 |
# File 'lib/utils/irb.rb', line 178 def <=>(other) @description <=> other.description end |
#arity ⇒ Object
170 171 172 |
# File 'lib/utils/irb.rb', line 170 def arity method.arity end |
#owner ⇒ Object
166 167 168 |
# File 'lib/utils/irb.rb', line 166 def owner method.respond_to?(:owner) ? method.owner : nil end |
#source_location ⇒ Object
174 175 176 |
# File 'lib/utils/irb.rb', line 174 def source_location method.source_location end |