Method: Bundler::Checksum::Source#removal
- Defined in:
- lib/bundler/checksum.rb
permalink #removal ⇒ Object
A full sentence describing how to remove the checksum
152 153 154 155 156 157 158 159 160 161 162 163 |
# File 'lib/bundler/checksum.rb', line 152 def removal case type when :lock "remove the matching checksum in #{location}" when :gem "remove the gem at #{location}" when :api "checksums from #{location} cannot be locally modified, you may need to update your sources" else "remove #{location} (#{type})" end end |