2011-05-29 12:50:08 -07:00

13 lines
264 B
Ruby

module Redmine #:nodoc:
module CoreExtensions #:nodoc:
module String #:nodoc:
# Custom string inflections
module Inflections
def with_leading_slash
starts_with?('/') ? self : "/#{ self }"
end
end
end
end
end