Sha256: 0513de6bdd0b40aff0684a121919c3e39666c76acae05f113f340d041d863633
Contents?: true
Size: 375 Bytes
Versions: 7
Compression:
Stored size: 375 Bytes
Contents
module ActiveHook module App class Config < ActiveHook::BaseConfig OTHER_DEFAULTS = { validation_path: '/hooks/validate', creation_path: '/hooks' }.freeze attr_accessor :validation_path, :creation_path def initialize super OTHER_DEFAULTS.each { |key, value| send("#{key}=", value) } end end end end
Version data entries
7 entries across 7 versions & 1 rubygems