3

我正在使用 Ruby 1.8.7 编写脚本,但是在尝试使用库“htmlentities”解析 html 实体时遇到了一些问题。

尽管我已经使用 gem 安装了该库,但我无法加载它。这是错误:

1.8.7 :001 > require 'htmlentities'
LoadError: no such file to load -- htmlentities

这是我的宝石清单:

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)
4

1 回答 1

5

做:

require 'rubygems'
require 'htmlentities'

工作?

编辑:刚刚注意到你有捆绑器。你是如何创建 REPL 的?你在使用 Rails 控制台吗?如果是这样,您可能需要将 htmlentities 添加到您的 Gemfile

于 2012-11-09T03:13:58.257 回答