如何将 Rails3 与 RedCloth 结合使用。需要“红布”不工作
我已经使用 devkit 安装了 RedCloth。使用 gem 安装 RedCloth。
如果我使用普通的 irb,那么 require 'RedCloth' 就可以正常工作。
但如果我使用 Rails 控制台并且确实需要“RedCloth”,它会说找不到要加载的文件。
请帮忙。
导轨3.0.0 红布4.2.3
I have installed RedCloth, by using the devkit. Using gem install RedCloth.
If I use plain irb, then require 'RedCloth' works fine.
But if I use rails console and do require 'RedCloth', it says it can't find file to load.
Please help.
Rails 3.0.0
RedCloth 4.2.3
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
RedClotch 是否包含在您的 Gemfile 中?更新 Gemfile 后您是否运行过
bundle install
?我不相信 Rails 3 会允许你包含 Gemfile 中没有的 gem。我不太确定捆绑器的内部工作原理,但我相信 Rails 应用程序认为您的 Gemfile 是加载 gem 的“唯一来源”。
Is RedClotch included in your Gemfile, and have you run
bundle install
since updating your Gemfile?I don't believe Rails 3 will allow you to include gems that are not in the Gemfile. I'm not quite sure about the inner workings of bundler, but I believe the Rails app considers your Gemfile it's "only source" for loading gems.
确保在 Windows XP 及更高版本上执行以下操作!
这些步骤对我有用!我不明白为什么人们在 Windows 上使用 Ruby 这么困难。这就是我开发的全部内容,而且效果很好。
Make sure to do the following on Windows XP and above!
These steps worked for me! I don't understand why people have such a hard time with Ruby on Windows. That's all I develop on and it works fine.