httparty gem
gem install httparty
httparty gem
gem install httparty
how works httparty ruby
response =
HTTParty.get("http://rubygems.org/api/v1/versions/httparty.json")
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
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us