Sha256: 25c4d47e5d1cb329bd547d4161bdedb8fb73bb9a5e52da181ebcbb8910980303

Contents?: true

Size: 511 Bytes

Versions: 1

Compression:

Stored size: 511 Bytes

Contents

# frozen_string_literal: true

require_relative "gemfile/services"

##
# Usage example:
#
# result = ConvenientService::Examples::Standard::Gemfile.format(path: "Gemfile")
# result = ConvenientService::Examples::Standard::Gemfile.format(path: "spec/cli/gemfile/format/fixtures/Gemfile")
#
module ConvenientService
  module Examples
    module Standard
      module Gemfile
        class << self
          def format
            Services::Format[path: path]
          end
        end
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
convenient_service-0.1.0 lib/convenient_service/examples/standard/gemfile.rb