Answers for "httparty ruby gem"

0

httparty gem

gem install httparty
Posted by: Guest on July-23-2020
0

how works httparty ruby

response =
  HTTParty.get("http://rubygems.org/api/v1/versions/httparty.json")
Posted by: Guest on May-05-2020
0

how works httparty ruby

class RemoteGem
  include HTTParty

  base_uri "rubygems.org/api/v1"

  attr_accessor :name, :info, :version, :authors, :downloads

  def initialize(name, info, version, authors, downloads)
    self.name = name
    self.info = info
    self.version = version
    self.authors = authors
    self.downloads = downloads
  end

  # Returns the versions for this particular RemoteGem
  def versions
    response = self.class.get("/versions/#{name}.json")
    if response.success?
      response
    else
      raise response.response
    end
  end

  # Find a particular gem, based on its name
  def self.find(name)
    response = get("/gems/#{name}.json")
    if response.success?
      self.new(response["name"], response["info"], response["version"],
         response["authors"], response["downloads"])
    else
      # this just raises the net/http response that was raised
      raise response.response
    end
  end
end
Posted by: Guest on May-05-2020

Browse Popular Code Answers by Language