Sha256: 3d6024da41f0c307245e8427a4cf743664d370a42c0845e209b32bed44718f19

Contents?: true

Size: 928 Bytes

Versions: 16

Compression:

Stored size: 928 Bytes

Contents

module LicenseFinder
  module CLI
    class Blacklist < Base
      extend Subcommand
      include MakesDecisions

      desc "list", "List all the blacklisted licenses"
      def list
        say "Blacklisted Licenses:", :blue
        say_each(decisions.blacklisted) { |license| license.name }
      end

      auditable
      desc "add LICENSE...", "Add one or more licenses to the blacklist"
      def add(*licenses)
        assert_some licenses
        modifying { licenses.each { |l| decisions.blacklist(l, txn) } }
        say "Added #{licenses.join(", ")} to the license blacklist"
      end

      auditable
      desc "remove LICENSE...", "Remove one or more licenses from the blacklist"
      def remove(*licenses)
        assert_some licenses
        modifying { licenses.each { |l| decisions.unblacklist(l, txn) } }
        say "Removed #{licenses.join(", ")} from the license blacklist"
      end
    end
  end
end

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
license_finder-3.0.4 lib/license_finder/cli/blacklist.rb
license_finder-3.0.2 lib/license_finder/cli/blacklist.rb
license_finder-3.0.1 lib/license_finder/cli/blacklist.rb
license_finder-3.0.0 lib/license_finder/cli/blacklist.rb
license_finder-2.1.2 lib/license_finder/cli/blacklist.rb
license_finder-2.1.1 lib/license_finder/cli/blacklist.rb
license_finder-2.1.0 lib/license_finder/cli/blacklist.rb
license_finder-2.1.0.rc9 lib/license_finder/cli/blacklist.rb
license_finder-2.1.0.rc8 lib/license_finder/cli/blacklist.rb
license_finder-2.1.0.rc7 lib/license_finder/cli/blacklist.rb
license_finder-2.1.0.rc6 lib/license_finder/cli/blacklist.rb
license_finder-2.1.0.rc5 lib/license_finder/cli/blacklist.rb
license_finder-2.1.0.rc4 lib/license_finder/cli/blacklist.rb
license_finder-2.1.0.rc3 lib/license_finder/cli/blacklist.rb
license_finder-2.1.0.rc2 lib/license_finder/cli/blacklist.rb
license_finder-2.1.0.rc1 lib/license_finder/cli/blacklist.rb