Sha256: f5e1929008463d92754cfcc1be3ba50ec1f803a56198d82ab5620320efae2cd8

Contents?: true

Size: 1.67 KB

Versions: 6

Compression:

Stored size: 1.67 KB

Contents

# Use the methods in this file to hint at other geordi features
require File.expand_path('settings', __dir__)

module Geordi
  class Hint
    class << self

      def did_you_know(hints)
        settings_probability =  Settings.new.hint_probability
        default_probability = (Util.testing? ? 0 : 10) # Percent
        should_print_hint = Random.new.rand(100) <= (settings_probability || default_probability)

        generated_hints = hints.map(&method(:generate))
        if generated_hints.any? && should_print_hint
          puts
          puts generated_hints.sample
          puts "You can configure the probability for these hints by setting hint_probability to a unitless percent number in #{Settings::GLOBAL_SETTINGS_FILE_NAME}" unless settings_probability
        end

        generated_hints
      end

      private

      def generate(hint)
        if hint.is_a?(Symbol)
          command = Geordi::CLI.commands[hint.to_s]
          description = downcase_first_letter(command.description)
          "Did you know? `geordi #{command.name}` can #{description}."
        elsif hint.is_a?(Array)
          command = Geordi::CLI.commands[hint[0].to_s]
          option = command.options[hint[1]]
          banner = option.banner.nil? ? '' : " #{option.banner}"
          description = downcase_first_letter(option.description)
          "Did you know? `geordi #{command.name} #{option.aliases.first}#{banner}` can #{description}."
        elsif hint.is_a?(String)
          "Did you know? #{hint}"
        else
          raise "Unsupported hint input #{hint.inspect}"
        end
      end

      def downcase_first_letter(str)
        str[0].downcase + str[1..-1]
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
geordi-11.2.0 lib/geordi/hint.rb
geordi-11.1.0 lib/geordi/hint.rb
geordi-11.0.0 lib/geordi/hint.rb
geordi-10.1.0 lib/geordi/hint.rb
geordi-10.0.1 lib/geordi/hint.rb
geordi-10.0.0 lib/geordi/hint.rb