Sha256: a180d772862bd19fee24b3a50b2846323439d68945c9478a6b885c640c8b5257
Contents?: true
Size: 282 Bytes
Versions: 16
Compression:
Stored size: 282 Bytes
Contents
module CLIUtils # A Behavior to uppercase a Pref answer class UppercaseBehavior < PrefBehavior # Evaluates the behavior against the text. # @param [Object] text The "text" to evaluate # @return [String] def evaluate(text) text.to_s.upcase end end end
Version data entries
16 entries across 16 versions & 1 rubygems