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