mirror of
https://github.com/redmine/redmine.git
synced 2025-10-31 18:36:07 +01:00
Patch by Go MAEDA. git-svn-id: https://svn.redmine.org/redmine/trunk@22052 e93f8b46-1217-0410-a6f0-8f06a7374b81
11 lines
232 B
Ruby
11 lines
232 B
Ruby
# frozen_string_literal: true
|
|
|
|
require_relative 'string/conversions'
|
|
require_relative 'string/inflections'
|
|
|
|
# @private
|
|
class String
|
|
include Redmine::CoreExt::String::Conversions
|
|
include Redmine::CoreExt::String::Inflections
|
|
end
|