Sha256: 24ec537551b7d88db1e42160fc498fb1d2e8df5a20cd80c0ab00598ff5c0991a

Contents?: true

Size: 263 Bytes

Versions: 4

Compression:

Stored size: 263 Bytes

Contents

class Agilibox::Service
  include Agilibox::InitializeWith

  if RUBY_VERSION >= "2.7.0"
    def self.call(...)
      new(...).call
    end
  else
    def self.call(*args)
      new(*args).call
    end
  end

  def call(*)
    raise NotImplementedError
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
agilibox-1.9.13 app/services/agilibox/service.rb
agilibox-1.9.12 app/services/agilibox/service.rb
agilibox-1.9.11 app/services/agilibox/service.rb
agilibox-1.9.10 app/services/agilibox/service.rb