class Api2ch::NewThreads

Public Class Methods

new(board) click to toggle source
# File lib/api_2ch/methods/new_threads.rb, line 3
def initialize(board)
  @board = board
end

Public Instance Methods

call() click to toggle source
# File lib/api_2ch/methods/new_threads.rb, line 7
def call
  response = HTTParty.get("#{BASE_URL}#{@board}/catalog_num.json")
  json     = JSON.parse(response.body)
  json['threads']
end