class SlideHero::Media

Attributes

type[R]
url[R]

Public Class Methods

new(url, type: :video) click to toggle source
# File lib/slide_hero/media.rb, line 5
def initialize(url, type: :video)
  @url = url
  @type = type
end