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.21.0 lib/ooxml_parser/common_parser/common_data/colors/tile.rb
ooxml_parser-0.20.0 lib/ooxml_parser/common_parser/common_data/colors/tile.rb
ooxml_parser-0.19.0 lib/ooxml_parser/common_parser/common_data/colors/tile.rb
ooxml_parser-0.18.1 lib/ooxml_parser/common_parser/common_data/colors/tile.rb
ooxml_parser-0.18.0 lib/ooxml_parser/common_parser/common_data/colors/tile.rb
ooxml_parser-0.17.0 lib/ooxml_parser/common_parser/common_data/colors/tile.rb
ooxml_parser-0.16.0 lib/ooxml_parser/common_parser/common_data/colors/tile.rb
ooxml_parser-0.15.0 lib/ooxml_parser/common_parser/common_data/colors/tile.rb
ooxml_parser-0.14.2 lib/ooxml_parser/common_parser/common_data/colors/tile.rb
ooxml_parser-0.14.1-mingw32 lib/ooxml_parser/common_parser/common_data/colors/tile.rb
ooxml_parser-0.14.1 lib/ooxml_parser/common_parser/common_data/colors/tile.rb
ooxml_parser-0.14.0 lib/ooxml_parser/common_parser/common_data/colors/tile.rb
ooxml_parser-0.13.0 lib/ooxml_parser/common_parser/common_data/colors/tile.rb
ooxml_parser-0.12.2 lib/ooxml_parser/common_parser/common_data/colors/tile.rb
ooxml_parser-0.12.1 lib/ooxml_parser/common_parser/common_data/colors/tile.rb
ooxml_parser-0.12.0 lib/ooxml_parser/common_parser/common_data/colors/tile.rb
ooxml_parser-0.11.0 lib/ooxml_parser/common_parser/common_data/colors/tile.rb
ooxml_parser-0.10.0 lib/ooxml_parser/common_parser/common_data/colors/tile.rb
ooxml_parser-0.9.1 lib/ooxml_parser/common_parser/common_data/colors/tile.rb
ooxml_parser-0.9.0 lib/ooxml_parser/common_parser/common_data/colors/tile.rb