红宝石 – Bundler:如何使用无轨?

前端之家收集整理的这篇文章主要介绍了红宝石 – Bundler:如何使用无轨?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个使用黄瓜外的项目.如何使用我的gemfile中指定的版本加载宝石?

解决方法

挖掘 the Bundler website

>创建Gemfile(运行bundle init创建骨架Gemfile)
>捆绑安装
>在您的应用程序中:

# Only needed for ruby 1.8.x
require 'rubygems'

# The part that activates bundler in your app
require 'bundler/setup' 

# require your gems as usual
require 'some_gem'

# ...or require all the gems in one statement
Bundler.require

值得一看:

Bundler.io – Using Bundler in Your Appplication
Bundler.io – Bundler.setup and Bundler.require

Are bundle exec and require ‘bundler/setup’ equivalent?

原文链接:https://www.f2er.com/ruby/273661.html

猜你在找的Ruby相关文章