module Readmore

Constants

VERSION

Public Class Methods

forum() click to toggle source
# File lib/readmore.rb, line 8
def self.forum
  get("/forum")
end
posts(cat,forum,thread,page) click to toggle source
# File lib/readmore.rb, line 16
def self.posts(cat,forum,thread,page)
  get("/beitrag?&categoryId=#{cat}&forenId=#{forum}&threadId=#{thread}&seite=#{page}")
end
threads(cat,forum) click to toggle source
# File lib/readmore.rb, line 12
def self.threads(cat,forum)
  get("/threads?&categoryId=#{cat}&forenId=#{forum}")
end