带 wirble 的 Rails 控制台?
如何将 Rails 控制台与 wirble gem 一起使用?我最初拥有 wirble 为您提供的代码并将其放入我的 .irbrc
此时,irb 可以与 wirble (颜色突出显示)一起正常工作,但是当我启动 rails console
时,它会给出以下错误摆动和停止。
我更改了 irbrc 代码,因此它不会停止,但会继续出现错误,这至少会加载 rails console
,但没有颜色突出显示。
有什么想法我应该放什么吗?这是我的 IBRRC 中的
begin
# load and initialize wirble
require 'wirble'
Wirble.init
Wirble.colorize
rescue
puts "Couldn't load Wirble, continuing anyway"
end
How do i use rails console with the wirble gem? I originally had the code that wirble gives you and put it in my .irbrc
At this point, irb worked fine with wirble (color highlighting), but when i would start rails console
it would give an error about wirble and halt.
I changed the irbrc code so it doesnt halt but continues on error, this at least gets rails console
load but theres no color highlighting.
Any ideas what i should put? this is in my irbrc
begin
# load and initialize wirble
require 'wirble'
Wirble.init
Wirble.colorize
rescue
puts "Couldn't load Wirble, continuing anyway"
end
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将 gem 'wirble', :group =>; :development 在您的
Gemfile
中。PS
还可以看看
Hirb
和awesome_print
。Put
gem 'wirble', :group => :development
in yourGemfile
.PS
Take a look on
Hirb
andawesome_print
also.