# frozen_string_literal: true module ConvenientService module Examples module Rails module Gemfile module Services class ReadFileContent include RailsService::Config attribute :path, :string validates :path, presence: true step Services::AssertFileExists, in: :path step Services::AssertFileNotEmpty, in: :path step :result, in: :path, out: :content def result success(data: {content: ::File.read(path)}) end end end end end end end