Class: String

Inherits:
Object
  • Object
show all
Includes:
English::Style
Defined in:
lib/autumn/misc.rb

Overview

:nodoc:

Instance Method Summary collapse

Instance Method Details

#except_firstObject

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