Skip to content

Commit

Permalink
Fix for service pattern namespacing issue (#137)
Browse files Browse the repository at this point in the history
  • Loading branch information
ericaporter authored Jun 24, 2024
1 parent 1ef5b2d commit 8278e9c
Showing 1 changed file with 21 additions and 17 deletions.
38 changes: 21 additions & 17 deletions lib/dfe/analytics/shared/service_pattern.rb
Original file line number Diff line number Diff line change
@@ -1,23 +1,27 @@
# a template for creating service objects
module ServicePattern
def self.included(base)
base.extend(ClassMethods)
base.class_eval do
private_class_method(:new)
end
end
module DfE
module Analytics
# a template for creating service objects
module ServicePattern
def self.included(base)
base.extend(ClassMethods)
base.class_eval do
private_class_method(:new)
end
end

def call
raise(NotImplementedError('#call must be implemented'))
end
def call
raise(NotImplementedError('#call must be implemented'))
end

# provides class-level methods to the classes that include ServicePattern
# defines a template for the `call` method; the expected entry point for service objects
module ClassMethods
def call(*args, **keyword_args, &block)
return new.call if args.empty? && keyword_args.empty? && block.nil?
# provides class-level methods to the classes that include ServicePattern
# defines a template for the `call` method; the expected entry point for service objects
module ClassMethods
def call(*args, **keyword_args, &block)
return new.call if args.empty? && keyword_args.empty? && block.nil?

new(*args, **keyword_args, &block).call
new(*args, **keyword_args, &block).call
end
end
end
end
end

0 comments on commit 8278e9c

Please sign in to comment.