temporal_tables 3.0.1 → 3.0.2
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 +4 -4
- data/.github/workflows/test.yml +52 -24
- data/.ruby-version +1 -1
- data/gemfiles/Gemfile.7.2.mysql +19 -0
- data/gemfiles/Gemfile.7.2.mysql.lock +273 -0
- data/gemfiles/Gemfile.7.2.pg +19 -0
- data/gemfiles/Gemfile.7.2.pg.lock +273 -0
- data/lib/temporal_tables/connection_adapters/postgresql_adapter.rb +5 -0
- data/lib/temporal_tables/relation_extensions.rb +7 -5
- data/lib/temporal_tables/temporal_adapter.rb +5 -3
- data/lib/temporal_tables/temporal_class.rb +3 -0
- data/lib/temporal_tables/version.rb +1 -1
- data/spec/basic_history_spec.rb +32 -0
- data/spec/internal/db/schema.rb +4 -0
- data/spec/support/database.rb +38 -8
- data/spec/temporal_tables/temporal_adapter_spec.rb +32 -0
- data/temporal_tables.gemspec +1 -1
- metadata +14 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b2b3ca86de0cb9c2d6571de2dcda6069f9ea0de03b5b1ebf064bedb5d8e31370
|
4
|
+
data.tar.gz: 8456f39e5f9aeef0e6c66fe8bd0e9d771fdec212ba6e4e145e2acbf4f227974b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b22849a333b4ffeceae82a2683cad8a9462d8e41f982af130866d51aa8591d3c487601aa3cd5452f75a9b0d1fb528309968070fe00046387812b304aac730f72
|
7
|
+
data.tar.gz: 10833776cfeec2db6df3aa7b0a87d69c7596d1e9729ea1efab1d60cf5e4e517cb9b899868e11485dc65591188f65641e53de448691160840cae2648648302b59
|
data/.github/workflows/test.yml
CHANGED
@@ -3,7 +3,7 @@ name: Continuous Integration
|
|
3
3
|
on:
|
4
4
|
push:
|
5
5
|
branches:
|
6
|
-
-
|
6
|
+
- "**"
|
7
7
|
tags:
|
8
8
|
- "v*.*.*"
|
9
9
|
pull_request:
|
@@ -11,16 +11,40 @@ on:
|
|
11
11
|
- master
|
12
12
|
|
13
13
|
jobs:
|
14
|
+
rubocop:
|
15
|
+
runs-on: ubuntu-latest
|
16
|
+
|
17
|
+
strategy:
|
18
|
+
fail-fast: false
|
19
|
+
matrix:
|
20
|
+
ruby: ["3.3"]
|
21
|
+
gemfile:
|
22
|
+
- "gemfiles/Gemfile.7.1.pg"
|
23
|
+
env:
|
24
|
+
BUNDLE_GEMFILE: ${{github.workspace}}/${{matrix.gemfile }}
|
25
|
+
steps:
|
26
|
+
- uses: actions/checkout@v4
|
27
|
+
- uses: ruby/setup-ruby@v1
|
28
|
+
with:
|
29
|
+
ruby-version: "${{ matrix.ruby }}"
|
30
|
+
- name: Bundle
|
31
|
+
run: bundle install
|
32
|
+
|
33
|
+
- name: Run Rubocop
|
34
|
+
run: bundle exec rubocop
|
35
|
+
|
14
36
|
tests:
|
15
37
|
runs-on: ubuntu-latest
|
16
38
|
|
17
39
|
services:
|
18
40
|
postgres:
|
19
|
-
image: postgres:
|
41
|
+
image: ${{ endsWith(matrix.gemfile, '.pg') && 'postgres:16' || '' }}
|
42
|
+
env:
|
43
|
+
POSTGRES_HOST_AUTH_METHOD: trust
|
20
44
|
ports: ["5432:5432"]
|
21
45
|
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
|
22
46
|
mysql:
|
23
|
-
image: mysql:8
|
47
|
+
image: ${{ endsWith(matrix.gemfile, '.mysql') && 'mysql:8' || '' }}
|
24
48
|
env:
|
25
49
|
MYSQL_ROOT_PASSWORD: password
|
26
50
|
ports: ["3306:3306"]
|
@@ -29,37 +53,41 @@ jobs:
|
|
29
53
|
strategy:
|
30
54
|
fail-fast: false
|
31
55
|
matrix:
|
32
|
-
ruby: ["3.0
|
33
|
-
gemfile:
|
56
|
+
ruby: ["3.0", "3.1", "3.2", "3.3"]
|
57
|
+
gemfile:
|
34
58
|
- "gemfiles/Gemfile.6.1.mysql"
|
35
59
|
- "gemfiles/Gemfile.6.1.pg"
|
36
60
|
- "gemfiles/Gemfile.7.0.mysql"
|
37
61
|
- "gemfiles/Gemfile.7.0.pg"
|
38
62
|
- "gemfiles/Gemfile.7.1.mysql"
|
39
63
|
- "gemfiles/Gemfile.7.1.pg"
|
64
|
+
- "gemfiles/Gemfile.7.2.mysql"
|
65
|
+
- "gemfiles/Gemfile.7.2.pg"
|
66
|
+
exclude:
|
67
|
+
- ruby: "3.0"
|
68
|
+
gemfile: "gemfiles/Gemfile.7.2.mysql"
|
69
|
+
- ruby: "3.0"
|
70
|
+
gemfile: "gemfiles/Gemfile.7.2.pg"
|
40
71
|
env:
|
41
72
|
BUNDLE_GEMFILE: ${{github.workspace}}/${{matrix.gemfile }}
|
42
73
|
steps:
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
gem install bundler:2.4.10
|
50
|
-
bundle install
|
51
|
-
|
52
|
-
- name: Run Rubocop
|
53
|
-
run: bundle exec rubocop
|
74
|
+
- uses: actions/checkout@v4
|
75
|
+
- uses: ruby/setup-ruby@v1
|
76
|
+
with:
|
77
|
+
ruby-version: "${{ matrix.ruby }}"
|
78
|
+
- name: Bundle
|
79
|
+
run: bundle install
|
54
80
|
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
81
|
+
- name: Run Tests
|
82
|
+
env:
|
83
|
+
PGHOST: localhost
|
84
|
+
PGUSER: postgres
|
85
|
+
run: bundle exec rspec
|
60
86
|
|
61
87
|
publish:
|
62
|
-
needs:
|
88
|
+
needs:
|
89
|
+
- rubocop
|
90
|
+
- tests
|
63
91
|
runs-on: ubuntu-latest
|
64
92
|
if: startsWith(github.ref, 'refs/tags/v')
|
65
93
|
|
@@ -68,9 +96,9 @@ jobs:
|
|
68
96
|
id-token: write
|
69
97
|
|
70
98
|
steps:
|
71
|
-
- uses: actions/checkout@
|
99
|
+
- uses: actions/checkout@v4
|
72
100
|
- uses: ruby/setup-ruby@v1
|
73
101
|
with:
|
74
|
-
ruby-version: "3.
|
102
|
+
ruby-version: "3.3"
|
75
103
|
bundler-cache: true
|
76
104
|
- uses: rubygems/release-gem@v1
|
data/.ruby-version
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.
|
1
|
+
3.3
|
@@ -0,0 +1,19 @@
|
|
1
|
+
source 'https://rubygems.org'
|
2
|
+
|
3
|
+
# Runtime dependencies
|
4
|
+
gem 'rails', '~> 7.2.0'
|
5
|
+
gem 'mysql2'
|
6
|
+
|
7
|
+
# Development dependencies
|
8
|
+
gem 'rspec', '~> 3.4'
|
9
|
+
gem 'rake'
|
10
|
+
gem 'byebug'
|
11
|
+
gem 'database_cleaner'
|
12
|
+
gem 'combustion'
|
13
|
+
gem 'gemika'
|
14
|
+
gem 'rubocop'
|
15
|
+
gem 'rubocop-rails'
|
16
|
+
gem 'rubocop-rspec'
|
17
|
+
|
18
|
+
# Gem under test
|
19
|
+
gem 'temporal_tables', :path => '..'
|
@@ -0,0 +1,273 @@
|
|
1
|
+
PATH
|
2
|
+
remote: ..
|
3
|
+
specs:
|
4
|
+
temporal_tables (3.0.1)
|
5
|
+
rails (>= 6.1, < 7.3)
|
6
|
+
|
7
|
+
GEM
|
8
|
+
remote: https://rubygems.org/
|
9
|
+
specs:
|
10
|
+
actioncable (7.2.0)
|
11
|
+
actionpack (= 7.2.0)
|
12
|
+
activesupport (= 7.2.0)
|
13
|
+
nio4r (~> 2.0)
|
14
|
+
websocket-driver (>= 0.6.1)
|
15
|
+
zeitwerk (~> 2.6)
|
16
|
+
actionmailbox (7.2.0)
|
17
|
+
actionpack (= 7.2.0)
|
18
|
+
activejob (= 7.2.0)
|
19
|
+
activerecord (= 7.2.0)
|
20
|
+
activestorage (= 7.2.0)
|
21
|
+
activesupport (= 7.2.0)
|
22
|
+
mail (>= 2.8.0)
|
23
|
+
actionmailer (7.2.0)
|
24
|
+
actionpack (= 7.2.0)
|
25
|
+
actionview (= 7.2.0)
|
26
|
+
activejob (= 7.2.0)
|
27
|
+
activesupport (= 7.2.0)
|
28
|
+
mail (>= 2.8.0)
|
29
|
+
rails-dom-testing (~> 2.2)
|
30
|
+
actionpack (7.2.0)
|
31
|
+
actionview (= 7.2.0)
|
32
|
+
activesupport (= 7.2.0)
|
33
|
+
nokogiri (>= 1.8.5)
|
34
|
+
racc
|
35
|
+
rack (>= 2.2.4, < 3.2)
|
36
|
+
rack-session (>= 1.0.1)
|
37
|
+
rack-test (>= 0.6.3)
|
38
|
+
rails-dom-testing (~> 2.2)
|
39
|
+
rails-html-sanitizer (~> 1.6)
|
40
|
+
useragent (~> 0.16)
|
41
|
+
actiontext (7.2.0)
|
42
|
+
actionpack (= 7.2.0)
|
43
|
+
activerecord (= 7.2.0)
|
44
|
+
activestorage (= 7.2.0)
|
45
|
+
activesupport (= 7.2.0)
|
46
|
+
globalid (>= 0.6.0)
|
47
|
+
nokogiri (>= 1.8.5)
|
48
|
+
actionview (7.2.0)
|
49
|
+
activesupport (= 7.2.0)
|
50
|
+
builder (~> 3.1)
|
51
|
+
erubi (~> 1.11)
|
52
|
+
rails-dom-testing (~> 2.2)
|
53
|
+
rails-html-sanitizer (~> 1.6)
|
54
|
+
activejob (7.2.0)
|
55
|
+
activesupport (= 7.2.0)
|
56
|
+
globalid (>= 0.3.6)
|
57
|
+
activemodel (7.2.0)
|
58
|
+
activesupport (= 7.2.0)
|
59
|
+
activerecord (7.2.0)
|
60
|
+
activemodel (= 7.2.0)
|
61
|
+
activesupport (= 7.2.0)
|
62
|
+
timeout (>= 0.4.0)
|
63
|
+
activestorage (7.2.0)
|
64
|
+
actionpack (= 7.2.0)
|
65
|
+
activejob (= 7.2.0)
|
66
|
+
activerecord (= 7.2.0)
|
67
|
+
activesupport (= 7.2.0)
|
68
|
+
marcel (~> 1.0)
|
69
|
+
activesupport (7.2.0)
|
70
|
+
base64
|
71
|
+
bigdecimal
|
72
|
+
concurrent-ruby (~> 1.0, >= 1.3.1)
|
73
|
+
connection_pool (>= 2.2.5)
|
74
|
+
drb
|
75
|
+
i18n (>= 1.6, < 2)
|
76
|
+
logger (>= 1.4.2)
|
77
|
+
minitest (>= 5.1)
|
78
|
+
securerandom (>= 0.3)
|
79
|
+
tzinfo (~> 2.0, >= 2.0.5)
|
80
|
+
ast (2.4.2)
|
81
|
+
base64 (0.2.0)
|
82
|
+
bigdecimal (3.1.8)
|
83
|
+
builder (3.3.0)
|
84
|
+
byebug (11.1.3)
|
85
|
+
combustion (1.5.0)
|
86
|
+
activesupport (>= 3.0.0)
|
87
|
+
railties (>= 3.0.0)
|
88
|
+
thor (>= 0.14.6)
|
89
|
+
concurrent-ruby (1.3.4)
|
90
|
+
connection_pool (2.4.1)
|
91
|
+
crass (1.0.6)
|
92
|
+
database_cleaner (2.0.2)
|
93
|
+
database_cleaner-active_record (>= 2, < 3)
|
94
|
+
database_cleaner-active_record (2.2.0)
|
95
|
+
activerecord (>= 5.a)
|
96
|
+
database_cleaner-core (~> 2.0.0)
|
97
|
+
database_cleaner-core (2.0.1)
|
98
|
+
date (3.3.4)
|
99
|
+
diff-lcs (1.5.1)
|
100
|
+
drb (2.2.1)
|
101
|
+
erubi (1.13.0)
|
102
|
+
gemika (0.8.3)
|
103
|
+
globalid (1.2.1)
|
104
|
+
activesupport (>= 6.1)
|
105
|
+
i18n (1.14.5)
|
106
|
+
concurrent-ruby (~> 1.0)
|
107
|
+
io-console (0.7.2)
|
108
|
+
irb (1.14.0)
|
109
|
+
rdoc (>= 4.0.0)
|
110
|
+
reline (>= 0.4.2)
|
111
|
+
json (2.7.2)
|
112
|
+
language_server-protocol (3.17.0.3)
|
113
|
+
logger (1.6.0)
|
114
|
+
loofah (2.22.0)
|
115
|
+
crass (~> 1.0.2)
|
116
|
+
nokogiri (>= 1.12.0)
|
117
|
+
mail (2.8.1)
|
118
|
+
mini_mime (>= 0.1.1)
|
119
|
+
net-imap
|
120
|
+
net-pop
|
121
|
+
net-smtp
|
122
|
+
marcel (1.0.4)
|
123
|
+
mini_mime (1.1.5)
|
124
|
+
minitest (5.24.1)
|
125
|
+
mysql2 (0.5.6)
|
126
|
+
net-imap (0.4.14)
|
127
|
+
date
|
128
|
+
net-protocol
|
129
|
+
net-pop (0.1.2)
|
130
|
+
net-protocol
|
131
|
+
net-protocol (0.2.2)
|
132
|
+
timeout
|
133
|
+
net-smtp (0.5.0)
|
134
|
+
net-protocol
|
135
|
+
nio4r (2.7.3)
|
136
|
+
nokogiri (1.16.7-aarch64-linux)
|
137
|
+
racc (~> 1.4)
|
138
|
+
nokogiri (1.16.7-arm-linux)
|
139
|
+
racc (~> 1.4)
|
140
|
+
nokogiri (1.16.7-arm64-darwin)
|
141
|
+
racc (~> 1.4)
|
142
|
+
nokogiri (1.16.7-x86-linux)
|
143
|
+
racc (~> 1.4)
|
144
|
+
nokogiri (1.16.7-x86_64-darwin)
|
145
|
+
racc (~> 1.4)
|
146
|
+
nokogiri (1.16.7-x86_64-linux)
|
147
|
+
racc (~> 1.4)
|
148
|
+
parallel (1.26.2)
|
149
|
+
parser (3.3.4.2)
|
150
|
+
ast (~> 2.4.1)
|
151
|
+
racc
|
152
|
+
psych (5.1.2)
|
153
|
+
stringio
|
154
|
+
racc (1.8.1)
|
155
|
+
rack (3.1.7)
|
156
|
+
rack-session (2.0.0)
|
157
|
+
rack (>= 3.0.0)
|
158
|
+
rack-test (2.1.0)
|
159
|
+
rack (>= 1.3)
|
160
|
+
rackup (2.1.0)
|
161
|
+
rack (>= 3)
|
162
|
+
webrick (~> 1.8)
|
163
|
+
rails (7.2.0)
|
164
|
+
actioncable (= 7.2.0)
|
165
|
+
actionmailbox (= 7.2.0)
|
166
|
+
actionmailer (= 7.2.0)
|
167
|
+
actionpack (= 7.2.0)
|
168
|
+
actiontext (= 7.2.0)
|
169
|
+
actionview (= 7.2.0)
|
170
|
+
activejob (= 7.2.0)
|
171
|
+
activemodel (= 7.2.0)
|
172
|
+
activerecord (= 7.2.0)
|
173
|
+
activestorage (= 7.2.0)
|
174
|
+
activesupport (= 7.2.0)
|
175
|
+
bundler (>= 1.15.0)
|
176
|
+
railties (= 7.2.0)
|
177
|
+
rails-dom-testing (2.2.0)
|
178
|
+
activesupport (>= 5.0.0)
|
179
|
+
minitest
|
180
|
+
nokogiri (>= 1.6)
|
181
|
+
rails-html-sanitizer (1.6.0)
|
182
|
+
loofah (~> 2.21)
|
183
|
+
nokogiri (~> 1.14)
|
184
|
+
railties (7.2.0)
|
185
|
+
actionpack (= 7.2.0)
|
186
|
+
activesupport (= 7.2.0)
|
187
|
+
irb (~> 1.13)
|
188
|
+
rackup (>= 1.0.0)
|
189
|
+
rake (>= 12.2)
|
190
|
+
thor (~> 1.0, >= 1.2.2)
|
191
|
+
zeitwerk (~> 2.6)
|
192
|
+
rainbow (3.1.1)
|
193
|
+
rake (13.2.1)
|
194
|
+
rdoc (6.7.0)
|
195
|
+
psych (>= 4.0.0)
|
196
|
+
regexp_parser (2.9.2)
|
197
|
+
reline (0.5.9)
|
198
|
+
io-console (~> 0.5)
|
199
|
+
rexml (3.3.5)
|
200
|
+
strscan
|
201
|
+
rspec (3.13.0)
|
202
|
+
rspec-core (~> 3.13.0)
|
203
|
+
rspec-expectations (~> 3.13.0)
|
204
|
+
rspec-mocks (~> 3.13.0)
|
205
|
+
rspec-core (3.13.0)
|
206
|
+
rspec-support (~> 3.13.0)
|
207
|
+
rspec-expectations (3.13.1)
|
208
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
209
|
+
rspec-support (~> 3.13.0)
|
210
|
+
rspec-mocks (3.13.1)
|
211
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
212
|
+
rspec-support (~> 3.13.0)
|
213
|
+
rspec-support (3.13.1)
|
214
|
+
rubocop (1.65.1)
|
215
|
+
json (~> 2.3)
|
216
|
+
language_server-protocol (>= 3.17.0)
|
217
|
+
parallel (~> 1.10)
|
218
|
+
parser (>= 3.3.0.2)
|
219
|
+
rainbow (>= 2.2.2, < 4.0)
|
220
|
+
regexp_parser (>= 2.4, < 3.0)
|
221
|
+
rexml (>= 3.2.5, < 4.0)
|
222
|
+
rubocop-ast (>= 1.31.1, < 2.0)
|
223
|
+
ruby-progressbar (~> 1.7)
|
224
|
+
unicode-display_width (>= 2.4.0, < 3.0)
|
225
|
+
rubocop-ast (1.32.0)
|
226
|
+
parser (>= 3.3.1.0)
|
227
|
+
rubocop-rails (2.25.1)
|
228
|
+
activesupport (>= 4.2.0)
|
229
|
+
rack (>= 1.1)
|
230
|
+
rubocop (>= 1.33.0, < 2.0)
|
231
|
+
rubocop-ast (>= 1.31.1, < 2.0)
|
232
|
+
rubocop-rspec (3.0.4)
|
233
|
+
rubocop (~> 1.61)
|
234
|
+
ruby-progressbar (1.13.0)
|
235
|
+
securerandom (0.3.1)
|
236
|
+
stringio (3.1.1)
|
237
|
+
strscan (3.1.0)
|
238
|
+
thor (1.3.1)
|
239
|
+
timeout (0.4.1)
|
240
|
+
tzinfo (2.0.6)
|
241
|
+
concurrent-ruby (~> 1.0)
|
242
|
+
unicode-display_width (2.5.0)
|
243
|
+
useragent (0.16.10)
|
244
|
+
webrick (1.8.1)
|
245
|
+
websocket-driver (0.7.6)
|
246
|
+
websocket-extensions (>= 0.1.0)
|
247
|
+
websocket-extensions (0.1.5)
|
248
|
+
zeitwerk (2.6.17)
|
249
|
+
|
250
|
+
PLATFORMS
|
251
|
+
aarch64-linux
|
252
|
+
arm-linux
|
253
|
+
arm64-darwin
|
254
|
+
x86-linux
|
255
|
+
x86_64-darwin
|
256
|
+
x86_64-linux
|
257
|
+
|
258
|
+
DEPENDENCIES
|
259
|
+
byebug
|
260
|
+
combustion
|
261
|
+
database_cleaner
|
262
|
+
gemika
|
263
|
+
mysql2
|
264
|
+
rails (~> 7.2.0)
|
265
|
+
rake
|
266
|
+
rspec (~> 3.4)
|
267
|
+
rubocop
|
268
|
+
rubocop-rails
|
269
|
+
rubocop-rspec
|
270
|
+
temporal_tables!
|
271
|
+
|
272
|
+
BUNDLED WITH
|
273
|
+
2.5.3
|
@@ -0,0 +1,19 @@
|
|
1
|
+
source 'https://rubygems.org'
|
2
|
+
|
3
|
+
# Runtime dependencies
|
4
|
+
gem 'rails', '~> 7.2.0'
|
5
|
+
gem 'pg', '>= 0.18', '< 2.0'
|
6
|
+
|
7
|
+
# Development dependencies
|
8
|
+
gem 'rspec', '~> 3.4'
|
9
|
+
gem 'rake'
|
10
|
+
gem 'byebug'
|
11
|
+
gem 'database_cleaner'
|
12
|
+
gem 'combustion'
|
13
|
+
gem 'gemika'
|
14
|
+
gem 'rubocop'
|
15
|
+
gem 'rubocop-rails'
|
16
|
+
gem 'rubocop-rspec'
|
17
|
+
|
18
|
+
# Gem under test
|
19
|
+
gem 'temporal_tables', :path => '..'
|
@@ -0,0 +1,273 @@
|
|
1
|
+
PATH
|
2
|
+
remote: ..
|
3
|
+
specs:
|
4
|
+
temporal_tables (3.0.1)
|
5
|
+
rails (>= 6.1, < 7.3)
|
6
|
+
|
7
|
+
GEM
|
8
|
+
remote: https://rubygems.org/
|
9
|
+
specs:
|
10
|
+
actioncable (7.2.0)
|
11
|
+
actionpack (= 7.2.0)
|
12
|
+
activesupport (= 7.2.0)
|
13
|
+
nio4r (~> 2.0)
|
14
|
+
websocket-driver (>= 0.6.1)
|
15
|
+
zeitwerk (~> 2.6)
|
16
|
+
actionmailbox (7.2.0)
|
17
|
+
actionpack (= 7.2.0)
|
18
|
+
activejob (= 7.2.0)
|
19
|
+
activerecord (= 7.2.0)
|
20
|
+
activestorage (= 7.2.0)
|
21
|
+
activesupport (= 7.2.0)
|
22
|
+
mail (>= 2.8.0)
|
23
|
+
actionmailer (7.2.0)
|
24
|
+
actionpack (= 7.2.0)
|
25
|
+
actionview (= 7.2.0)
|
26
|
+
activejob (= 7.2.0)
|
27
|
+
activesupport (= 7.2.0)
|
28
|
+
mail (>= 2.8.0)
|
29
|
+
rails-dom-testing (~> 2.2)
|
30
|
+
actionpack (7.2.0)
|
31
|
+
actionview (= 7.2.0)
|
32
|
+
activesupport (= 7.2.0)
|
33
|
+
nokogiri (>= 1.8.5)
|
34
|
+
racc
|
35
|
+
rack (>= 2.2.4, < 3.2)
|
36
|
+
rack-session (>= 1.0.1)
|
37
|
+
rack-test (>= 0.6.3)
|
38
|
+
rails-dom-testing (~> 2.2)
|
39
|
+
rails-html-sanitizer (~> 1.6)
|
40
|
+
useragent (~> 0.16)
|
41
|
+
actiontext (7.2.0)
|
42
|
+
actionpack (= 7.2.0)
|
43
|
+
activerecord (= 7.2.0)
|
44
|
+
activestorage (= 7.2.0)
|
45
|
+
activesupport (= 7.2.0)
|
46
|
+
globalid (>= 0.6.0)
|
47
|
+
nokogiri (>= 1.8.5)
|
48
|
+
actionview (7.2.0)
|
49
|
+
activesupport (= 7.2.0)
|
50
|
+
builder (~> 3.1)
|
51
|
+
erubi (~> 1.11)
|
52
|
+
rails-dom-testing (~> 2.2)
|
53
|
+
rails-html-sanitizer (~> 1.6)
|
54
|
+
activejob (7.2.0)
|
55
|
+
activesupport (= 7.2.0)
|
56
|
+
globalid (>= 0.3.6)
|
57
|
+
activemodel (7.2.0)
|
58
|
+
activesupport (= 7.2.0)
|
59
|
+
activerecord (7.2.0)
|
60
|
+
activemodel (= 7.2.0)
|
61
|
+
activesupport (= 7.2.0)
|
62
|
+
timeout (>= 0.4.0)
|
63
|
+
activestorage (7.2.0)
|
64
|
+
actionpack (= 7.2.0)
|
65
|
+
activejob (= 7.2.0)
|
66
|
+
activerecord (= 7.2.0)
|
67
|
+
activesupport (= 7.2.0)
|
68
|
+
marcel (~> 1.0)
|
69
|
+
activesupport (7.2.0)
|
70
|
+
base64
|
71
|
+
bigdecimal
|
72
|
+
concurrent-ruby (~> 1.0, >= 1.3.1)
|
73
|
+
connection_pool (>= 2.2.5)
|
74
|
+
drb
|
75
|
+
i18n (>= 1.6, < 2)
|
76
|
+
logger (>= 1.4.2)
|
77
|
+
minitest (>= 5.1)
|
78
|
+
securerandom (>= 0.3)
|
79
|
+
tzinfo (~> 2.0, >= 2.0.5)
|
80
|
+
ast (2.4.2)
|
81
|
+
base64 (0.2.0)
|
82
|
+
bigdecimal (3.1.8)
|
83
|
+
builder (3.3.0)
|
84
|
+
byebug (11.1.3)
|
85
|
+
combustion (1.5.0)
|
86
|
+
activesupport (>= 3.0.0)
|
87
|
+
railties (>= 3.0.0)
|
88
|
+
thor (>= 0.14.6)
|
89
|
+
concurrent-ruby (1.3.4)
|
90
|
+
connection_pool (2.4.1)
|
91
|
+
crass (1.0.6)
|
92
|
+
database_cleaner (2.0.2)
|
93
|
+
database_cleaner-active_record (>= 2, < 3)
|
94
|
+
database_cleaner-active_record (2.2.0)
|
95
|
+
activerecord (>= 5.a)
|
96
|
+
database_cleaner-core (~> 2.0.0)
|
97
|
+
database_cleaner-core (2.0.1)
|
98
|
+
date (3.3.4)
|
99
|
+
diff-lcs (1.5.1)
|
100
|
+
drb (2.2.1)
|
101
|
+
erubi (1.13.0)
|
102
|
+
gemika (0.8.3)
|
103
|
+
globalid (1.2.1)
|
104
|
+
activesupport (>= 6.1)
|
105
|
+
i18n (1.14.5)
|
106
|
+
concurrent-ruby (~> 1.0)
|
107
|
+
io-console (0.7.2)
|
108
|
+
irb (1.14.0)
|
109
|
+
rdoc (>= 4.0.0)
|
110
|
+
reline (>= 0.4.2)
|
111
|
+
json (2.7.2)
|
112
|
+
language_server-protocol (3.17.0.3)
|
113
|
+
logger (1.6.0)
|
114
|
+
loofah (2.22.0)
|
115
|
+
crass (~> 1.0.2)
|
116
|
+
nokogiri (>= 1.12.0)
|
117
|
+
mail (2.8.1)
|
118
|
+
mini_mime (>= 0.1.1)
|
119
|
+
net-imap
|
120
|
+
net-pop
|
121
|
+
net-smtp
|
122
|
+
marcel (1.0.4)
|
123
|
+
mini_mime (1.1.5)
|
124
|
+
minitest (5.24.1)
|
125
|
+
net-imap (0.4.14)
|
126
|
+
date
|
127
|
+
net-protocol
|
128
|
+
net-pop (0.1.2)
|
129
|
+
net-protocol
|
130
|
+
net-protocol (0.2.2)
|
131
|
+
timeout
|
132
|
+
net-smtp (0.5.0)
|
133
|
+
net-protocol
|
134
|
+
nio4r (2.7.3)
|
135
|
+
nokogiri (1.16.7-aarch64-linux)
|
136
|
+
racc (~> 1.4)
|
137
|
+
nokogiri (1.16.7-arm-linux)
|
138
|
+
racc (~> 1.4)
|
139
|
+
nokogiri (1.16.7-arm64-darwin)
|
140
|
+
racc (~> 1.4)
|
141
|
+
nokogiri (1.16.7-x86-linux)
|
142
|
+
racc (~> 1.4)
|
143
|
+
nokogiri (1.16.7-x86_64-darwin)
|
144
|
+
racc (~> 1.4)
|
145
|
+
nokogiri (1.16.7-x86_64-linux)
|
146
|
+
racc (~> 1.4)
|
147
|
+
parallel (1.26.2)
|
148
|
+
parser (3.3.4.2)
|
149
|
+
ast (~> 2.4.1)
|
150
|
+
racc
|
151
|
+
pg (1.5.7)
|
152
|
+
psych (5.1.2)
|
153
|
+
stringio
|
154
|
+
racc (1.8.1)
|
155
|
+
rack (3.1.7)
|
156
|
+
rack-session (2.0.0)
|
157
|
+
rack (>= 3.0.0)
|
158
|
+
rack-test (2.1.0)
|
159
|
+
rack (>= 1.3)
|
160
|
+
rackup (2.1.0)
|
161
|
+
rack (>= 3)
|
162
|
+
webrick (~> 1.8)
|
163
|
+
rails (7.2.0)
|
164
|
+
actioncable (= 7.2.0)
|
165
|
+
actionmailbox (= 7.2.0)
|
166
|
+
actionmailer (= 7.2.0)
|
167
|
+
actionpack (= 7.2.0)
|
168
|
+
actiontext (= 7.2.0)
|
169
|
+
actionview (= 7.2.0)
|
170
|
+
activejob (= 7.2.0)
|
171
|
+
activemodel (= 7.2.0)
|
172
|
+
activerecord (= 7.2.0)
|
173
|
+
activestorage (= 7.2.0)
|
174
|
+
activesupport (= 7.2.0)
|
175
|
+
bundler (>= 1.15.0)
|
176
|
+
railties (= 7.2.0)
|
177
|
+
rails-dom-testing (2.2.0)
|
178
|
+
activesupport (>= 5.0.0)
|
179
|
+
minitest
|
180
|
+
nokogiri (>= 1.6)
|
181
|
+
rails-html-sanitizer (1.6.0)
|
182
|
+
loofah (~> 2.21)
|
183
|
+
nokogiri (~> 1.14)
|
184
|
+
railties (7.2.0)
|
185
|
+
actionpack (= 7.2.0)
|
186
|
+
activesupport (= 7.2.0)
|
187
|
+
irb (~> 1.13)
|
188
|
+
rackup (>= 1.0.0)
|
189
|
+
rake (>= 12.2)
|
190
|
+
thor (~> 1.0, >= 1.2.2)
|
191
|
+
zeitwerk (~> 2.6)
|
192
|
+
rainbow (3.1.1)
|
193
|
+
rake (13.2.1)
|
194
|
+
rdoc (6.7.0)
|
195
|
+
psych (>= 4.0.0)
|
196
|
+
regexp_parser (2.9.2)
|
197
|
+
reline (0.5.9)
|
198
|
+
io-console (~> 0.5)
|
199
|
+
rexml (3.3.5)
|
200
|
+
strscan
|
201
|
+
rspec (3.13.0)
|
202
|
+
rspec-core (~> 3.13.0)
|
203
|
+
rspec-expectations (~> 3.13.0)
|
204
|
+
rspec-mocks (~> 3.13.0)
|
205
|
+
rspec-core (3.13.0)
|
206
|
+
rspec-support (~> 3.13.0)
|
207
|
+
rspec-expectations (3.13.1)
|
208
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
209
|
+
rspec-support (~> 3.13.0)
|
210
|
+
rspec-mocks (3.13.1)
|
211
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
212
|
+
rspec-support (~> 3.13.0)
|
213
|
+
rspec-support (3.13.1)
|
214
|
+
rubocop (1.65.1)
|
215
|
+
json (~> 2.3)
|
216
|
+
language_server-protocol (>= 3.17.0)
|
217
|
+
parallel (~> 1.10)
|
218
|
+
parser (>= 3.3.0.2)
|
219
|
+
rainbow (>= 2.2.2, < 4.0)
|
220
|
+
regexp_parser (>= 2.4, < 3.0)
|
221
|
+
rexml (>= 3.2.5, < 4.0)
|
222
|
+
rubocop-ast (>= 1.31.1, < 2.0)
|
223
|
+
ruby-progressbar (~> 1.7)
|
224
|
+
unicode-display_width (>= 2.4.0, < 3.0)
|
225
|
+
rubocop-ast (1.32.0)
|
226
|
+
parser (>= 3.3.1.0)
|
227
|
+
rubocop-rails (2.25.1)
|
228
|
+
activesupport (>= 4.2.0)
|
229
|
+
rack (>= 1.1)
|
230
|
+
rubocop (>= 1.33.0, < 2.0)
|
231
|
+
rubocop-ast (>= 1.31.1, < 2.0)
|
232
|
+
rubocop-rspec (3.0.4)
|
233
|
+
rubocop (~> 1.61)
|
234
|
+
ruby-progressbar (1.13.0)
|
235
|
+
securerandom (0.3.1)
|
236
|
+
stringio (3.1.1)
|
237
|
+
strscan (3.1.0)
|
238
|
+
thor (1.3.1)
|
239
|
+
timeout (0.4.1)
|
240
|
+
tzinfo (2.0.6)
|
241
|
+
concurrent-ruby (~> 1.0)
|
242
|
+
unicode-display_width (2.5.0)
|
243
|
+
useragent (0.16.10)
|
244
|
+
webrick (1.8.1)
|
245
|
+
websocket-driver (0.7.6)
|
246
|
+
websocket-extensions (>= 0.1.0)
|
247
|
+
websocket-extensions (0.1.5)
|
248
|
+
zeitwerk (2.6.17)
|
249
|
+
|
250
|
+
PLATFORMS
|
251
|
+
aarch64-linux
|
252
|
+
arm-linux
|
253
|
+
arm64-darwin
|
254
|
+
x86-linux
|
255
|
+
x86_64-darwin
|
256
|
+
x86_64-linux
|
257
|
+
|
258
|
+
DEPENDENCIES
|
259
|
+
byebug
|
260
|
+
combustion
|
261
|
+
database_cleaner
|
262
|
+
gemika
|
263
|
+
pg (>= 0.18, < 2.0)
|
264
|
+
rails (~> 7.2.0)
|
265
|
+
rake
|
266
|
+
rspec (~> 3.4)
|
267
|
+
rubocop
|
268
|
+
rubocop-rails
|
269
|
+
rubocop-rspec
|
270
|
+
temporal_tables!
|
271
|
+
|
272
|
+
BUNDLED WITH
|
273
|
+
2.5.3
|
@@ -7,6 +7,11 @@ module TemporalTables
|
|
7
7
|
execute "drop trigger #{table_name}_ai on #{table_name}"
|
8
8
|
execute "drop trigger #{table_name}_au on #{table_name}"
|
9
9
|
execute "drop trigger #{table_name}_ad on #{table_name}"
|
10
|
+
|
11
|
+
# remove functions that where created, too
|
12
|
+
execute "drop function #{table_name}_ai()"
|
13
|
+
execute "drop function #{table_name}_au()"
|
14
|
+
execute "drop function #{table_name}_ad()"
|
10
15
|
end
|
11
16
|
|
12
17
|
def create_temporal_triggers(table_name, primary_key) # rubocop:disable Metrics/MethodLength
|
@@ -33,13 +33,15 @@ module TemporalTables
|
|
33
33
|
|
34
34
|
def threadify_at
|
35
35
|
if at_value && !Thread.current[:at_time]
|
36
|
-
|
37
|
-
|
38
|
-
|
36
|
+
begin
|
37
|
+
Thread.current[:at_time] = at_value
|
38
|
+
yield
|
39
|
+
ensure
|
40
|
+
Thread.current[:at_time] = nil
|
41
|
+
end
|
39
42
|
else
|
40
|
-
|
43
|
+
yield
|
41
44
|
end
|
42
|
-
result
|
43
45
|
end
|
44
46
|
|
45
47
|
def limited_ids_for(*args)
|
@@ -39,7 +39,7 @@ module TemporalTables
|
|
39
39
|
t.datetime :eff_to, null: false, limit: 6, default: TemporalTables::END_OF_TIME
|
40
40
|
|
41
41
|
columns(table_name).each do |c|
|
42
|
-
column_options = { limit: c.limit }
|
42
|
+
column_options = { limit: c.limit, array: c.try(:array) }.compact
|
43
43
|
column_type = c.type
|
44
44
|
if column_type == :enum
|
45
45
|
enum_type = c.sql_type_metadata.sql_type
|
@@ -74,7 +74,7 @@ module TemporalTables
|
|
74
74
|
return unless table_exists?(temporal_name(table_name))
|
75
75
|
|
76
76
|
drop_temporal_triggers table_name
|
77
|
-
|
77
|
+
drop_table temporal_name(table_name)
|
78
78
|
end
|
79
79
|
|
80
80
|
def drop_table(table_name, **options)
|
@@ -172,7 +172,9 @@ module TemporalTables
|
|
172
172
|
# exclude unique constraints for temporal tables
|
173
173
|
name: index_name,
|
174
174
|
length: index.lengths,
|
175
|
-
order: index.orders
|
175
|
+
order: index.orders,
|
176
|
+
using: index.using,
|
177
|
+
opclass: index.opclasses
|
176
178
|
)
|
177
179
|
end
|
178
180
|
end
|
@@ -59,6 +59,9 @@ module TemporalTables
|
|
59
59
|
type_name += 'History' unless type_name =~ /History\Z/
|
60
60
|
|
61
61
|
begin
|
62
|
+
# Calling .history makes sure history class is created
|
63
|
+
type_name.sub(/History$/, '').constantize.history
|
64
|
+
|
62
65
|
super
|
63
66
|
rescue ActiveRecord::SubclassNotFound
|
64
67
|
superclass.send(:find_sti_class, type_name)
|
data/spec/basic_history_spec.rb
CHANGED
@@ -62,6 +62,15 @@ describe Person do
|
|
62
62
|
end
|
63
63
|
end
|
64
64
|
|
65
|
+
describe 'creating a join query' do
|
66
|
+
it 'correctly joins even after generating sql has failed before' do
|
67
|
+
expect { Person.history.at(100.years.ago).joins(:warts).where(x: proc {}).to_sql }.to raise_error(TypeError)
|
68
|
+
|
69
|
+
# it still fetches the history correctly
|
70
|
+
expect(Person.history.at(Time.current).joins(:warts)).to be_present
|
71
|
+
end
|
72
|
+
end
|
73
|
+
|
65
74
|
describe 'when preloading associations' do
|
66
75
|
let(:orig_emily) { emily.history.at(@init_time).preload(:warts).first }
|
67
76
|
|
@@ -147,6 +156,13 @@ describe Person do
|
|
147
156
|
end
|
148
157
|
end
|
149
158
|
|
159
|
+
describe 'when working with STI and using superclass history' do
|
160
|
+
it 'allows to fetch history entry of subclass history' do
|
161
|
+
Broom.create person: emily, model: 'Cackler 2000'
|
162
|
+
expect(FlyingMachine.history.last.class.name).to eql('BroomHistory')
|
163
|
+
end
|
164
|
+
end
|
165
|
+
|
150
166
|
describe 'when working with STI one level deep' do
|
151
167
|
let!(:broom) { Broom.create person: emily, model: 'Cackler 2000' }
|
152
168
|
|
@@ -191,6 +207,22 @@ describe Person do
|
|
191
207
|
end
|
192
208
|
end
|
193
209
|
|
210
|
+
if TemporalTables::DatabaseAdapter.adapter_name != 'mysql'
|
211
|
+
describe 'when changing a creature with an array column' do
|
212
|
+
let!(:cat) { Cat.create name: 'Mr. Mittens', nicknames: %w[Blacky Kitty] }
|
213
|
+
|
214
|
+
before do
|
215
|
+
cat.update nicknames: %w[Cutie Mizie]
|
216
|
+
end
|
217
|
+
|
218
|
+
it 'show nicknames correctly' do
|
219
|
+
expect(cat.nicknames).to eq(%w[Cutie Mizie])
|
220
|
+
expect(cat.history.last.nicknames).to eq(%w[Cutie Mizie])
|
221
|
+
expect(cat.history.first.nicknames).to eq(%w[Blacky Kitty])
|
222
|
+
end
|
223
|
+
end
|
224
|
+
end
|
225
|
+
|
194
226
|
# The following tests PKs with names other than "id"
|
195
227
|
describe 'when spawning and renaming a creature with PK not named id' do
|
196
228
|
let!(:dog) { Dog.create name: 'Fido' }
|
data/spec/internal/db/schema.rb
CHANGED
@@ -9,6 +9,7 @@ end
|
|
9
9
|
ActiveRecord::Schema.define do
|
10
10
|
if postgres
|
11
11
|
enable_extension 'pgcrypto'
|
12
|
+
enable_extension 'pg_trgm'
|
12
13
|
execute <<-SQL
|
13
14
|
CREATE TYPE cat_breed AS ENUM ('ragdoll', 'persian', 'sphynx');
|
14
15
|
SQL
|
@@ -42,6 +43,7 @@ ActiveRecord::Schema.define do
|
|
42
43
|
t.string :name
|
43
44
|
t.string :color
|
44
45
|
t.column :breed, (postgres ? :cat_breed : :string), null: false, default: 'ragdoll'
|
46
|
+
t.string :nicknames, array: true if postgres
|
45
47
|
end
|
46
48
|
|
47
49
|
create_table :cat_lives, id: (postgres ? :uuid : :integer), temporal: true do |t|
|
@@ -74,6 +76,8 @@ ActiveRecord::Schema.define do
|
|
74
76
|
create_table :hamsters, id: false do |t|
|
75
77
|
t.column :uuid, :uuid, default: 'gen_random_uuid()'
|
76
78
|
t.string :name
|
79
|
+
t.index "((uuid)::text || ' '::text || (name)::text) gin_trgm_ops",
|
80
|
+
name: :uuid_name_index_with_opclass_and_using, opclass: :gin_trgm_ops, using: :gin
|
77
81
|
end
|
78
82
|
execute 'ALTER TABLE hamsters ADD PRIMARY KEY (uuid);'
|
79
83
|
add_temporal_table :hamsters
|
data/spec/support/database.rb
CHANGED
@@ -1,13 +1,43 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
3
|
+
def adapter_name
|
4
|
+
if Gemika::Env.gem?('pg')
|
5
|
+
'postgresql'
|
6
|
+
elsif Gemika::Env.gem?('mysql2')
|
7
|
+
'mysql'
|
8
|
+
else
|
9
|
+
raise 'Cannot determine adapter'
|
10
|
+
end
|
11
|
+
end
|
12
|
+
|
13
|
+
def table_exists?(name)
|
14
|
+
ActiveRecord::Base.connection.table_exists?(name)
|
15
|
+
end
|
16
|
+
|
17
|
+
def function_exists?(name)
|
18
|
+
case adapter_name
|
19
|
+
when 'postgresql'
|
20
|
+
begin
|
21
|
+
ActiveRecord::Base.connection.execute("select(pg_get_functiondef('#{name}'::regprocedure))").present?
|
22
|
+
rescue ActiveRecord::StatementInvalid
|
23
|
+
false
|
11
24
|
end
|
25
|
+
when 'mysql' then raise NotImplementedError
|
26
|
+
else raise "Unknown adapter #{adapter_name}"
|
27
|
+
end
|
28
|
+
end
|
29
|
+
|
30
|
+
def trigger_exists?(name) # rubocop:disable Metrics/MethodLength
|
31
|
+
case adapter_name
|
32
|
+
when 'postgresql'
|
33
|
+
ActiveRecord::Base.connection.execute(
|
34
|
+
"select (pg_get_triggerdef(oid)) FROM pg_trigger WHERE tgname = '#{name}'"
|
35
|
+
).first.present?
|
36
|
+
when 'mysql'
|
37
|
+
ActiveRecord::Base.connection.execute(
|
38
|
+
'SHOW TRIGGERS FROM temporal_tables_test'
|
39
|
+
).find { |row| row.first == name }.present?
|
40
|
+
else
|
41
|
+
raise "Unknown adapter #{adapter_name}"
|
12
42
|
end
|
13
43
|
end
|
@@ -0,0 +1,32 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require 'spec_helper'
|
4
|
+
|
5
|
+
describe TemporalTables::TemporalAdapter do
|
6
|
+
describe '#remove_temporal_table' do
|
7
|
+
it 'correctly removes history table, functions and triggers' do
|
8
|
+
skip 'mysql has no functions' if adapter_name == 'mysql'
|
9
|
+
|
10
|
+
expect do
|
11
|
+
ActiveRecord::Schema.define { remove_temporal_table :people }
|
12
|
+
end.to change { table_exists?('people_h') }.from(true).to(false)
|
13
|
+
.and change { function_exists?('people_ai()') }.from(true).to(false)
|
14
|
+
.and change { function_exists?('people_au()') }.from(true).to(false)
|
15
|
+
.and change { function_exists?('people_ad()') }.from(true).to(false)
|
16
|
+
.and change { trigger_exists?('people_ai') }.from(true).to(false)
|
17
|
+
.and change { trigger_exists?('people_au') }.from(true).to(false)
|
18
|
+
.and change { trigger_exists?('people_ad') }.from(true).to(false)
|
19
|
+
end
|
20
|
+
|
21
|
+
it 'correctly removes history table and triggers' do
|
22
|
+
skip 'other adapters than mysql have functions, too' if adapter_name != 'mysql'
|
23
|
+
|
24
|
+
expect do
|
25
|
+
ActiveRecord::Schema.define { remove_temporal_table :people }
|
26
|
+
end.to change { table_exists?('people_h') }.from(true).to(false)
|
27
|
+
.and change { trigger_exists?('people_ai') }.from(true).to(false)
|
28
|
+
.and change { trigger_exists?('people_au') }.from(true).to(false)
|
29
|
+
.and change { trigger_exists?('people_ad') }.from(true).to(false)
|
30
|
+
end
|
31
|
+
end
|
32
|
+
end
|
data/temporal_tables.gemspec
CHANGED
@@ -24,7 +24,7 @@ Gem::Specification.new do |gem|
|
|
24
24
|
gem.required_ruby_version = '>= 3.0.0'
|
25
25
|
gem.metadata = { 'rubygems_mfa_required' => 'true' }
|
26
26
|
|
27
|
-
gem.add_dependency 'rails', '>= 6.1', '< 7.
|
27
|
+
gem.add_dependency 'rails', '>= 6.1', '< 7.3'
|
28
28
|
gem.add_development_dependency 'combustion', '~> 1'
|
29
29
|
gem.add_development_dependency 'database_cleaner'
|
30
30
|
gem.add_development_dependency 'gemika', '~> 0.8'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: temporal_tables
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Brent Kroeker
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-10-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '6.1'
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: '7.
|
22
|
+
version: '7.3'
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '6.1'
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: '7.
|
32
|
+
version: '7.3'
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: combustion
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -201,6 +201,10 @@ files:
|
|
201
201
|
- gemfiles/Gemfile.7.1.mysql.lock
|
202
202
|
- gemfiles/Gemfile.7.1.pg
|
203
203
|
- gemfiles/Gemfile.7.1.pg.lock
|
204
|
+
- gemfiles/Gemfile.7.2.mysql
|
205
|
+
- gemfiles/Gemfile.7.2.mysql.lock
|
206
|
+
- gemfiles/Gemfile.7.2.pg
|
207
|
+
- gemfiles/Gemfile.7.2.pg.lock
|
204
208
|
- lib/temporal_tables.rb
|
205
209
|
- lib/temporal_tables/arel_table.rb
|
206
210
|
- lib/temporal_tables/association_extensions.rb
|
@@ -236,12 +240,13 @@ files:
|
|
236
240
|
- spec/internal/public/favicon.ico
|
237
241
|
- spec/spec_helper.rb
|
238
242
|
- spec/support/database.rb
|
243
|
+
- spec/temporal_tables/temporal_adapter_spec.rb
|
239
244
|
- temporal_tables.gemspec
|
240
245
|
homepage: ''
|
241
246
|
licenses: []
|
242
247
|
metadata:
|
243
248
|
rubygems_mfa_required: 'true'
|
244
|
-
post_install_message:
|
249
|
+
post_install_message:
|
245
250
|
rdoc_options: []
|
246
251
|
require_paths:
|
247
252
|
- lib
|
@@ -256,8 +261,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
256
261
|
- !ruby/object:Gem::Version
|
257
262
|
version: '0'
|
258
263
|
requirements: []
|
259
|
-
rubygems_version: 3.
|
260
|
-
signing_key:
|
264
|
+
rubygems_version: 3.5.3
|
265
|
+
signing_key:
|
261
266
|
specification_version: 4
|
262
267
|
summary: Tracks all history of changes to a table automatically in a history table.
|
263
268
|
test_files:
|
@@ -282,3 +287,4 @@ test_files:
|
|
282
287
|
- spec/internal/public/favicon.ico
|
283
288
|
- spec/spec_helper.rb
|
284
289
|
- spec/support/database.rb
|
290
|
+
- spec/temporal_tables/temporal_adapter_spec.rb
|