As stated in the title, I get an error. Specifically, this:
Undefined local variable or method `git_source' for Gemfile
from /var/www/canvas/Gemfile.d/_before.rb:53
I checked bundler:
canvas$ bundler -v
which returns:
Bundler version 1.13.6
The relevant section of code is:
git_source(:github) do |repo_name|
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include? ("/")
"https://github.com/#{repo_name}.git"
end
I understand 'git_source' was introduced in Bundler 1.6. Thoughts?