class RMD::NCT::Getter::Base
Attributes
data_link[R]
errors[R]
url[R]
Public Class Methods
new(url)
click to toggle source
# File lib/rmd/nct/getter/base.rb, line 9 def initialize(url) @url = url end
Public Instance Methods
fetch()
click to toggle source
# File lib/rmd/nct/getter/base.rb, line 13 def fetch; end
Private Instance Methods
agent()
click to toggle source
# File lib/rmd/nct/getter/base.rb, line 25 def agent @agent ||= Mechanize.new end
key()
click to toggle source
# File lib/rmd/nct/getter/base.rb, line 17 def key @key ||= uncached_key end
new_link()
click to toggle source
# File lib/rmd/nct/getter/base.rb, line 22 def new_link; end
page()
click to toggle source
# File lib/rmd/nct/getter/base.rb, line 23 def page; end
uncached_key()
click to toggle source
# File lib/rmd/nct/getter/base.rb, line 21 def uncached_key; end