lib/diffend/commands.rb in diffend-0.2.26 vs lib/diffend/commands.rb in diffend-0.2.27

- old
+ new

@@ -1,11 +1,13 @@ # frozen_string_literal: true module Diffend # Modules grouping supported bundler commands module Commands - # Install bundler command + # Bundler install command INSTALL = 'install' - # Update bundler command + # Bundler update command UPDATE = 'update' + # Bundler exec command + EXEC = 'exec' end end