Sha256: fe27ca491adff6ddd0ef6f7ee68db9022503bf15c384f611bd8b149f06c3f4dd
Contents?: true
Size: 406 Bytes
Versions: 32
Compression:
Stored size: 406 Bytes
Contents
# frozen_string_literal: true require 'active_support/concern' module AppStoreConnect module Object module Properties extend ActiveSupport::Concern class_methods do def properties @properties ||= {} end def property(name, options = {}) properties[name] = options attr_accessor name.to_sym end end end end end
Version data entries
32 entries across 32 versions & 1 rubygems