Sha256: df8275f3fea9a3b5e22802f6b314cb73fe15a9326c6bc330d76eb58a4ac410c1

Contents?: true

Size: 449 Bytes

Versions: 15

Compression:

Stored size: 449 Bytes

Contents

# frozen_string_literal: true

require_relative "concern/instance_methods"
require_relative "concern/class_methods"

module ConvenientService
  module Service
    module Plugins
      module HasResult
        module Concern
          include Support::Concern

          included do |service_class|
            service_class.include InstanceMethods

            service_class.extend ClassMethods
          end
        end
      end
    end
  end
end

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
convenient_service-0.12.0 lib/convenient_service/service/plugins/has_result/concern.rb
convenient_service-0.11.0 lib/convenient_service/service/plugins/has_result/concern.rb
convenient_service-0.10.1 lib/convenient_service/service/plugins/has_result/concern.rb
convenient_service-0.10.0 lib/convenient_service/service/plugins/has_result/concern.rb
convenient_service-0.9.0 lib/convenient_service/service/plugins/has_result/concern.rb
convenient_service-0.8.0 lib/convenient_service/service/plugins/has_result/concern.rb
convenient_service-0.7.0 lib/convenient_service/service/plugins/has_result/concern.rb
convenient_service-0.6.0 lib/convenient_service/service/plugins/has_result/concern.rb
convenient_service-0.5.0 lib/convenient_service/service/plugins/has_result/concern.rb
convenient_service-0.4.0 lib/convenient_service/service/plugins/has_result/concern.rb
convenient_service-0.3.1 lib/convenient_service/service/plugins/has_result/concern.rb
convenient_service-0.3.0 lib/convenient_service/service/plugins/has_result/concern.rb
convenient_service-0.2.1 lib/convenient_service/service/plugins/has_result/concern.rb
convenient_service-0.2.0 lib/convenient_service/service/plugins/has_result/concern.rb
convenient_service-0.1.0 lib/convenient_service/service/plugins/has_result/concern.rb