Sha256: 4afa4e970beb4833732c456e29ef5ca605845957bb6bdbb384620c163203d249
Contents?: true
Size: 363 Bytes
Versions: 36
Compression:
Stored size: 363 Bytes
Contents
module PageObject module Elements class Video < Media def height height = attribute(:height) return height.to_i if height end def width width = attribute(:width) return width.to_i if width end end ::PageObject::Elements.type_to_class[:video] = ::PageObject::Elements::Video end end
Version data entries
36 entries across 36 versions & 3 rubygems