Sha256: 91b59e058d7bc4689dcdd380a681b679cf993cba6f722a52e8f1c7c07bbc42a9

Contents?: true

Size: 342 Bytes

Versions: 1

Compression:

Stored size: 342 Bytes

Contents

module TheGamesDB
  module Image
    class Banner
      include SAXMachine

      ancestor :game
      value :path
      attribute :width
      attribute :height

      def url
        game.feed.base_image_url + path
      end

      def width
        @width.to_i
      end

      def height
        @height.to_i
      end

    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
the_games_db-0.1.0 lib/the_games_db/image/banner.rb