Sha256: 2fdd78bfee131445dcd645e449740ff5f8491b7cc34875ec2e7f6e6653456355

Contents?: true

Size: 334 Bytes

Versions: 5

Compression:

Stored size: 334 Bytes

Contents

# 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

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
convenient_service-0.9.0 lib/convenient_service/utils/string.rb
convenient_service-0.8.0 lib/convenient_service/utils/string.rb
convenient_service-0.7.0 lib/convenient_service/utils/string.rb
convenient_service-0.6.0 lib/convenient_service/utils/string.rb
convenient_service-0.5.0 lib/convenient_service/utils/string.rb