Class: Itegration
- Inherits:
-
Object
- Object
- Itegration
- Defined in:
- lib/tdl/exlib/itegration.rb
Instance Attribute Summary collapse
-
#api ⇒ Object
Returns the value of attribute api.
-
#names_pool ⇒ Object
Returns the value of attribute names_pool.
-
#nickname ⇒ Object
Returns the value of attribute nickname.
Instance Method Summary collapse
- #check_same_method(name) ⇒ Object
-
#initialize(name_str) ⇒ Itegration
constructor
A new instance of Itegration.
Constructor Details
#initialize(name_str) ⇒ Itegration
Returns a new instance of Itegration.
85 86 87 88 89 90 91 92 93 |
# File 'lib/tdl/exlib/itegration.rb', line 85 def initialize(name_str) @api = ItgApi.new if name_str.to_s.strip.empty? @nickname = "" else @nickname = "#{name_str.to_s.strip}_" end _names_pool_inst() end |
Instance Attribute Details
#api ⇒ Object
Returns the value of attribute api.
83 84 85 |
# File 'lib/tdl/exlib/itegration.rb', line 83 def api @api end |
#names_pool ⇒ Object
Returns the value of attribute names_pool.
83 84 85 |
# File 'lib/tdl/exlib/itegration.rb', line 83 def names_pool @names_pool end |
#nickname ⇒ Object
Returns the value of attribute nickname.
83 84 85 |
# File 'lib/tdl/exlib/itegration.rb', line 83 def nickname @nickname end |