Sha256: 2a9c66e31456e7cde7b556d624d2f55703d9f8e66e418f2d567602bf5abb8c9e

Contents?: true

Size: 428 Bytes

Versions: 1

Compression:

Stored size: 428 Bytes

Contents

#--
# Credit goes to Phil Tomson.
#++
require 'nano/string/downcase'

class String

  # Alias for #downcase? method.
  alias_method( :lowercase?, :downcase? )

end


#  _____         _
# |_   _|__  ___| |_
#   | |/ _ \/ __| __|
#   | |  __/\__ \ |_
#   |_|\___||___/\__|
#
=begin test

  require 'test/unit'

  class TCString < Test::Unit::TestCase

    def test_lowercase?
      assert( 'abc'.lowercase? )
    end

  end

=end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
facets-0.9.0 lib/nano/string/lowercase.rb