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
167 168 169 170 171 |
# File 'lib/utils/irb.rb', line 167 def initialize(obj, name, modul) super(name) @method = modul ? obj.instance_method(name) : obj.method(name) @description = @method.description(style: :namespace) end |
Instance Attribute Details
#method ⇒ Object (readonly)
Returns the value of attribute method.
173 174 175 |
# File 'lib/utils/irb.rb', line 173 def method @method end |
Instance Method Details
#<=>(other) ⇒ Object
187 188 189 |
# File 'lib/utils/irb.rb', line 187 def <=>(other) @description <=> other.description end |
#arity ⇒ Object
179 180 181 |
# File 'lib/utils/irb.rb', line 179 def arity method.arity end |
#owner ⇒ Object
175 176 177 |
# File 'lib/utils/irb.rb', line 175 def owner method.respond_to?(:owner) ? method.owner : nil end |
#source_location ⇒ Object
183 184 185 |
# File 'lib/utils/irb.rb', line 183 def source_location method.source_location end |