Sha256: 86a66d1020f0a8f1b12e938d9c275a498fbef442072e615fb26b561aabbc7267

Contents?: true

Size: 620 Bytes

Versions: 40

Compression:

Stored size: 620 Bytes

Contents

# frozen_string_literal: true

module OoxmlParser
  # Class for parsing `tile` tag
  class Tile < OOXMLDocumentObject
    attr_accessor :offset, :ratio, :flip, :align

    def initialize(offset = nil, ratio = nil, parent: nil)
      @offset = offset
      @ratio = ratio
      super(parent: parent)
    end

    # Parse Tile object
    # @param node [Nokogiri::XML:Element] node to parse
    # @return [Tile] result of parsing
    def parse(node)
      node.attributes.each do |key, value|
        case key
        when 'algn'
          @align = value_to_symbol(value)
        end
      end
      self
    end
  end
end

Version data entries

40 entries across 40 versions & 1 rubygems

Version Path
ooxml_parser-0.37.1 lib/ooxml_parser/common_parser/common_data/colors/tile.rb
ooxml_parser-0.37.0 lib/ooxml_parser/common_parser/common_data/colors/tile.rb
ooxml_parser-0.36.1 lib/ooxml_parser/common_parser/common_data/colors/tile.rb
ooxml_parser-0.36.0 lib/ooxml_parser/common_parser/common_data/colors/tile.rb
ooxml_parser-0.35.0 lib/ooxml_parser/common_parser/common_data/colors/tile.rb
ooxml_parser-0.34.2 lib/ooxml_parser/common_parser/common_data/colors/tile.rb
ooxml_parser-0.34.1 lib/ooxml_parser/common_parser/common_data/colors/tile.rb
ooxml_parser-0.34.0 lib/ooxml_parser/common_parser/common_data/colors/tile.rb
ooxml_parser-0.33.0 lib/ooxml_parser/common_parser/common_data/colors/tile.rb
ooxml_parser-0.32.0 lib/ooxml_parser/common_parser/common_data/colors/tile.rb
ooxml_parser-0.31.0 lib/ooxml_parser/common_parser/common_data/colors/tile.rb
ooxml_parser-0.30.0 lib/ooxml_parser/common_parser/common_data/colors/tile.rb
ooxml_parser-0.29.0 lib/ooxml_parser/common_parser/common_data/colors/tile.rb
ooxml_parser-0.28.0 lib/ooxml_parser/common_parser/common_data/colors/tile.rb
ooxml_parser-0.27.0 lib/ooxml_parser/common_parser/common_data/colors/tile.rb
ooxml_parser-0.26.0 lib/ooxml_parser/common_parser/common_data/colors/tile.rb
ooxml_parser-0.25.0 lib/ooxml_parser/common_parser/common_data/colors/tile.rb
ooxml_parser-0.24.0 lib/ooxml_parser/common_parser/common_data/colors/tile.rb
ooxml_parser-0.23.0 lib/ooxml_parser/common_parser/common_data/colors/tile.rb
ooxml_parser-0.22.0 lib/ooxml_parser/common_parser/common_data/colors/tile.rb