dials 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
metadata ADDED
@@ -0,0 +1,82 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: dials
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Keith Gould
8
+ bindir: bin
9
+ cert_chain: []
10
+ date: 1980-01-02 00:00:00.000000000 Z
11
+ dependencies: []
12
+ description: |
13
+ Dials turns hardcoded constants into operator-adjustable values without
14
+ giving up code review as the source of truth. Each dial is declared in
15
+ code with a default, a type, JSON-Schema-style constraints, and optional
16
+ dimensions (per market, per platform, ...); runtime overrides live in
17
+ one small append-only table (state and attributed history are the same
18
+ rows), resolve scoped override → global override → code default, are
19
+ served from a per-process cache, and every write supports optional
20
+ stale-write protection.
21
+ email:
22
+ - opensource@zarpay.app
23
+ executables: []
24
+ extensions: []
25
+ extra_rdoc_files: []
26
+ files:
27
+ - CHANGELOG.md
28
+ - LICENSE.txt
29
+ - README.md
30
+ - lib/dials.rb
31
+ - lib/dials/active_record.rb
32
+ - lib/dials/active_record/models.rb
33
+ - lib/dials/active_record/store.rb
34
+ - lib/dials/actor.rb
35
+ - lib/dials/cache.rb
36
+ - lib/dials/change_record.rb
37
+ - lib/dials/config.rb
38
+ - lib/dials/definition.rb
39
+ - lib/dials/dimension.rb
40
+ - lib/dials/errors.rb
41
+ - lib/dials/freeze.rb
42
+ - lib/dials/generated.rb
43
+ - lib/dials/overview.rb
44
+ - lib/dials/railtie.rb
45
+ - lib/dials/registry.rb
46
+ - lib/dials/resolver.rb
47
+ - lib/dials/schema.rb
48
+ - lib/dials/scope.rb
49
+ - lib/dials/snapshot.rb
50
+ - lib/dials/store_version.rb
51
+ - lib/dials/stores/memory.rb
52
+ - lib/dials/testing.rb
53
+ - lib/dials/version.rb
54
+ - lib/generators/dials/install/install_generator.rb
55
+ - lib/generators/dials/install/templates/initializer.rb.tt
56
+ - lib/generators/dials/install/templates/migration.rb.tt
57
+ homepage: https://github.com/zarpay/dials
58
+ licenses:
59
+ - MIT
60
+ metadata:
61
+ bug_tracker_uri: https://github.com/zarpay/dials/issues
62
+ changelog_uri: https://github.com/zarpay/dials/blob/main/gem/CHANGELOG.md
63
+ documentation_uri: https://zarpay.github.io/dials/
64
+ source_code_uri: https://github.com/zarpay/dials/tree/main/gem
65
+ rdoc_options: []
66
+ require_paths:
67
+ - lib
68
+ required_ruby_version: !ruby/object:Gem::Requirement
69
+ requirements:
70
+ - - ">="
71
+ - !ruby/object:Gem::Version
72
+ version: '3.2'
73
+ required_rubygems_version: !ruby/object:Gem::Requirement
74
+ requirements:
75
+ - - ">="
76
+ - !ruby/object:Gem::Version
77
+ version: '0'
78
+ requirements: []
79
+ rubygems_version: 3.6.9
80
+ specification_version: 4
81
+ summary: Operator-adjustable values with per-scope overrides, attribution, and caching.
82
+ test_files: []