Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
httparty を使用しようとしています
require 'httparty'
しかし、私は得ています
no such file to load -- httparty (LoadError)
OSXでRuby 1.8.7を使用しています
Ruby 1.8 ではrequire "rubygems"、コード内で Gem を要求する前に行う必要があります。そう:
require "rubygems"
require "rubygems" require "httparty" # Your code here.