class RawgApi::Clients::Platforms

Public Instance Methods

all(page: 1, page_size: DEFAULT_PAGE_SIZE) click to toggle source
# File lib/rawg_api/clients/platforms.rb, line 6
def all(page: 1, page_size: DEFAULT_PAGE_SIZE)
  get(params: {page: page, page_size: page_size})
end
find(id) click to toggle source
# File lib/rawg_api/clients/platforms.rb, line 10
def find(id)
  get(id)
end