aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core_ext/string/starts_ends_with.rb
blob: 641acf62d0d86d087c8fdbc1a211ae73ff7515f3 (plain) (blame)
1
2
3
4
class String
  alias_method :starts_with?, :start_with?
  alias_method :ends_with?, :end_with?
end