Class: UrlExpander::Expanders::Youtube

Inherits:
Basic
  • Object
show all
Defined in:
lib/url_expander/expanders/basic/youtube.rb

Overview

Expand Youtu.be URLS Usage: UrlExpander::Client.expand(“youtu.be/bINUfbLV_0M”) UrlExpander::Client.expand(“y2u.be/bINUfbLV_0M”)

Defined Under Namespace

Classes: Request

Constant Summary collapse

PATTERN =
%r'(http://(?:youtu\.be|y2u\.be)(/[\w/]+))'

Instance Attribute Summary collapse

Attributes inherited from Basic

#long_url, #parttern

Instance Method Summary collapse

Constructor Details

#initialize(short_url = "", options = {}) ⇒ Youtube

Returns a new instance of Youtube.



13
14
15
16
# File 'lib/url_expander/expanders/basic/youtube.rb', line 13

def initialize(short_url="", options={})
  @parent_klass = self
  super(short_url, options)
end

Instance Attribute Details

#parent_klassObject (readonly)

Returns the value of attribute parent_klass.



11
12
13
# File 'lib/url_expander/expanders/basic/youtube.rb', line 11

def parent_klass
  @parent_klass
end