Class: PDK::Config::IniFile::IniFileImpl::SectionLine
- Inherits:
-
Struct
- Object
- Struct
- PDK::Config::IniFile::IniFileImpl::SectionLine
- Includes:
- LineNumber
- Defined in:
- lib/pdk/config/ini_file.rb
Direct Known Subclasses
Instance Attribute Summary collapse
-
#name ⇒ Object
Returns the value of attribute name.
-
#prefix ⇒ Object
Returns the value of attribute prefix.
-
#suffix ⇒ Object
Returns the value of attribute suffix.
Attributes included from LineNumber
Instance Method Summary collapse
Methods included from LineNumber
Instance Attribute Details
#name ⇒ Object
Returns the value of attribute name
162 163 164 |
# File 'lib/pdk/config/ini_file.rb', line 162 def name @name end |
#prefix ⇒ Object
Returns the value of attribute prefix
162 163 164 |
# File 'lib/pdk/config/ini_file.rb', line 162 def prefix @prefix end |
#suffix ⇒ Object
Returns the value of attribute suffix
162 163 164 |
# File 'lib/pdk/config/ini_file.rb', line 162 def suffix @suffix end |
Instance Method Details
#to_s ⇒ Object
165 166 167 |
# File 'lib/pdk/config/ini_file.rb', line 165 def to_s "#{prefix}[#{name}]#{suffix}" end |