Sha256: f5d1eb22c5faa4a20ccb3516db1e97955f5394037fe5234472e4d0dc300d664d

Contents?: true

Size: 298 Bytes

Versions: 4

Compression:

Stored size: 298 Bytes

Contents

require 'thor'

module Bundler
  module Audit
    class CLI < ::Thor
      module Formats
        module Good
          def print_report(report,output=$stdout)
            say "I am a good format.", :green
          end
        end

        Formats.register :good, Good
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
bundler-audit-0.9.2 spec/fixtures/lib/bundler/audit/cli/formats/good.rb
bundler-audit-0.9.1 spec/fixtures/lib/bundler/audit/cli/formats/good.rb
bundler-audit-0.9.0.1 spec/fixtures/lib/bundler/audit/cli/formats/good.rb
bundler-audit-0.9.0 spec/fixtures/lib/bundler/audit/cli/formats/good.rb