Class: ID3Tag::ConfigurationStruct

Inherits:
Object
  • Object
show all
Defined in:
lib/id3tag/configuration_struct.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeConfigurationStruct

Returns a new instance of ConfigurationStruct.



3
4
5
6
7
# File 'lib/id3tag/configuration_struct.rb', line 3

def initialize
  @string_encode_options = {}
  @v2_tag_read_limit = 0
  @source_encoding_fallback = nil
end

Instance Attribute Details

#source_encoding_fallbackObject

Returns the value of attribute source_encoding_fallback.



11
12
13
# File 'lib/id3tag/configuration_struct.rb', line 11

def source_encoding_fallback
  @source_encoding_fallback
end

#string_encode_optionsObject

Returns the value of attribute string_encode_options.



9
10
11
# File 'lib/id3tag/configuration_struct.rb', line 9

def string_encode_options
  @string_encode_options
end

#v2_tag_read_limitObject

Returns the value of attribute v2_tag_read_limit.



10
11
12
# File 'lib/id3tag/configuration_struct.rb', line 10

def v2_tag_read_limit
  @v2_tag_read_limit
end