Sha256: ccb86187e0f2b49ee3c52ea7320e1b17d516585602717684e3555e882f8f81f0
Contents?: true
Size: 582 Bytes
Versions: 24
Compression:
Stored size: 582 Bytes
Contents
module PlataformaSocial class Ranking class General < PlataformaSocial::Ranking def initialize end # Método para retornar o ranking completo do app # Esse método aceita como parâmetro: # options = { # :limit => NUMERO_MAXIMO_DE_REGISTROS_A_SEREM_RETORNADOS, # :page => PAGINA_A_SER_RETORNADA_NA_PAGINACAO # } # def get options = {} get_request "/users/ranking", { :limit => options[:limit], :page => options[:page] } rescue => e return e.to_s end end end end
Version data entries
24 entries across 24 versions & 1 rubygems