Sha256: abbc3d8b5688c92e1497cacdf7fd4e7fddf2e3dc2523de2b8a369bc16fe71fcd

Contents?: true

Size: 670 Bytes

Versions: 4

Compression:

Stored size: 670 Bytes

Contents

# frozen_string_literal: true

module ConvenientService
  module Examples
    module Rails
      module V1
        class Gemfile
          module Services
            class AssertFileExists
              include RailsService::Config

              attribute :path, :string

              validates :path, presence: true if ConvenientService::Dependencies.support_has_j_send_result_params_validations_using_active_model_validations?

              def result
                return error("File with path `#{path}` does NOT exist") unless ::File.exist?(path)

                success
              end
            end
          end
        end
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
convenient_service-0.17.0 lib/convenient_service/examples/rails/v1/gemfile/services/assert_file_exists.rb
convenient_service-0.16.0 lib/convenient_service/examples/rails/v1/gemfile/services/assert_file_exists.rb
convenient_service-0.15.0 lib/convenient_service/examples/rails/v1/gemfile/services/assert_file_exists.rb
convenient_service-0.14.0 lib/convenient_service/examples/rails/v1/gemfile/services/assert_file_exists.rb