Class: String

Inherits:
Object
  • Object
show all
Defined in:
lib/guff/java_source.rb

Instance Method Summary collapse

Instance Method Details

#ends_with?(s) ⇒ Boolean

Returns:

  • (Boolean)


13
14
15
# File 'lib/guff/java_source.rb', line 13

def ends_with?(s)
    reverse.index(s) == 0
end