Class: Medie::Link

Inherits:
Object
  • Object
show all
Defined in:
lib/restfulie/client/ext/link_ext.rb

Instance Method Summary collapse

Instance Method Details

#followObject

allows you to follow links by using restfulie



5
6
7
8
9
# File 'lib/restfulie/client/ext/link_ext.rb', line 5

def follow
  r = Restfulie.at(href)
  r = r.as(content_type) if content_type
  r
end