Sha256: eee5dab55f2a116ebe94551a83442fdbe3d5ff66c66e0d1fd1b2dc76d824b60a

Contents?: true

Size: 283 Bytes

Versions: 16

Compression:

Stored size: 283 Bytes

Contents

module CLIUtils
  # A Behavior to lowecase a Pref answer
  class LowercaseBehavior < PrefBehavior
    # Evaluates the behavior against the text.
    # @param [Object] text The "text" to evaluate
    # @return [String]
    def evaluate(text)
      text.to_s.downcase
    end
  end
end

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
cliutils-2.2.6 lib/cliutils/prefs/pref_behaviors/lowercase_behavior.rb
cliutils-2.2.5 lib/cliutils/prefs/pref_behaviors/lowercase_behavior.rb
cliutils-2.2.4 lib/cliutils/prefs/pref_behaviors/lowercase_behavior.rb
cliutils-2.2.3 lib/cliutils/prefs/pref_behaviors/lowercase_behavior.rb
cliutils-2.2.2 lib/cliutils/prefs/pref_behaviors/lowercase_behavior.rb
cliutils-2.2.1 lib/cliutils/prefs/pref_behaviors/lowercase_behavior.rb
cliutils-2.2.0 lib/cliutils/prefs/pref_behaviors/lowercase_behavior.rb
cliutils-2.1.4 lib/cliutils/prefs/pref_behaviors/lowercase_behavior.rb
cliutils-2.1.3 lib/cliutils/prefs/pref_behaviors/lowercase_behavior.rb
cliutils-2.1.2 lib/cliutils/prefs/pref_behaviors/lowercase_behavior.rb
cliutils-2.1.1 lib/cliutils/prefs/pref_behaviors/lowercase_behavior.rb
cliutils-2.1.0 lib/cliutils/prefs/pref_behaviors/lowercase_behavior.rb
cliutils-2.0.3 lib/cliutils/prefs/pref_behaviors/lowercase_behavior.rb
cliutils-2.0.2 lib/cliutils/prefs/pref_behaviors/lowercase_behavior.rb
cliutils-2.0.1 lib/cliutils/prefs/pref_behaviors/lowercase_behavior.rb
cliutils-2.0.0 lib/cliutils/prefs/pref_behaviors/lowercase_behavior.rb