Sha256: 227dd027c84524b908ce56b153a09236e2ca9107c6dd2fe0b2c8ccad7b4cf5ca

Contents?: true

Size: 1.16 KB

Versions: 5

Compression:

Stored size: 1.16 KB

Contents

module Appsignal
  class CLI
    module Helpers
      private

      def colorize(text, color)
        return text if Gem.win_platform?

        color_code =
          case color
          when :red then 31
          when :green then 32
          when :yellow then 33
          when :blue then 34
          when :pink then 35
          else 0
          end

        "\e[#{color_code}m#{text}\e[0m"
      end

      def periods
        3.times do
          print "."
          sleep 0.5
        end
      end

      def press_any_key
        puts
        print "  Ready? Press any key:"
        stdin.getch
        puts
        puts
      end

      def ask_for_input
        value = stdin.gets
        value ? value.chomp : ""
      end

      def required_input(prompt)
        loop do
          print prompt
          value = ask_for_input
          return value unless value.empty?
        end
      end

      def yes_or_no(prompt)
        loop do
          print prompt
          case ask_for_input
          when "y"
            return true
          when "n"
            return false
          end
        end
      end

      def stdin
        $stdin
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
appsignal-2.1.2 lib/appsignal/cli/helpers.rb
appsignal-2.1.1 lib/appsignal/cli/helpers.rb
appsignal-2.1.1.beta.1 lib/appsignal/cli/helpers.rb
appsignal-2.1.0 lib/appsignal/cli/helpers.rb
appsignal-2.1.0.beta.1 lib/appsignal/cli/helpers.rb