summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCassio Godinho <cassiopgodinho@gmail.com>2018-02-19 22:44:02 -0300
committerCassio Godinho <cassiopgodinho@gmail.com>2018-02-19 22:44:02 -0300
commitc518c36319bd2dd281623283c026dca3216b02cd (patch)
tree378909d0b13f0b5a7277799e44bdc7e8f0cc8576
parent5e49f422b69df8fc5a0c0c06cb1adfc167212b5d (diff)
downloadbundler-c518c36319bd2dd281623283c026dca3216b02cd.tar.gz
remove timestamp comment
-rw-r--r--lib/bundler/injector.rb3
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/bundler/injector.rb b/lib/bundler/injector.rb
index 7fe6a91ddd..5654c04453 100644
--- a/lib/bundler/injector.rb
+++ b/lib/bundler/injector.rb
@@ -84,9 +84,6 @@ module Bundler
def append_to(gemfile_path, new_gem_lines)
gemfile_path.open("a") do |f|
f.puts
- if @options["timestamp"] || @options["timestamp"].nil?
- f.puts "# Added at #{Time.now} by #{`whoami`.chomp}:"
- end
f.puts new_gem_lines
end
end