method
append_to
v2_6_3 -
Show latest stable
- Class:
Bundler::Injector
append_to(gemfile_path, new_gem_lines)private
No documentation available.
# File lib/bundler/injector.rb, line 119
def append_to(gemfile_path, new_gem_lines)
gemfile_path.open("a") do |f|
f.puts
f.puts new_gem_lines
end
end