Explicit dependency management with bundler.
使用Bundler进行显式的依赖管理。
Rails 3 introduces the Bundler, a special utility for managing dependencies (thus obsolescing config.gem).
Rails 3引入了Bundler,这是一个专门用于管理依赖性的实用程序(因此无需再使用config . gem)。
The bundle utility, short for Bundler, downloads and installs all the gems named in Gemfile and any of those gems' prerequisites (see Listing 4).
该bundle实用程序,简称Bundler,可用于下载和安装所有在Gemfile中指定的gem以及任何这些gems的依赖项(请参阅清单4)。
应用推荐