Sha256: ca3f37d629fdd6b877b625da44adb7187a7e1f0bb985e565db3e383682793780

Contents?: true

Size: 412 Bytes

Versions: 2

Compression:

Stored size: 412 Bytes

Contents

# frozen_string_literal: true

require "bundler"

module Bundler
  module Alive
    #
    # Announces check progress
    #
    class Announcer
      DOT = "."

      private_constant :DOT

      #
      # A new instance of Reporter
      #
      def initialize
        @output = $stdout
      end

      def announce
        output.write DOT
      end

      private

      attr_reader :output
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
bundler-alive-0.1.4 lib/bundler/alive/announcer.rb
bundler-alive-0.1.3 lib/bundler/alive/announcer.rb