mirror of
https://github.com/redmine/redmine.git
synced 2025-11-01 02:46:13 +01:00
This will be changed to true in the future. git-svn-id: http://svn.redmine.org/redmine/trunk@17947 e93f8b46-1217-0410-a6f0-8f06a7374b81
11 lines
281 B
Ruby
11 lines
281 B
Ruby
# frozen_string_literal: false
|
|
|
|
require File.dirname(__FILE__) + '/string/conversions'
|
|
require File.dirname(__FILE__) + '/string/inflections'
|
|
|
|
# @private
|
|
class String
|
|
include Redmine::CoreExtensions::String::Conversions
|
|
include Redmine::CoreExtensions::String::Inflections
|
|
end
|