Class: Puppet::Settings::IniFile::SettingLine Private

Inherits:
Struct
  • Object
show all
Includes:
LineNumber
Defined in:
lib/puppet/settings/ini_file.rb

This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.

Instance Attribute Summary collapse

Attributes included from LineNumber

#previous

Instance Method Summary collapse

Methods included from LineNumber

#line_number

Instance Attribute Details

#infixObject

Returns the value of attribute infix

Returns:

  • (Object)

    the current value of infix



186
187
188
# File 'lib/puppet/settings/ini_file.rb', line 186

def infix
  @infix
end

#nameObject

Returns the value of attribute name

Returns:

  • (Object)

    the current value of name



186
187
188
# File 'lib/puppet/settings/ini_file.rb', line 186

def name
  @name
end

#prefixObject

Returns the value of attribute prefix

Returns:

  • (Object)

    the current value of prefix



186
187
188
# File 'lib/puppet/settings/ini_file.rb', line 186

def prefix
  @prefix
end

#suffixObject

Returns the value of attribute suffix

Returns:

  • (Object)

    the current value of suffix



186
187
188
# File 'lib/puppet/settings/ini_file.rb', line 186

def suffix
  @suffix
end

#valueObject

Returns the value of attribute value

Returns:

  • (Object)

    the current value of value



186
187
188
# File 'lib/puppet/settings/ini_file.rb', line 186

def value
  @value
end

Instance Method Details

#==(other) ⇒ Object

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



197
198
199
# File 'lib/puppet/settings/ini_file.rb', line 197

def ==(other)
  super(other) && line_number == other.line_number
end

#to_sObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



189
190
191
# File 'lib/puppet/settings/ini_file.rb', line 189

def to_s
  "#{prefix}#{name}#{infix}#{value}#{suffix}"
end

#write(fh) ⇒ Object

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



193
194
195
# File 'lib/puppet/settings/ini_file.rb', line 193

def write(fh)
  fh.puts(to_s)
end