从github克隆一个rails应用程序,使用相同版本的rails(5.0.1)在原始dev的机器上运行。
从app目录运行的任何rails命令都失败,并显示:
Undefined local variable or method `git_source' for Gemfile
相关的Gemfile部分:
git_source(:github) do |repo_name|
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?("/")
"https://github.com/#{repo_name}.git"
end
答案 0 :(得分:5)
答案 1 :(得分:0)
在您的控制台中,运行...
gem update bundler
bundle install
答案 2 :(得分:0)
我遇到了同样的问题。 $ gem update bundler 没有帮助。 我通过控制台安装了一个缺少的gem,然后使用RubyMine Gem Manager安装其余的(或sudo bundle install)。它对我有用。
答案 3 :(得分:-1)
我的问题
sample_app $ bundle install - withoutout production
Gemfile的未定义局部变量或方法`git_source'
sample_app $ ruby -v
ruby 1.9.3p484(2013-11-22修订版43786)[i686-linux]
我的解决方案
/bin/bash --login
rvm使用2.4.0
/sample_app $ ruby -v
ruby 2.4.0p0(2016-12-24修订版57164)[i686-linux]
sample_app $ bundle install - withoutout production
捆绑完成!