我可以使用紅寶石安裝json庫。如果它是相關的,我使用的是最新的OS X.如何在OS X上安裝寶石後使用紅寶石
usr$ sudo gem install json
Password:
Building native extensions. This could take a while...
Successfully installed json-1.6.5
1 gem installed
Installing ri documentation for json-1.6.5...
Installing RDoc documentation for json-1.6.5...
但是,試圖require 'json'
這是行不通的。我究竟做錯了什麼?
touakas-MacBook-Pro:tmp jacob$ ruby x.rb
x.rb:3:in `require': no such file to load -- json (LoadError)
from x.rb:2
的x.rb如下:
#!/usr/bin/env ruby
require 'json'
x = { "a"=>"b" }
print x.to_json
你能不能給這個一杆:'紅寶石-rubygems x.rb' – Candide 2012-03-09 10:16:00
JSON是紅寶石1.9.x的STD-lib的HTTP的一部分:// WWW。 ruby-doc.org/stdlib-1.9.3/libdoc/json/rdoc/JSON/Ext/Generator/GeneratorMethods/Hash.html – 2012-03-09 10:40:02