athletic_record 0.0.1

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.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: b030725efe6d01ad9b33c95153970dd78d6c91a7e0b5dacd910346717c18ea0a
4
+ data.tar.gz: c5e0ce542d19bedd35c0702d7b5e8d39013614a7e9027d5f09b93ec363654870
5
+ SHA512:
6
+ metadata.gz: ccd26163fbc9ae69b47154ea9668b880bfa59d353c13637aaec09d79b28e5a5fbc2e8b89c5c94c977f758d98c777dd28a967168d1329c664171dc249153e5ec0
7
+ data.tar.gz: 0c9c106114836941c4aec0bed0d3c650b68a9e40be92fcfb192aa04dabafc2ab44346b63ec9fb1c8a4316aae68e0f90fa4e3b5ff0c7d620f85d7dcb598818af4
data/CHANGELOG.md ADDED
@@ -0,0 +1,5 @@
1
+ # AthleticRecord
2
+
3
+ ## 0.0.1
4
+
5
+ - Initial release to secure gem name
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2026 Twilight Coders, LLC
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,18 @@
1
+ # AthleticRecord
2
+
3
+ Integration layer for [TwilightCoders](https://github.com/TwilightCoders) ActiveRecord extensions. Ensures graceful interoperability between:
4
+
5
+ - [active_record-mti](https://github.com/TwilightCoders/active_record-mti) - Multi Table Inheritance for PostgreSQL
6
+ - [active_record-framing](https://github.com/TwilightCoders/active_record-framing) - Higher-level scoping via CTEs
7
+ - [deleted_at](https://github.com/TwilightCoders/deleted_at) - Clean soft deletes without default scopes
8
+ - [quick_count](https://github.com/TwilightCoders/quick_count) - Fast approximate row counts for large tables
9
+
10
+ ## Installation
11
+
12
+ ```ruby
13
+ gem 'athletic_record'
14
+ ```
15
+
16
+ ## License
17
+
18
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
@@ -0,0 +1,3 @@
1
+ module AthleticRecord
2
+ VERSION = '0.0.1'
3
+ end
@@ -0,0 +1,4 @@
1
+ require_relative 'athletic_record/version'
2
+
3
+ module AthleticRecord
4
+ end
metadata ADDED
@@ -0,0 +1,63 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: athletic_record
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Dale Stevens
8
+ bindir: bin
9
+ cert_chain: []
10
+ date: 1980-01-02 00:00:00.000000000 Z
11
+ dependencies:
12
+ - !ruby/object:Gem::Dependency
13
+ name: activerecord
14
+ requirement: !ruby/object:Gem::Requirement
15
+ requirements:
16
+ - - ">="
17
+ - !ruby/object:Gem::Version
18
+ version: '4.2'
19
+ type: :runtime
20
+ prerelease: false
21
+ version_requirements: !ruby/object:Gem::Requirement
22
+ requirements:
23
+ - - ">="
24
+ - !ruby/object:Gem::Version
25
+ version: '4.2'
26
+ description: Ensures graceful interoperability between active_record-mti, active_record-framing,
27
+ deleted_at, quick_count, and other TwilightCoders ActiveRecord gems
28
+ email:
29
+ - dale@twilightcoders.net
30
+ executables: []
31
+ extensions: []
32
+ extra_rdoc_files: []
33
+ files:
34
+ - CHANGELOG.md
35
+ - LICENSE.txt
36
+ - README.md
37
+ - lib/athletic_record.rb
38
+ - lib/athletic_record/version.rb
39
+ homepage: https://github.com/TwilightCoders/athletic_record
40
+ licenses:
41
+ - MIT
42
+ metadata:
43
+ allowed_push_host: https://rubygems.org
44
+ source_code_uri: https://github.com/TwilightCoders/athletic_record
45
+ changelog_uri: https://github.com/TwilightCoders/athletic_record/blob/main/CHANGELOG.md
46
+ rdoc_options: []
47
+ require_paths:
48
+ - lib
49
+ required_ruby_version: !ruby/object:Gem::Requirement
50
+ requirements:
51
+ - - ">="
52
+ - !ruby/object:Gem::Version
53
+ version: '2.3'
54
+ required_rubygems_version: !ruby/object:Gem::Requirement
55
+ requirements:
56
+ - - ">="
57
+ - !ruby/object:Gem::Version
58
+ version: '0'
59
+ requirements: []
60
+ rubygems_version: 4.0.5
61
+ specification_version: 4
62
+ summary: Integration layer for TwilightCoders ActiveRecord extensions
63
+ test_files: []