安装 nifty-generator 的问题

发布于 2024-11-19 18:33:23 字数 303 浏览 1 评论 0原文

我正在尝试安装 nifty-generator gem - 但遇到问题

当我将此命令放入终端时,我收到此错误 -

gem "nifty-generators", :group => :development
ERROR:  While executing gem ... (RuntimeError)
    Unknown command nifty-generators,

尝试谷歌搜索但找不到解决方案。

Ubuntu 10.04、Rails 3.0.9 和 Ruby 1.9.2

I am trying to install nifty-generator gem - but have problem

When I put this command in my terminal I get this error-

gem "nifty-generators", :group => :development
ERROR:  While executing gem ... (RuntimeError)
    Unknown command nifty-generators,

Tried googling it but couldn't find a solution.

Ubuntu 10.04, Rails 3.0.9 and Ruby 1.9.2

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

天涯离梦残月幽梦 2024-11-26 18:33:23

萨米尔
您应该将此字符串写入

gem "nifty-generators", :group => :development

Gemfile 中,该文件位于您的 Rails 应用程序根文件夹中。然后在终端中转到您的应用程序文件夹并执行

bundle install
rails g nifty:layout

,只有这样您才能使用这个 gem 的所有优点。

如果你想从终端安装“nifty-generators”,请尝试

gem install nifty-generators

Samir
You should write this string

gem "nifty-generators", :group => :development

in your Gemfile, located on yours rails application root folder. Then in terminal go to your apllication folder and execute

bundle install
rails g nifty:layout

and only then you can use all of advantages of this gem.

If you want to install "nifty-generators" from terminal, try

gem install nifty-generators
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文