Add a new method with define_method
class String define_method('last') do |n| self[-n, n] end end p "Here's a string.".last(7) # => "string."