Class: String
Overview
:nodoc:
Instance Method Summary collapse
-
#except_first ⇒ Object
Returns a copy of this string with the first character dropped.
Instance Method Details
#except_first ⇒ Object
Returns a copy of this string with the first character dropped.
34 35 36 |
# File 'lib/autumn/misc.rb', line 34 def except_first self[1, size-1] end |