Sha256: f76d64f8e1c4a3c27fefc05297d211eae402b640f0c41931da81dfb9986b5008

Contents?: true

Size: 398 Bytes

Versions: 22

Compression:

Stored size: 398 Bytes

Contents

require 'facet/string/underscore'

class Symbol

  def underscore
    self.to_s.underscore.to_sym
  end

end



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

  require 'test/unit'

  class TCSymbol < Test::Unit::TestCase

    def test_underscore
      assert_equal( :tis_a_test, :TisATest.underscore )
    end

  end

=end

Version data entries

22 entries across 22 versions & 1 rubygems

Version Path
facets-1.8.0 lib/facets/core/symbol/underscore.rb
facets-1.8.8 lib/facets/core/symbol/underscore.rb