Sha256: 47bb7cf0a7902cd7dc61f5cbd882be8dfcf47c790ff0c1aa057e645252fbcfb1
Contents?: true
Size: 840 Bytes
Versions: 1
Compression:
Stored size: 840 Bytes
Contents
module Danger class DangerLockLibraryVersions < Plugin def check(config = nil) config = config.is_a?(Hash) ? config : { } warning_mode = config[:warning] || false files = git.modified_files lock_list.keys.each do |file| if files.include?(file.to_s) && !(files.include?(lock_list[file])) comment(warning_mode, file) end end end private def comment(warning_mode, file) if warning_mode warn(error_message(file)) else fail(error_message(file)) end end def error_message(file) "`#{file.to_s}` has changed. `#{lock_list[file]}` should be committed." end def lock_list { 'Gemfile': 'Gemfile.lock', 'Cartfile': 'Cartfile.resolved', 'Podfile': 'Podfile.lock' } end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
danger-lock_library_versions-0.0.1 | lib/lock_library_versions/plugin.rb |