Sha256: e3360353f2257d9ef33db6931c1560a9a33bed4ba7747e4a16d66ff7b6ddad75

Contents?: true

Size: 636 Bytes

Versions: 1

Compression:

Stored size: 636 Bytes

Contents

# frozen_string_literal: true

%w[
version
constants
regex
error_info
context_error
configuration
with_error_handler
application_context
application_contract
around_action_execute_extension
application_action
all_actions_complete_action
application_validator_action
application_organizer
].each do |filename|
  require File.expand_path("../light-service-ext/#{filename}", Pathname.new(__FILE__).realpath)
end



module LightServiceExt
  class << self
    def config
      self.configuration
    end

    def configuration
      @configuration ||= Configuration.new
    end

    def configure
      yield configuration
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
light-service-ext-0.1.2 lib/light-service-ext.rb