lib/convenient_service/utils/string.rb in convenient_service-0.4.0 vs lib/convenient_service/utils/string.rb in convenient_service-0.5.0
- old
+ new
@@ -1,14 +1,19 @@
# frozen_string_literal: true
require_relative "string/camelize"
+require_relative "string/split"
module ConvenientService
module Utils
module String
class << self
def camelize(...)
Camelize.call(...)
+ end
+
+ def split(...)
+ Split.call(...)
end
end
end
end
end