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.
我最近使用该gem install命令下载了一个 ruby 扩展(Nokogiri),我想在 Rails 之外使用它,在我正在编写的一个小脚本中。当我在rails中使用它时,它工作得很好,但是如何将它加载到rails之外?我需要“要求”哪些文件?(我好像没有找到下载的源)
gem install
如果你能帮助我,谢谢。
请参阅本指南以了解如何使用 nokogiri。
基本上你只是做
require 'rubygems' require 'nokogiri'
你已经设置好了。
这里还有一些关于在 ruby 代码中使用 gems 的有用的一般信息。