Sha256: 04a1352029ed82a8e6beaee557ec07c332f91379cde747956f37d245de8f33c8

Contents?: true

Size: 577 Bytes

Versions: 13

Compression:

Stored size: 577 Bytes

Contents

# frozen_string_literal: true

module ConvenientService
  module Examples
    module Dry
      module Gemfile
        module Services
          class AssertFileNotEmpty
            include DryService::Config

            option :path

            contract do
              schema do
                required(:path).filled(:string)
              end
            end

            def result
              return error(message: "File with path `#{path}` is empty") if ::File.zero?(path)

              success
            end
          end
        end
      end
    end
  end
end

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
convenient_service-0.12.0 lib/convenient_service/examples/dry/gemfile/services/assert_file_not_empty.rb
convenient_service-0.11.0 lib/convenient_service/examples/dry/gemfile/services/assert_file_not_empty.rb
convenient_service-0.10.1 lib/convenient_service/examples/dry/gemfile/services/assert_file_not_empty.rb
convenient_service-0.10.0 lib/convenient_service/examples/dry/gemfile/services/assert_file_not_empty.rb
convenient_service-0.9.0 lib/convenient_service/examples/dry/gemfile/services/assert_file_not_empty.rb
convenient_service-0.8.0 lib/convenient_service/examples/dry/gemfile/services/assert_file_not_empty.rb
convenient_service-0.7.0 lib/convenient_service/examples/dry/gemfile/services/assert_file_not_empty.rb
convenient_service-0.6.0 lib/convenient_service/examples/dry/gemfile/services/assert_file_not_empty.rb
convenient_service-0.5.0 lib/convenient_service/examples/dry/gemfile/services/assert_file_not_empty.rb
convenient_service-0.4.0 lib/convenient_service/examples/dry/gemfile/services/assert_file_not_empty.rb
convenient_service-0.3.1 lib/convenient_service/examples/dry/gemfile/services/assert_file_not_empty.rb
convenient_service-0.3.0 lib/convenient_service/examples/dry/gemfile/services/assert_file_not_empty.rb
convenient_service-0.2.1 lib/convenient_service/examples/dry/gemfile/services/assert_file_not_empty.rb