Open leoarnold opened 5 years ago
In the Puppet community it is quite common to find this construct:
source 'https://rubygems.org' puppet_version = ENV['PUPPET_GEM_VERSION'] gem 'puppet', (puppet_version.nil? ? '~> 6.0' : puppet_version)
Now Depfu cannot know how to correctly handle this. It would be very nice if I could just append the magic comment # depfu:ignore to the line starting with gem 'puppet' and Depfu would instantly know not to send PRs for 'puppet'.
# depfu:ignore
gem 'puppet'
In the Puppet community it is quite common to find this construct:
Now Depfu cannot know how to correctly handle this. It would be very nice if I could just append the magic comment
# depfu:ignore
to the line starting withgem 'puppet'
and Depfu would instantly know not to send PRs for 'puppet'.