Sha256: 23f35f47291b05eebc177a83a0b30f71d48d915ead157582235a1106e7ef147a
Contents?: true
Size: 284 Bytes
Versions: 12
Compression:
Stored size: 284 Bytes
Contents
# frozen_string_literal: true module R2OAS module Hooks class Repository attr_accessor :global_hooks_data, :last_hook_id, :target def initialize(target) @global_hooks_data = {} @last_hook_id = 0 @target = target end end end end
Version data entries
12 entries across 12 versions & 1 rubygems