Sha256: 36f8de8008efde3f29e066d53a7225933e20472bc5fbc0c14701bc33f29d2eaa

Contents?: true

Size: 579 Bytes

Versions: 1

Compression:

Stored size: 579 Bytes

Contents

# frozen_string_literal: true

require_relative "gemfile/services"

##
# @internal
#   Usage example:
#
#   result = ConvenientService::Examples::Standard::V1::Gemfile.format("Gemfile")
#   result = ConvenientService::Examples::Standard::V1::Gemfile.format("spec/cli/gemfile/format/fixtures/Gemfile")
#
module ConvenientService
  module Examples
    module Standard
      module V1
        class Gemfile
          include ConvenientService::Feature

          entry :format do |path|
            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.14.0 lib/convenient_service/examples/standard/v1/gemfile.rb