Class: Musa::MusicXML::Builder::Internal::Pedal

Inherits:
DirectionType
  • Object
show all
Includes:
Helper
Defined in:
lib/musa-dsl/musicxml/builder/direction.rb

Instance Method Summary collapse

Methods included from Extension::AttributeBuilder

#attr_complex_adder_to_array, #attr_complex_adder_to_custom, #attr_complex_builder, #attr_simple_builder, #attr_tuple_adder_to_array, #attr_tuple_adder_to_hash, #attr_tuple_builder

Methods included from Helper::ToXML

#to_xml

Methods included from Extension::With

#with

Constructor Details

#initialize(type, line: nil, &block) ⇒ Pedal

start / stop / change / continue



167
168
169
170
171
172
173
174
175
# File 'lib/musa-dsl/musicxml/builder/direction.rb', line 167

def initialize(type, # start / stop / change / continue
               line: nil, # true
               &block)

  @type = type
  @line = line

  super
end

Instance Method Details

#_direction_type_to_xml(io, indent:, tabs:) ⇒ Object



180
181
182
# File 'lib/musa-dsl/musicxml/builder/direction.rb', line 180

def _direction_type_to_xml(io, indent:, tabs:)
  io.puts "#{tabs}<pedal type=\"#{@type}\"#{ decode_bool_or_string_attribute(@line, 'line', 'yes', 'no') }/>"
end