lib/license_finder/configuration.rb in license_finder-6.15.0 vs lib/license_finder/configuration.rb in license_finder-7.0.0

- old
+ new

@@ -143,24 +143,27 @@ def columns get(:columns) end + def use_spdx_id + get(:use_spdx_id) + end + def sbt_include_groups get(:sbt_include_groups) end def composer_check_require_only get(:composer_check_require_only) end - attr_writer :strict_matching + attr_accessor :strict_matching - attr_reader :strict_matching - protected attr_accessor :primary_config + def dup_with(other_hash) dup.tap do |dup| dup.primary_config.merge!(other_hash) end end