捆绑器和 ruby 1.9.2
为什么我无法在 Gemfile 中使用这些行:
gem 'date'
gem 'pp'
文件中是否必须需要这些行,而不是像这样:
require 'date'
require 'pp'
或者有没有办法将它们混合到您的 Gemfile 中,以便它们在项目范围内可用?
我认为 date 和 pp 是 ruby 1.9.2 核心的一部分,因此与常规 gem 不同,但我不太明白为什么......
Why am I not able to use these lines in a Gemfile:
gem 'date'
gem 'pp'
Must these be required in file instead like this:
require 'date'
require 'pp'
Or is there a way to mix them into your Gemfile so they are available project wide?
I think that date and pp are part of ruby 1.9.2 core and as a result are different from regular gems but I don't exactly understand why...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
因为它们不是 Gems,而是 Ruby 标准库的一部分。但默认情况下不会加载标准库,因此需要
require
语句Because those are not Gems but part of the Ruby standard library. But the standard library isnt loaded by default, hence the
require
statements