找不到 ERB gem

Can't find the ERB gem

我知道如何使用 erb,并且已经在 rails 和独立的 ruby 应用程序中使用过。我不知道它来自哪里,因为我从未安装过它但是在那里。我在 mac 上使用了 rbenv。

我使用 rails 安装程序在 windows 8 计算机上安装了 ruby,但似乎无法访问 erb。

如何安装erb??? (或者我遗漏了什么)

ERB 模块在 Ruby 中带有 标准库 。你只需要要求它。

require 'erb'

temp = "<%= var %>"

erb = ERB.new(temp)
var = "hi" 
erb.result(binding) # => "hi"