在Gemfile设置gem

bundle init 命令在当前目录下生存Gemfile文件。

  1. 默认情况下,执行bundle install的时候,自动去Gemfile中的sources中去下载gem。

  2. 如果你的gem需要从私有gem server 获取 使用source

gem 'my_gem', '1.0', :source => 'https://gems.example.com'
如果,多个gem需要从相同的server获取使用source块组织
source 'https://gems.example.com' do
 gem 'my_gem', '1.0'
 gem 'another_gem', '1.2.1'
end

  1. 使用git repositories 作为source。使用':tag'、':branch'、'ref'声明需要检出的分支,默认的是msater分支。

gem 'nokogiri', :git => 'https://github.com/tenderlove/nokogiri.git', :branch => '1.4'

  1. 直接使用文件系统未打包的gem, 使用path

gem 'extracted_library', :path => './vendor/extracted_library'

如果你想直接使用你文件系统中(你当前使用的操作系统)的多个gem,设置一个全局的'path'参数,将自动加载.

path 'components' do
gem 'admin_ui'
gem 'public_ui'
end

参考链接http://bundler.io/v1.11/gemfile.html

你可能感兴趣的:(在Gemfile设置gem)