我正在使用 Ruby 1.8.7 编写脚本,但是在尝试使用库“htmlentities”解析 html 实体时遇到了一些问题。
尽管我已经用 gem 安装了它,但我无法加载它。这是错误:
1.8.7 :001 > require 'htmlentities'
LoadError: no such file to load -- htmlentities
这是我的 gem list :
actionmailer (2.3.4)
actionpack (2.3.4)
activerecord (2.3.4)
activeresource (2.3.4)
activesupport (2.3.4)
bundler (1.2.0)
htmlentities (4.3.1)
rack (1.0.1)
rails (2.3.4)
rake (0.9.2.2)
rubygems-bundler (1.1.0)
rvm (1.11.3.5)
sqlite3 (1.3.6)
最佳答案
做:
require 'rubygems'
require 'htmlentities'
工作?
编辑:刚刚注意到你在混合中加入了 bundler。你是如何创建 REPL 的?您使用的是 rails 控制台吗?如果是这样,也许您需要将 htmlentities 添加到 Gemfile
关于ruby - 加载错误 : no such file to load -- htmlentities,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/12368853/