Class: UrlExpander::Expanders::Tinycc
- Defined in:
- lib/url_expander/expanders/basic/tinycc.rb
Overview
Expand tiny.cc URLS Usage: UrlExpander::Client.expand(“tiny.cc/pabx5”)
Defined Under Namespace
Classes: Request
Constant Summary collapse
- PATTERN =
%r'(http://tiny\.cc(/[\w/]+))'
Instance Attribute Summary collapse
-
#parent_klass ⇒ Object
readonly
Returns the value of attribute parent_klass.
Attributes inherited from Basic
Instance Method Summary collapse
- #fetch_url(path) ⇒ Object
-
#initialize(short_url = "", options = {}) ⇒ Tinycc
constructor
A new instance of Tinycc.
Constructor Details
#initialize(short_url = "", options = {}) ⇒ Tinycc
Returns a new instance of Tinycc.
12 13 14 15 |
# File 'lib/url_expander/expanders/basic/tinycc.rb', line 12 def initialize(short_url="", ={}) @parent_klass = self super(short_url, ) end |
Instance Attribute Details
#parent_klass ⇒ Object (readonly)
Returns the value of attribute parent_klass.
10 11 12 |
# File 'lib/url_expander/expanders/basic/tinycc.rb', line 10 def parent_klass @parent_klass end |
Instance Method Details
#fetch_url(path) ⇒ Object
17 18 19 20 21 |
# File 'lib/url_expander/expanders/basic/tinycc.rb', line 17 def fetch_url(path) url = super(path) raise UrlExpander::Error.new('page not found',404) if url == 'http://tiny.cc/notfound' url end |