active_record-union_relation 0.1.0 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,31 +1,41 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require_relative 'lib/active_record/union_relation/version'
3
+ require_relative "lib/active_record/union_relation/version"
4
+
5
+ version = ActiveRecord::UnionRelation::VERSION
6
+ repository = "https://github.com/kddnewton/active_record-union_relation"
4
7
 
5
8
  Gem::Specification.new do |spec|
6
- spec.name = 'active_record-union_relation'
7
- spec.version = ActiveRecord::UnionRelation::VERSION
8
- spec.authors = ['Kevin Deisz']
9
- spec.email = ['kevin.deisz@gmail.com']
10
-
11
- spec.summary = 'Create ActiveRecord relations from UNIONs'
12
- spec.homepage = 'https://github.com/kddeisz/active_record-union_relation'
13
- spec.license = 'MIT'
14
-
15
- spec.files = Dir.chdir(__dir__) do
16
- `git ls-files -z`.split("\x0").reject do |f|
17
- f.match(%r{^(test|spec|features)/})
9
+ spec.name = "active_record-union_relation"
10
+ spec.version = version
11
+ spec.authors = ["Kevin Newton"]
12
+ spec.email = ["kddnewton@gmail.com"]
13
+
14
+ spec.summary = "Create ActiveRecord relations from UNIONs"
15
+ spec.homepage = repository
16
+ spec.license = "MIT"
17
+
18
+ spec.metadata = {
19
+ "bug_tracker_uri" => "#{repository}/issues",
20
+ "changelog_uri" => "#{repository}/blob/v#{version}/CHANGELOG.md",
21
+ "source_code_uri" => repository,
22
+ "rubygems_mfa_required" => "true"
23
+ }
24
+
25
+ spec.files =
26
+ Dir.chdir(__dir__) do
27
+ `git ls-files -z`.split("\x0")
28
+ .reject { |f| f.match(%r{^(test|spec|features)/}) }
18
29
  end
19
- end
20
30
 
21
- spec.bindir = 'exe'
22
- spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
23
- spec.require_paths = ['lib']
31
+ spec.bindir = "exe"
32
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
33
+ spec.require_paths = ["lib"]
24
34
 
25
- spec.add_dependency 'activerecord', '>= 6'
35
+ spec.add_dependency "activerecord", ">= 6"
26
36
 
27
- spec.add_development_dependency 'minitest', '~> 5.14'
28
- spec.add_development_dependency 'pg', '~> 1.2'
29
- spec.add_development_dependency 'rails', '~> 6.0'
30
- spec.add_development_dependency 'rake', '~> 13.0'
37
+ spec.add_development_dependency "minitest"
38
+ spec.add_development_dependency "rails"
39
+ spec.add_development_dependency "rake"
40
+ spec.add_development_dependency "syntax_tree"
31
41
  end
@@ -0,0 +1,7 @@
1
+ # frozen_string_literal: true
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gemspec path: "../.."
6
+
7
+ gem "mysql2"
@@ -0,0 +1,202 @@
1
+ PATH
2
+ remote: ../..
3
+ specs:
4
+ active_record-union_relation (0.2.0)
5
+ activerecord (>= 6)
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ actioncable (7.1.3)
11
+ actionpack (= 7.1.3)
12
+ activesupport (= 7.1.3)
13
+ nio4r (~> 2.0)
14
+ websocket-driver (>= 0.6.1)
15
+ zeitwerk (~> 2.6)
16
+ actionmailbox (7.1.3)
17
+ actionpack (= 7.1.3)
18
+ activejob (= 7.1.3)
19
+ activerecord (= 7.1.3)
20
+ activestorage (= 7.1.3)
21
+ activesupport (= 7.1.3)
22
+ mail (>= 2.7.1)
23
+ net-imap
24
+ net-pop
25
+ net-smtp
26
+ actionmailer (7.1.3)
27
+ actionpack (= 7.1.3)
28
+ actionview (= 7.1.3)
29
+ activejob (= 7.1.3)
30
+ activesupport (= 7.1.3)
31
+ mail (~> 2.5, >= 2.5.4)
32
+ net-imap
33
+ net-pop
34
+ net-smtp
35
+ rails-dom-testing (~> 2.2)
36
+ actionpack (7.1.3)
37
+ actionview (= 7.1.3)
38
+ activesupport (= 7.1.3)
39
+ nokogiri (>= 1.8.5)
40
+ racc
41
+ rack (>= 2.2.4)
42
+ rack-session (>= 1.0.1)
43
+ rack-test (>= 0.6.3)
44
+ rails-dom-testing (~> 2.2)
45
+ rails-html-sanitizer (~> 1.6)
46
+ actiontext (7.1.3)
47
+ actionpack (= 7.1.3)
48
+ activerecord (= 7.1.3)
49
+ activestorage (= 7.1.3)
50
+ activesupport (= 7.1.3)
51
+ globalid (>= 0.6.0)
52
+ nokogiri (>= 1.8.5)
53
+ actionview (7.1.3)
54
+ activesupport (= 7.1.3)
55
+ builder (~> 3.1)
56
+ erubi (~> 1.11)
57
+ rails-dom-testing (~> 2.2)
58
+ rails-html-sanitizer (~> 1.6)
59
+ activejob (7.1.3)
60
+ activesupport (= 7.1.3)
61
+ globalid (>= 0.3.6)
62
+ activemodel (7.1.3)
63
+ activesupport (= 7.1.3)
64
+ activerecord (7.1.3)
65
+ activemodel (= 7.1.3)
66
+ activesupport (= 7.1.3)
67
+ timeout (>= 0.4.0)
68
+ activestorage (7.1.3)
69
+ actionpack (= 7.1.3)
70
+ activejob (= 7.1.3)
71
+ activerecord (= 7.1.3)
72
+ activesupport (= 7.1.3)
73
+ marcel (~> 1.0)
74
+ activesupport (7.1.3)
75
+ base64
76
+ bigdecimal
77
+ concurrent-ruby (~> 1.0, >= 1.0.2)
78
+ connection_pool (>= 2.2.5)
79
+ drb
80
+ i18n (>= 1.6, < 2)
81
+ minitest (>= 5.1)
82
+ mutex_m
83
+ tzinfo (~> 2.0)
84
+ base64 (0.2.0)
85
+ bigdecimal (3.1.6)
86
+ builder (3.2.4)
87
+ concurrent-ruby (1.2.3)
88
+ connection_pool (2.4.1)
89
+ crass (1.0.6)
90
+ date (3.3.4)
91
+ drb (2.2.0)
92
+ ruby2_keywords
93
+ erubi (1.12.0)
94
+ globalid (1.2.1)
95
+ activesupport (>= 6.1)
96
+ i18n (1.14.1)
97
+ concurrent-ruby (~> 1.0)
98
+ io-console (0.7.2)
99
+ irb (1.11.2)
100
+ rdoc
101
+ reline (>= 0.4.2)
102
+ loofah (2.22.0)
103
+ crass (~> 1.0.2)
104
+ nokogiri (>= 1.12.0)
105
+ mail (2.8.1)
106
+ mini_mime (>= 0.1.1)
107
+ net-imap
108
+ net-pop
109
+ net-smtp
110
+ marcel (1.0.2)
111
+ mini_mime (1.1.5)
112
+ minitest (5.22.2)
113
+ mutex_m (0.2.0)
114
+ mysql2 (0.5.6)
115
+ net-imap (0.4.10)
116
+ date
117
+ net-protocol
118
+ net-pop (0.1.2)
119
+ net-protocol
120
+ net-protocol (0.2.2)
121
+ timeout
122
+ net-smtp (0.4.0.1)
123
+ net-protocol
124
+ nio4r (2.7.0)
125
+ nokogiri (1.16.2-arm64-darwin)
126
+ racc (~> 1.4)
127
+ nokogiri (1.16.2-x86_64-linux)
128
+ racc (~> 1.4)
129
+ prettier_print (1.2.1)
130
+ psych (5.1.2)
131
+ stringio
132
+ racc (1.7.3)
133
+ rack (3.0.9)
134
+ rack-session (2.0.0)
135
+ rack (>= 3.0.0)
136
+ rack-test (2.1.0)
137
+ rack (>= 1.3)
138
+ rackup (2.1.0)
139
+ rack (>= 3)
140
+ webrick (~> 1.8)
141
+ rails (7.1.3)
142
+ actioncable (= 7.1.3)
143
+ actionmailbox (= 7.1.3)
144
+ actionmailer (= 7.1.3)
145
+ actionpack (= 7.1.3)
146
+ actiontext (= 7.1.3)
147
+ actionview (= 7.1.3)
148
+ activejob (= 7.1.3)
149
+ activemodel (= 7.1.3)
150
+ activerecord (= 7.1.3)
151
+ activestorage (= 7.1.3)
152
+ activesupport (= 7.1.3)
153
+ bundler (>= 1.15.0)
154
+ railties (= 7.1.3)
155
+ rails-dom-testing (2.2.0)
156
+ activesupport (>= 5.0.0)
157
+ minitest
158
+ nokogiri (>= 1.6)
159
+ rails-html-sanitizer (1.6.0)
160
+ loofah (~> 2.21)
161
+ nokogiri (~> 1.14)
162
+ railties (7.1.3)
163
+ actionpack (= 7.1.3)
164
+ activesupport (= 7.1.3)
165
+ irb
166
+ rackup (>= 1.0.0)
167
+ rake (>= 12.2)
168
+ thor (~> 1.0, >= 1.2.2)
169
+ zeitwerk (~> 2.6)
170
+ rake (13.1.0)
171
+ rdoc (6.6.2)
172
+ psych (>= 4.0.0)
173
+ reline (0.4.2)
174
+ io-console (~> 0.5)
175
+ ruby2_keywords (0.0.5)
176
+ stringio (3.1.0)
177
+ syntax_tree (6.2.0)
178
+ prettier_print (>= 1.2.0)
179
+ thor (1.3.0)
180
+ timeout (0.4.1)
181
+ tzinfo (2.0.6)
182
+ concurrent-ruby (~> 1.0)
183
+ webrick (1.8.1)
184
+ websocket-driver (0.7.6)
185
+ websocket-extensions (>= 0.1.0)
186
+ websocket-extensions (0.1.5)
187
+ zeitwerk (2.6.13)
188
+
189
+ PLATFORMS
190
+ arm64-darwin-22
191
+ x86_64-linux
192
+
193
+ DEPENDENCIES
194
+ active_record-union_relation!
195
+ minitest
196
+ mysql2
197
+ rails
198
+ rake
199
+ syntax_tree
200
+
201
+ BUNDLED WITH
202
+ 2.4.13
@@ -0,0 +1,7 @@
1
+ # frozen_string_literal: true
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gemspec path: "../.."
6
+
7
+ gem "pg"
@@ -0,0 +1,202 @@
1
+ PATH
2
+ remote: ../..
3
+ specs:
4
+ active_record-union_relation (0.2.0)
5
+ activerecord (>= 6)
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ actioncable (7.1.3)
11
+ actionpack (= 7.1.3)
12
+ activesupport (= 7.1.3)
13
+ nio4r (~> 2.0)
14
+ websocket-driver (>= 0.6.1)
15
+ zeitwerk (~> 2.6)
16
+ actionmailbox (7.1.3)
17
+ actionpack (= 7.1.3)
18
+ activejob (= 7.1.3)
19
+ activerecord (= 7.1.3)
20
+ activestorage (= 7.1.3)
21
+ activesupport (= 7.1.3)
22
+ mail (>= 2.7.1)
23
+ net-imap
24
+ net-pop
25
+ net-smtp
26
+ actionmailer (7.1.3)
27
+ actionpack (= 7.1.3)
28
+ actionview (= 7.1.3)
29
+ activejob (= 7.1.3)
30
+ activesupport (= 7.1.3)
31
+ mail (~> 2.5, >= 2.5.4)
32
+ net-imap
33
+ net-pop
34
+ net-smtp
35
+ rails-dom-testing (~> 2.2)
36
+ actionpack (7.1.3)
37
+ actionview (= 7.1.3)
38
+ activesupport (= 7.1.3)
39
+ nokogiri (>= 1.8.5)
40
+ racc
41
+ rack (>= 2.2.4)
42
+ rack-session (>= 1.0.1)
43
+ rack-test (>= 0.6.3)
44
+ rails-dom-testing (~> 2.2)
45
+ rails-html-sanitizer (~> 1.6)
46
+ actiontext (7.1.3)
47
+ actionpack (= 7.1.3)
48
+ activerecord (= 7.1.3)
49
+ activestorage (= 7.1.3)
50
+ activesupport (= 7.1.3)
51
+ globalid (>= 0.6.0)
52
+ nokogiri (>= 1.8.5)
53
+ actionview (7.1.3)
54
+ activesupport (= 7.1.3)
55
+ builder (~> 3.1)
56
+ erubi (~> 1.11)
57
+ rails-dom-testing (~> 2.2)
58
+ rails-html-sanitizer (~> 1.6)
59
+ activejob (7.1.3)
60
+ activesupport (= 7.1.3)
61
+ globalid (>= 0.3.6)
62
+ activemodel (7.1.3)
63
+ activesupport (= 7.1.3)
64
+ activerecord (7.1.3)
65
+ activemodel (= 7.1.3)
66
+ activesupport (= 7.1.3)
67
+ timeout (>= 0.4.0)
68
+ activestorage (7.1.3)
69
+ actionpack (= 7.1.3)
70
+ activejob (= 7.1.3)
71
+ activerecord (= 7.1.3)
72
+ activesupport (= 7.1.3)
73
+ marcel (~> 1.0)
74
+ activesupport (7.1.3)
75
+ base64
76
+ bigdecimal
77
+ concurrent-ruby (~> 1.0, >= 1.0.2)
78
+ connection_pool (>= 2.2.5)
79
+ drb
80
+ i18n (>= 1.6, < 2)
81
+ minitest (>= 5.1)
82
+ mutex_m
83
+ tzinfo (~> 2.0)
84
+ base64 (0.2.0)
85
+ bigdecimal (3.1.6)
86
+ builder (3.2.4)
87
+ concurrent-ruby (1.2.3)
88
+ connection_pool (2.4.1)
89
+ crass (1.0.6)
90
+ date (3.3.4)
91
+ drb (2.2.0)
92
+ ruby2_keywords
93
+ erubi (1.12.0)
94
+ globalid (1.2.1)
95
+ activesupport (>= 6.1)
96
+ i18n (1.14.1)
97
+ concurrent-ruby (~> 1.0)
98
+ io-console (0.7.2)
99
+ irb (1.11.2)
100
+ rdoc
101
+ reline (>= 0.4.2)
102
+ loofah (2.22.0)
103
+ crass (~> 1.0.2)
104
+ nokogiri (>= 1.12.0)
105
+ mail (2.8.1)
106
+ mini_mime (>= 0.1.1)
107
+ net-imap
108
+ net-pop
109
+ net-smtp
110
+ marcel (1.0.2)
111
+ mini_mime (1.1.5)
112
+ minitest (5.22.2)
113
+ mutex_m (0.2.0)
114
+ net-imap (0.4.10)
115
+ date
116
+ net-protocol
117
+ net-pop (0.1.2)
118
+ net-protocol
119
+ net-protocol (0.2.2)
120
+ timeout
121
+ net-smtp (0.4.0.1)
122
+ net-protocol
123
+ nio4r (2.7.0)
124
+ nokogiri (1.16.2-arm64-darwin)
125
+ racc (~> 1.4)
126
+ nokogiri (1.16.2-x86_64-linux)
127
+ racc (~> 1.4)
128
+ pg (1.5.4)
129
+ prettier_print (1.2.1)
130
+ psych (5.1.2)
131
+ stringio
132
+ racc (1.7.3)
133
+ rack (3.0.9)
134
+ rack-session (2.0.0)
135
+ rack (>= 3.0.0)
136
+ rack-test (2.1.0)
137
+ rack (>= 1.3)
138
+ rackup (2.1.0)
139
+ rack (>= 3)
140
+ webrick (~> 1.8)
141
+ rails (7.1.3)
142
+ actioncable (= 7.1.3)
143
+ actionmailbox (= 7.1.3)
144
+ actionmailer (= 7.1.3)
145
+ actionpack (= 7.1.3)
146
+ actiontext (= 7.1.3)
147
+ actionview (= 7.1.3)
148
+ activejob (= 7.1.3)
149
+ activemodel (= 7.1.3)
150
+ activerecord (= 7.1.3)
151
+ activestorage (= 7.1.3)
152
+ activesupport (= 7.1.3)
153
+ bundler (>= 1.15.0)
154
+ railties (= 7.1.3)
155
+ rails-dom-testing (2.2.0)
156
+ activesupport (>= 5.0.0)
157
+ minitest
158
+ nokogiri (>= 1.6)
159
+ rails-html-sanitizer (1.6.0)
160
+ loofah (~> 2.21)
161
+ nokogiri (~> 1.14)
162
+ railties (7.1.3)
163
+ actionpack (= 7.1.3)
164
+ activesupport (= 7.1.3)
165
+ irb
166
+ rackup (>= 1.0.0)
167
+ rake (>= 12.2)
168
+ thor (~> 1.0, >= 1.2.2)
169
+ zeitwerk (~> 2.6)
170
+ rake (13.1.0)
171
+ rdoc (6.6.2)
172
+ psych (>= 4.0.0)
173
+ reline (0.4.2)
174
+ io-console (~> 0.5)
175
+ ruby2_keywords (0.0.5)
176
+ stringio (3.1.0)
177
+ syntax_tree (6.2.0)
178
+ prettier_print (>= 1.2.0)
179
+ thor (1.3.0)
180
+ timeout (0.4.1)
181
+ tzinfo (2.0.6)
182
+ concurrent-ruby (~> 1.0)
183
+ webrick (1.8.1)
184
+ websocket-driver (0.7.6)
185
+ websocket-extensions (>= 0.1.0)
186
+ websocket-extensions (0.1.5)
187
+ zeitwerk (2.6.13)
188
+
189
+ PLATFORMS
190
+ arm64-darwin-22
191
+ x86_64-linux
192
+
193
+ DEPENDENCIES
194
+ active_record-union_relation!
195
+ minitest
196
+ pg
197
+ rails
198
+ rake
199
+ syntax_tree
200
+
201
+ BUNDLED WITH
202
+ 2.4.13
@@ -0,0 +1,7 @@
1
+ # frozen_string_literal: true
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gemspec path: "../.."
6
+
7
+ gem "sqlite3"
@@ -0,0 +1,203 @@
1
+ PATH
2
+ remote: ../..
3
+ specs:
4
+ active_record-union_relation (0.2.0)
5
+ activerecord (>= 6)
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ actioncable (7.1.3)
11
+ actionpack (= 7.1.3)
12
+ activesupport (= 7.1.3)
13
+ nio4r (~> 2.0)
14
+ websocket-driver (>= 0.6.1)
15
+ zeitwerk (~> 2.6)
16
+ actionmailbox (7.1.3)
17
+ actionpack (= 7.1.3)
18
+ activejob (= 7.1.3)
19
+ activerecord (= 7.1.3)
20
+ activestorage (= 7.1.3)
21
+ activesupport (= 7.1.3)
22
+ mail (>= 2.7.1)
23
+ net-imap
24
+ net-pop
25
+ net-smtp
26
+ actionmailer (7.1.3)
27
+ actionpack (= 7.1.3)
28
+ actionview (= 7.1.3)
29
+ activejob (= 7.1.3)
30
+ activesupport (= 7.1.3)
31
+ mail (~> 2.5, >= 2.5.4)
32
+ net-imap
33
+ net-pop
34
+ net-smtp
35
+ rails-dom-testing (~> 2.2)
36
+ actionpack (7.1.3)
37
+ actionview (= 7.1.3)
38
+ activesupport (= 7.1.3)
39
+ nokogiri (>= 1.8.5)
40
+ racc
41
+ rack (>= 2.2.4)
42
+ rack-session (>= 1.0.1)
43
+ rack-test (>= 0.6.3)
44
+ rails-dom-testing (~> 2.2)
45
+ rails-html-sanitizer (~> 1.6)
46
+ actiontext (7.1.3)
47
+ actionpack (= 7.1.3)
48
+ activerecord (= 7.1.3)
49
+ activestorage (= 7.1.3)
50
+ activesupport (= 7.1.3)
51
+ globalid (>= 0.6.0)
52
+ nokogiri (>= 1.8.5)
53
+ actionview (7.1.3)
54
+ activesupport (= 7.1.3)
55
+ builder (~> 3.1)
56
+ erubi (~> 1.11)
57
+ rails-dom-testing (~> 2.2)
58
+ rails-html-sanitizer (~> 1.6)
59
+ activejob (7.1.3)
60
+ activesupport (= 7.1.3)
61
+ globalid (>= 0.3.6)
62
+ activemodel (7.1.3)
63
+ activesupport (= 7.1.3)
64
+ activerecord (7.1.3)
65
+ activemodel (= 7.1.3)
66
+ activesupport (= 7.1.3)
67
+ timeout (>= 0.4.0)
68
+ activestorage (7.1.3)
69
+ actionpack (= 7.1.3)
70
+ activejob (= 7.1.3)
71
+ activerecord (= 7.1.3)
72
+ activesupport (= 7.1.3)
73
+ marcel (~> 1.0)
74
+ activesupport (7.1.3)
75
+ base64
76
+ bigdecimal
77
+ concurrent-ruby (~> 1.0, >= 1.0.2)
78
+ connection_pool (>= 2.2.5)
79
+ drb
80
+ i18n (>= 1.6, < 2)
81
+ minitest (>= 5.1)
82
+ mutex_m
83
+ tzinfo (~> 2.0)
84
+ base64 (0.2.0)
85
+ bigdecimal (3.1.6)
86
+ builder (3.2.4)
87
+ concurrent-ruby (1.2.3)
88
+ connection_pool (2.4.1)
89
+ crass (1.0.6)
90
+ date (3.3.4)
91
+ drb (2.2.0)
92
+ ruby2_keywords
93
+ erubi (1.12.0)
94
+ globalid (1.2.1)
95
+ activesupport (>= 6.1)
96
+ i18n (1.14.1)
97
+ concurrent-ruby (~> 1.0)
98
+ io-console (0.7.2)
99
+ irb (1.11.2)
100
+ rdoc
101
+ reline (>= 0.4.2)
102
+ loofah (2.22.0)
103
+ crass (~> 1.0.2)
104
+ nokogiri (>= 1.12.0)
105
+ mail (2.8.1)
106
+ mini_mime (>= 0.1.1)
107
+ net-imap
108
+ net-pop
109
+ net-smtp
110
+ marcel (1.0.2)
111
+ mini_mime (1.1.5)
112
+ minitest (5.22.2)
113
+ mutex_m (0.2.0)
114
+ net-imap (0.4.10)
115
+ date
116
+ net-protocol
117
+ net-pop (0.1.2)
118
+ net-protocol
119
+ net-protocol (0.2.2)
120
+ timeout
121
+ net-smtp (0.4.0.1)
122
+ net-protocol
123
+ nio4r (2.7.0)
124
+ nokogiri (1.16.2-arm64-darwin)
125
+ racc (~> 1.4)
126
+ nokogiri (1.16.2-x86_64-linux)
127
+ racc (~> 1.4)
128
+ prettier_print (1.2.1)
129
+ psych (5.1.2)
130
+ stringio
131
+ racc (1.7.3)
132
+ rack (3.0.9)
133
+ rack-session (2.0.0)
134
+ rack (>= 3.0.0)
135
+ rack-test (2.1.0)
136
+ rack (>= 1.3)
137
+ rackup (2.1.0)
138
+ rack (>= 3)
139
+ webrick (~> 1.8)
140
+ rails (7.1.3)
141
+ actioncable (= 7.1.3)
142
+ actionmailbox (= 7.1.3)
143
+ actionmailer (= 7.1.3)
144
+ actionpack (= 7.1.3)
145
+ actiontext (= 7.1.3)
146
+ actionview (= 7.1.3)
147
+ activejob (= 7.1.3)
148
+ activemodel (= 7.1.3)
149
+ activerecord (= 7.1.3)
150
+ activestorage (= 7.1.3)
151
+ activesupport (= 7.1.3)
152
+ bundler (>= 1.15.0)
153
+ railties (= 7.1.3)
154
+ rails-dom-testing (2.2.0)
155
+ activesupport (>= 5.0.0)
156
+ minitest
157
+ nokogiri (>= 1.6)
158
+ rails-html-sanitizer (1.6.0)
159
+ loofah (~> 2.21)
160
+ nokogiri (~> 1.14)
161
+ railties (7.1.3)
162
+ actionpack (= 7.1.3)
163
+ activesupport (= 7.1.3)
164
+ irb
165
+ rackup (>= 1.0.0)
166
+ rake (>= 12.2)
167
+ thor (~> 1.0, >= 1.2.2)
168
+ zeitwerk (~> 2.6)
169
+ rake (13.1.0)
170
+ rdoc (6.6.2)
171
+ psych (>= 4.0.0)
172
+ reline (0.4.2)
173
+ io-console (~> 0.5)
174
+ ruby2_keywords (0.0.5)
175
+ sqlite3 (1.7.2-arm64-darwin)
176
+ sqlite3 (1.7.2-x86_64-linux)
177
+ stringio (3.1.0)
178
+ syntax_tree (6.2.0)
179
+ prettier_print (>= 1.2.0)
180
+ thor (1.3.0)
181
+ timeout (0.4.1)
182
+ tzinfo (2.0.6)
183
+ concurrent-ruby (~> 1.0)
184
+ webrick (1.8.1)
185
+ websocket-driver (0.7.6)
186
+ websocket-extensions (>= 0.1.0)
187
+ websocket-extensions (0.1.5)
188
+ zeitwerk (2.6.13)
189
+
190
+ PLATFORMS
191
+ arm64-darwin-22
192
+ x86_64-linux
193
+
194
+ DEPENDENCIES
195
+ active_record-union_relation!
196
+ minitest
197
+ rails
198
+ rake
199
+ sqlite3
200
+ syntax_tree
201
+
202
+ BUNDLED WITH
203
+ 2.4.13
@@ -2,6 +2,6 @@
2
2
 
3
3
  module ActiveRecord
4
4
  class UnionRelation
5
- VERSION = '0.1.0'
5
+ VERSION = "0.2.0"
6
6
  end
7
7
  end