sequenced 3.1.0 → 4.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (100) hide show
  1. checksums.yaml +5 -5
  2. data/.github/workflows/ci.yml +100 -0
  3. data/Appraisals +19 -0
  4. data/CHANGELOG.md +22 -2
  5. data/Gemfile +8 -5
  6. data/MIT-LICENSE +1 -1
  7. data/README.md +31 -4
  8. data/Rakefile +18 -18
  9. data/gemfiles/rails_5_2.gemfile +17 -0
  10. data/gemfiles/rails_5_2.gemfile.lock +193 -0
  11. data/gemfiles/rails_6.gemfile +17 -0
  12. data/gemfiles/rails_6.gemfile.lock +204 -0
  13. data/gemfiles/rails_6_1.gemfile +17 -0
  14. data/gemfiles/rails_6_1.gemfile.lock +207 -0
  15. data/gemfiles/rails_7.gemfile +17 -0
  16. data/gemfiles/rails_7.gemfile.lock +206 -0
  17. data/gemfiles/rails_master.gemfile +17 -0
  18. data/gemfiles/rails_master.gemfile.lock +215 -0
  19. data/lib/sequenced/acts_as_sequenced.rb +5 -6
  20. data/lib/sequenced/generator.rb +13 -11
  21. data/lib/sequenced/version.rb +1 -1
  22. data/lib/sequenced.rb +5 -3
  23. data/sequenced.gemspec +8 -9
  24. metadata +29 -165
  25. data/.travis.yml +0 -13
  26. data/test/acts_as_sequenced_test.rb +0 -132
  27. data/test/concurrency_test.rb +0 -82
  28. data/test/dummy/README.rdoc +0 -261
  29. data/test/dummy/Rakefile +0 -7
  30. data/test/dummy/app/assets/javascripts/application.js +0 -15
  31. data/test/dummy/app/assets/stylesheets/application.css +0 -13
  32. data/test/dummy/app/controllers/application_controller.rb +0 -3
  33. data/test/dummy/app/helpers/application_helper.rb +0 -2
  34. data/test/dummy/app/mailers/.gitkeep +0 -0
  35. data/test/dummy/app/models/.gitkeep +0 -0
  36. data/test/dummy/app/models/account.rb +0 -6
  37. data/test/dummy/app/models/address.rb +0 -4
  38. data/test/dummy/app/models/answer.rb +0 -4
  39. data/test/dummy/app/models/comment.rb +0 -8
  40. data/test/dummy/app/models/concurrent_badger.rb +0 -3
  41. data/test/dummy/app/models/doppelganger.rb +0 -4
  42. data/test/dummy/app/models/email.rb +0 -4
  43. data/test/dummy/app/models/invoice.rb +0 -4
  44. data/test/dummy/app/models/monster.rb +0 -3
  45. data/test/dummy/app/models/order.rb +0 -4
  46. data/test/dummy/app/models/policeman.rb +0 -5
  47. data/test/dummy/app/models/product.rb +0 -8
  48. data/test/dummy/app/models/question.rb +0 -4
  49. data/test/dummy/app/models/rating.rb +0 -3
  50. data/test/dummy/app/models/subscription.rb +0 -3
  51. data/test/dummy/app/models/user.rb +0 -4
  52. data/test/dummy/app/models/werewolf.rb +0 -2
  53. data/test/dummy/app/models/zombie.rb +0 -2
  54. data/test/dummy/app/views/layouts/application.html.erb +0 -14
  55. data/test/dummy/config/application.rb +0 -56
  56. data/test/dummy/config/boot.rb +0 -10
  57. data/test/dummy/config/database.yml +0 -29
  58. data/test/dummy/config/environment.rb +0 -5
  59. data/test/dummy/config/environments/development.rb +0 -33
  60. data/test/dummy/config/environments/production.rb +0 -67
  61. data/test/dummy/config/environments/test.rb +0 -43
  62. data/test/dummy/config/initializers/backtrace_silencers.rb +0 -7
  63. data/test/dummy/config/initializers/inflections.rb +0 -15
  64. data/test/dummy/config/initializers/mime_types.rb +0 -5
  65. data/test/dummy/config/initializers/secret_token.rb +0 -7
  66. data/test/dummy/config/initializers/session_store.rb +0 -8
  67. data/test/dummy/config/initializers/wrap_parameters.rb +0 -14
  68. data/test/dummy/config/locales/en.yml +0 -5
  69. data/test/dummy/config/routes.rb +0 -58
  70. data/test/dummy/config.ru +0 -4
  71. data/test/dummy/db/development.sqlite3 +0 -0
  72. data/test/dummy/db/migrate/20120219165346_create_questions.rb +0 -10
  73. data/test/dummy/db/migrate/20120219165548_create_answers.rb +0 -13
  74. data/test/dummy/db/migrate/20120219171957_create_accounts.rb +0 -9
  75. data/test/dummy/db/migrate/20120219172039_create_invoices.rb +0 -12
  76. data/test/dummy/db/migrate/20120219172922_create_orders.rb +0 -10
  77. data/test/dummy/db/migrate/20120219174931_create_subscriptions.rb +0 -10
  78. data/test/dummy/db/migrate/20120219175744_create_users.rb +0 -12
  79. data/test/dummy/db/migrate/20120219232323_create_addresses.rb +0 -9
  80. data/test/dummy/db/migrate/20120220000804_create_comments.rb +0 -12
  81. data/test/dummy/db/migrate/20130411225444_create_emails.rb +0 -12
  82. data/test/dummy/db/migrate/20130715002029_create_ratings.rb +0 -10
  83. data/test/dummy/db/migrate/20130730004055_create_products.rb +0 -9
  84. data/test/dummy/db/migrate/20131226000000_create_monsters.rb +0 -9
  85. data/test/dummy/db/migrate/20140404195334_create_policemen.rb +0 -9
  86. data/test/dummy/db/migrate/20151120190645_create_concurrent_badgers.rb +0 -10
  87. data/test/dummy/db/migrate/20160118182655_create_doppelgangers.rb +0 -10
  88. data/test/dummy/db/schema.rb +0 -142
  89. data/test/dummy/db/test.sqlite3 +0 -0
  90. data/test/dummy/lib/assets/.gitkeep +0 -0
  91. data/test/dummy/log/.gitkeep +0 -0
  92. data/test/dummy/log/development.log +0 -62
  93. data/test/dummy/log/test.log +0 -32690
  94. data/test/dummy/public/404.html +0 -26
  95. data/test/dummy/public/422.html +0 -26
  96. data/test/dummy/public/500.html +0 -25
  97. data/test/dummy/public/favicon.ico +0 -0
  98. data/test/dummy/script/rails +0 -6
  99. data/test/multiple_sequences_test.rb +0 -20
  100. data/test/test_helper.rb +0 -13
@@ -0,0 +1,204 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ sequenced (4.0.0)
5
+ activerecord (>= 3.0)
6
+ activesupport (>= 3.0)
7
+
8
+ GEM
9
+ remote: https://rubygems.org/
10
+ specs:
11
+ actioncable (6.0.5.1)
12
+ actionpack (= 6.0.5.1)
13
+ nio4r (~> 2.0)
14
+ websocket-driver (>= 0.6.1)
15
+ actionmailbox (6.0.5.1)
16
+ actionpack (= 6.0.5.1)
17
+ activejob (= 6.0.5.1)
18
+ activerecord (= 6.0.5.1)
19
+ activestorage (= 6.0.5.1)
20
+ activesupport (= 6.0.5.1)
21
+ mail (>= 2.7.1)
22
+ actionmailer (6.0.5.1)
23
+ actionpack (= 6.0.5.1)
24
+ actionview (= 6.0.5.1)
25
+ activejob (= 6.0.5.1)
26
+ mail (~> 2.5, >= 2.5.4)
27
+ rails-dom-testing (~> 2.0)
28
+ actionpack (6.0.5.1)
29
+ actionview (= 6.0.5.1)
30
+ activesupport (= 6.0.5.1)
31
+ rack (~> 2.0, >= 2.0.8)
32
+ rack-test (>= 0.6.3)
33
+ rails-dom-testing (~> 2.0)
34
+ rails-html-sanitizer (~> 1.0, >= 1.2.0)
35
+ actiontext (6.0.5.1)
36
+ actionpack (= 6.0.5.1)
37
+ activerecord (= 6.0.5.1)
38
+ activestorage (= 6.0.5.1)
39
+ activesupport (= 6.0.5.1)
40
+ nokogiri (>= 1.8.5)
41
+ actionview (6.0.5.1)
42
+ activesupport (= 6.0.5.1)
43
+ builder (~> 3.1)
44
+ erubi (~> 1.4)
45
+ rails-dom-testing (~> 2.0)
46
+ rails-html-sanitizer (~> 1.1, >= 1.2.0)
47
+ activejob (6.0.5.1)
48
+ activesupport (= 6.0.5.1)
49
+ globalid (>= 0.3.6)
50
+ activemodel (6.0.5.1)
51
+ activesupport (= 6.0.5.1)
52
+ activerecord (6.0.5.1)
53
+ activemodel (= 6.0.5.1)
54
+ activesupport (= 6.0.5.1)
55
+ activestorage (6.0.5.1)
56
+ actionpack (= 6.0.5.1)
57
+ activejob (= 6.0.5.1)
58
+ activerecord (= 6.0.5.1)
59
+ marcel (~> 1.0)
60
+ activesupport (6.0.5.1)
61
+ concurrent-ruby (~> 1.0, >= 1.0.2)
62
+ i18n (>= 0.7, < 2)
63
+ minitest (~> 5.1)
64
+ tzinfo (~> 1.1)
65
+ zeitwerk (~> 2.2, >= 2.2.2)
66
+ appraisal (2.4.1)
67
+ bundler
68
+ rake
69
+ thor (>= 0.14.0)
70
+ ast (2.4.2)
71
+ builder (3.2.4)
72
+ concurrent-ruby (1.1.10)
73
+ crass (1.0.6)
74
+ digest (3.1.0)
75
+ erubi (1.11.0)
76
+ globalid (1.0.0)
77
+ activesupport (>= 5.0)
78
+ i18n (1.12.0)
79
+ concurrent-ruby (~> 1.0)
80
+ json (2.6.2)
81
+ loofah (2.18.0)
82
+ crass (~> 1.0.2)
83
+ nokogiri (>= 1.5.9)
84
+ mail (2.7.1)
85
+ mini_mime (>= 0.1.1)
86
+ marcel (1.0.2)
87
+ method_source (1.0.0)
88
+ mini_mime (1.1.2)
89
+ minitest (5.16.2)
90
+ net-imap (0.2.3)
91
+ digest
92
+ net-protocol
93
+ strscan
94
+ net-pop (0.1.1)
95
+ digest
96
+ net-protocol
97
+ timeout
98
+ net-protocol (0.1.3)
99
+ timeout
100
+ net-smtp (0.3.1)
101
+ digest
102
+ net-protocol
103
+ timeout
104
+ nio4r (2.5.8)
105
+ nokogiri (1.13.8-arm64-darwin)
106
+ racc (~> 1.4)
107
+ nokogiri (1.13.8-x86_64-linux)
108
+ racc (~> 1.4)
109
+ parallel (1.22.1)
110
+ parser (3.1.2.1)
111
+ ast (~> 2.4.1)
112
+ pg (1.4.3)
113
+ racc (1.6.0)
114
+ rack (2.2.4)
115
+ rack-test (2.0.2)
116
+ rack (>= 1.3)
117
+ rails (6.0.5.1)
118
+ actioncable (= 6.0.5.1)
119
+ actionmailbox (= 6.0.5.1)
120
+ actionmailer (= 6.0.5.1)
121
+ actionpack (= 6.0.5.1)
122
+ actiontext (= 6.0.5.1)
123
+ actionview (= 6.0.5.1)
124
+ activejob (= 6.0.5.1)
125
+ activemodel (= 6.0.5.1)
126
+ activerecord (= 6.0.5.1)
127
+ activestorage (= 6.0.5.1)
128
+ activesupport (= 6.0.5.1)
129
+ bundler (>= 1.3.0)
130
+ railties (= 6.0.5.1)
131
+ sprockets-rails (>= 2.0.0)
132
+ rails-dom-testing (2.0.3)
133
+ activesupport (>= 4.2.0)
134
+ nokogiri (>= 1.6)
135
+ rails-html-sanitizer (1.4.3)
136
+ loofah (~> 2.3)
137
+ railties (6.0.5.1)
138
+ actionpack (= 6.0.5.1)
139
+ activesupport (= 6.0.5.1)
140
+ method_source
141
+ rake (>= 0.8.7)
142
+ thor (>= 0.20.3, < 2.0)
143
+ rainbow (3.1.1)
144
+ rake (13.0.6)
145
+ regexp_parser (2.5.0)
146
+ rexml (3.2.5)
147
+ rubocop (1.35.0)
148
+ json (~> 2.3)
149
+ parallel (~> 1.10)
150
+ parser (>= 3.1.2.1)
151
+ rainbow (>= 2.2.2, < 4.0)
152
+ regexp_parser (>= 1.8, < 3.0)
153
+ rexml (>= 3.2.5, < 4.0)
154
+ rubocop-ast (>= 1.20.1, < 2.0)
155
+ ruby-progressbar (~> 1.7)
156
+ unicode-display_width (>= 1.4.0, < 3.0)
157
+ rubocop-ast (1.21.0)
158
+ parser (>= 3.1.1.0)
159
+ rubocop-performance (1.14.3)
160
+ rubocop (>= 1.7.0, < 2.0)
161
+ rubocop-ast (>= 0.4.0)
162
+ ruby-progressbar (1.11.0)
163
+ sprockets (4.1.1)
164
+ concurrent-ruby (~> 1.0)
165
+ rack (> 1, < 3)
166
+ sprockets-rails (3.4.2)
167
+ actionpack (>= 5.2)
168
+ activesupport (>= 5.2)
169
+ sprockets (>= 3.0.0)
170
+ sqlite3 (1.4.4)
171
+ standard (1.16.0)
172
+ rubocop (= 1.35.0)
173
+ rubocop-performance (= 1.14.3)
174
+ standardrb (1.0.1)
175
+ standard
176
+ strscan (3.0.4)
177
+ thor (1.2.1)
178
+ thread_safe (0.3.6)
179
+ timeout (0.3.0)
180
+ tzinfo (1.2.10)
181
+ thread_safe (~> 0.1)
182
+ unicode-display_width (2.2.0)
183
+ websocket-driver (0.7.5)
184
+ websocket-extensions (>= 0.1.0)
185
+ websocket-extensions (0.1.5)
186
+ zeitwerk (2.6.0)
187
+
188
+ PLATFORMS
189
+ arm64-darwin-21
190
+ x86_64-linux
191
+
192
+ DEPENDENCIES
193
+ appraisal
194
+ net-imap
195
+ net-pop
196
+ net-smtp
197
+ pg
198
+ rails (~> 6.0.0)
199
+ sequenced!
200
+ sqlite3 (~> 1.4.4)
201
+ standardrb
202
+
203
+ BUNDLED WITH
204
+ 2.3.16
@@ -0,0 +1,17 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "appraisal"
6
+ gem "standardrb"
7
+ gem "rails", "~> 6.1.0"
8
+
9
+ group :development, :test do
10
+ gem "sqlite3", "~> 1.4.4"
11
+ gem "pg"
12
+ gem "net-imap"
13
+ gem "net-pop"
14
+ gem "net-smtp"
15
+ end
16
+
17
+ gemspec path: "../"
@@ -0,0 +1,207 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ sequenced (4.0.0)
5
+ activerecord (>= 3.0)
6
+ activesupport (>= 3.0)
7
+
8
+ GEM
9
+ remote: https://rubygems.org/
10
+ specs:
11
+ actioncable (6.1.6)
12
+ actionpack (= 6.1.6)
13
+ activesupport (= 6.1.6)
14
+ nio4r (~> 2.0)
15
+ websocket-driver (>= 0.6.1)
16
+ actionmailbox (6.1.6)
17
+ actionpack (= 6.1.6)
18
+ activejob (= 6.1.6)
19
+ activerecord (= 6.1.6)
20
+ activestorage (= 6.1.6)
21
+ activesupport (= 6.1.6)
22
+ mail (>= 2.7.1)
23
+ actionmailer (6.1.6)
24
+ actionpack (= 6.1.6)
25
+ actionview (= 6.1.6)
26
+ activejob (= 6.1.6)
27
+ activesupport (= 6.1.6)
28
+ mail (~> 2.5, >= 2.5.4)
29
+ rails-dom-testing (~> 2.0)
30
+ actionpack (6.1.6)
31
+ actionview (= 6.1.6)
32
+ activesupport (= 6.1.6)
33
+ rack (~> 2.0, >= 2.0.9)
34
+ rack-test (>= 0.6.3)
35
+ rails-dom-testing (~> 2.0)
36
+ rails-html-sanitizer (~> 1.0, >= 1.2.0)
37
+ actiontext (6.1.6)
38
+ actionpack (= 6.1.6)
39
+ activerecord (= 6.1.6)
40
+ activestorage (= 6.1.6)
41
+ activesupport (= 6.1.6)
42
+ nokogiri (>= 1.8.5)
43
+ actionview (6.1.6)
44
+ activesupport (= 6.1.6)
45
+ builder (~> 3.1)
46
+ erubi (~> 1.4)
47
+ rails-dom-testing (~> 2.0)
48
+ rails-html-sanitizer (~> 1.1, >= 1.2.0)
49
+ activejob (6.1.6)
50
+ activesupport (= 6.1.6)
51
+ globalid (>= 0.3.6)
52
+ activemodel (6.1.6)
53
+ activesupport (= 6.1.6)
54
+ activerecord (6.1.6)
55
+ activemodel (= 6.1.6)
56
+ activesupport (= 6.1.6)
57
+ activestorage (6.1.6)
58
+ actionpack (= 6.1.6)
59
+ activejob (= 6.1.6)
60
+ activerecord (= 6.1.6)
61
+ activesupport (= 6.1.6)
62
+ marcel (~> 1.0)
63
+ mini_mime (>= 1.1.0)
64
+ activesupport (6.1.6)
65
+ concurrent-ruby (~> 1.0, >= 1.0.2)
66
+ i18n (>= 1.6, < 2)
67
+ minitest (>= 5.1)
68
+ tzinfo (~> 2.0)
69
+ zeitwerk (~> 2.3)
70
+ appraisal (2.4.1)
71
+ bundler
72
+ rake
73
+ thor (>= 0.14.0)
74
+ ast (2.4.2)
75
+ builder (3.2.4)
76
+ concurrent-ruby (1.1.10)
77
+ crass (1.0.6)
78
+ digest (3.1.0)
79
+ erubi (1.11.0)
80
+ globalid (1.0.0)
81
+ activesupport (>= 5.0)
82
+ i18n (1.12.0)
83
+ concurrent-ruby (~> 1.0)
84
+ json (2.6.2)
85
+ loofah (2.18.0)
86
+ crass (~> 1.0.2)
87
+ nokogiri (>= 1.5.9)
88
+ mail (2.7.1)
89
+ mini_mime (>= 0.1.1)
90
+ marcel (1.0.2)
91
+ method_source (1.0.0)
92
+ mini_mime (1.1.2)
93
+ minitest (5.16.2)
94
+ net-imap (0.2.3)
95
+ digest
96
+ net-protocol
97
+ strscan
98
+ net-pop (0.1.1)
99
+ digest
100
+ net-protocol
101
+ timeout
102
+ net-protocol (0.1.3)
103
+ timeout
104
+ net-smtp (0.3.1)
105
+ digest
106
+ net-protocol
107
+ timeout
108
+ nio4r (2.5.8)
109
+ nokogiri (1.13.8-arm64-darwin)
110
+ racc (~> 1.4)
111
+ nokogiri (1.13.8-x86_64-linux)
112
+ racc (~> 1.4)
113
+ parallel (1.22.1)
114
+ parser (3.1.2.1)
115
+ ast (~> 2.4.1)
116
+ pg (1.4.3)
117
+ racc (1.6.0)
118
+ rack (2.2.4)
119
+ rack-test (2.0.2)
120
+ rack (>= 1.3)
121
+ rails (6.1.6)
122
+ actioncable (= 6.1.6)
123
+ actionmailbox (= 6.1.6)
124
+ actionmailer (= 6.1.6)
125
+ actionpack (= 6.1.6)
126
+ actiontext (= 6.1.6)
127
+ actionview (= 6.1.6)
128
+ activejob (= 6.1.6)
129
+ activemodel (= 6.1.6)
130
+ activerecord (= 6.1.6)
131
+ activestorage (= 6.1.6)
132
+ activesupport (= 6.1.6)
133
+ bundler (>= 1.15.0)
134
+ railties (= 6.1.6)
135
+ sprockets-rails (>= 2.0.0)
136
+ rails-dom-testing (2.0.3)
137
+ activesupport (>= 4.2.0)
138
+ nokogiri (>= 1.6)
139
+ rails-html-sanitizer (1.4.3)
140
+ loofah (~> 2.3)
141
+ railties (6.1.6)
142
+ actionpack (= 6.1.6)
143
+ activesupport (= 6.1.6)
144
+ method_source
145
+ rake (>= 12.2)
146
+ thor (~> 1.0)
147
+ rainbow (3.1.1)
148
+ rake (13.0.6)
149
+ regexp_parser (2.5.0)
150
+ rexml (3.2.5)
151
+ rubocop (1.35.0)
152
+ json (~> 2.3)
153
+ parallel (~> 1.10)
154
+ parser (>= 3.1.2.1)
155
+ rainbow (>= 2.2.2, < 4.0)
156
+ regexp_parser (>= 1.8, < 3.0)
157
+ rexml (>= 3.2.5, < 4.0)
158
+ rubocop-ast (>= 1.20.1, < 2.0)
159
+ ruby-progressbar (~> 1.7)
160
+ unicode-display_width (>= 1.4.0, < 3.0)
161
+ rubocop-ast (1.21.0)
162
+ parser (>= 3.1.1.0)
163
+ rubocop-performance (1.14.3)
164
+ rubocop (>= 1.7.0, < 2.0)
165
+ rubocop-ast (>= 0.4.0)
166
+ ruby-progressbar (1.11.0)
167
+ sprockets (4.1.1)
168
+ concurrent-ruby (~> 1.0)
169
+ rack (> 1, < 3)
170
+ sprockets-rails (3.4.2)
171
+ actionpack (>= 5.2)
172
+ activesupport (>= 5.2)
173
+ sprockets (>= 3.0.0)
174
+ sqlite3 (1.4.4)
175
+ standard (1.16.0)
176
+ rubocop (= 1.35.0)
177
+ rubocop-performance (= 1.14.3)
178
+ standardrb (1.0.1)
179
+ standard
180
+ strscan (3.0.4)
181
+ thor (1.2.1)
182
+ timeout (0.3.0)
183
+ tzinfo (2.0.5)
184
+ concurrent-ruby (~> 1.0)
185
+ unicode-display_width (2.2.0)
186
+ websocket-driver (0.7.5)
187
+ websocket-extensions (>= 0.1.0)
188
+ websocket-extensions (0.1.5)
189
+ zeitwerk (2.6.0)
190
+
191
+ PLATFORMS
192
+ arm64-darwin-21
193
+ x86_64-linux
194
+
195
+ DEPENDENCIES
196
+ appraisal
197
+ net-imap
198
+ net-pop
199
+ net-smtp
200
+ pg
201
+ rails (~> 6.1.0)
202
+ sequenced!
203
+ sqlite3 (~> 1.4.4)
204
+ standardrb
205
+
206
+ BUNDLED WITH
207
+ 2.3.16
@@ -0,0 +1,17 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "appraisal"
6
+ gem "standardrb"
7
+ gem "rails", "~> 7.0.0"
8
+
9
+ group :development, :test do
10
+ gem "sqlite3", "~> 1.4.4"
11
+ gem "pg"
12
+ gem "net-imap"
13
+ gem "net-pop"
14
+ gem "net-smtp"
15
+ end
16
+
17
+ gemspec path: "../"
@@ -0,0 +1,206 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ sequenced (4.0.0)
5
+ activerecord (>= 3.0)
6
+ activesupport (>= 3.0)
7
+
8
+ GEM
9
+ remote: https://rubygems.org/
10
+ specs:
11
+ actioncable (7.0.3.1)
12
+ actionpack (= 7.0.3.1)
13
+ activesupport (= 7.0.3.1)
14
+ nio4r (~> 2.0)
15
+ websocket-driver (>= 0.6.1)
16
+ actionmailbox (7.0.3.1)
17
+ actionpack (= 7.0.3.1)
18
+ activejob (= 7.0.3.1)
19
+ activerecord (= 7.0.3.1)
20
+ activestorage (= 7.0.3.1)
21
+ activesupport (= 7.0.3.1)
22
+ mail (>= 2.7.1)
23
+ net-imap
24
+ net-pop
25
+ net-smtp
26
+ actionmailer (7.0.3.1)
27
+ actionpack (= 7.0.3.1)
28
+ actionview (= 7.0.3.1)
29
+ activejob (= 7.0.3.1)
30
+ activesupport (= 7.0.3.1)
31
+ mail (~> 2.5, >= 2.5.4)
32
+ net-imap
33
+ net-pop
34
+ net-smtp
35
+ rails-dom-testing (~> 2.0)
36
+ actionpack (7.0.3.1)
37
+ actionview (= 7.0.3.1)
38
+ activesupport (= 7.0.3.1)
39
+ rack (~> 2.0, >= 2.2.0)
40
+ rack-test (>= 0.6.3)
41
+ rails-dom-testing (~> 2.0)
42
+ rails-html-sanitizer (~> 1.0, >= 1.2.0)
43
+ actiontext (7.0.3.1)
44
+ actionpack (= 7.0.3.1)
45
+ activerecord (= 7.0.3.1)
46
+ activestorage (= 7.0.3.1)
47
+ activesupport (= 7.0.3.1)
48
+ globalid (>= 0.6.0)
49
+ nokogiri (>= 1.8.5)
50
+ actionview (7.0.3.1)
51
+ activesupport (= 7.0.3.1)
52
+ builder (~> 3.1)
53
+ erubi (~> 1.4)
54
+ rails-dom-testing (~> 2.0)
55
+ rails-html-sanitizer (~> 1.1, >= 1.2.0)
56
+ activejob (7.0.3.1)
57
+ activesupport (= 7.0.3.1)
58
+ globalid (>= 0.3.6)
59
+ activemodel (7.0.3.1)
60
+ activesupport (= 7.0.3.1)
61
+ activerecord (7.0.3.1)
62
+ activemodel (= 7.0.3.1)
63
+ activesupport (= 7.0.3.1)
64
+ activestorage (7.0.3.1)
65
+ actionpack (= 7.0.3.1)
66
+ activejob (= 7.0.3.1)
67
+ activerecord (= 7.0.3.1)
68
+ activesupport (= 7.0.3.1)
69
+ marcel (~> 1.0)
70
+ mini_mime (>= 1.1.0)
71
+ activesupport (7.0.3.1)
72
+ concurrent-ruby (~> 1.0, >= 1.0.2)
73
+ i18n (>= 1.6, < 2)
74
+ minitest (>= 5.1)
75
+ tzinfo (~> 2.0)
76
+ appraisal (2.4.1)
77
+ bundler
78
+ rake
79
+ thor (>= 0.14.0)
80
+ ast (2.4.2)
81
+ builder (3.2.4)
82
+ concurrent-ruby (1.1.10)
83
+ crass (1.0.6)
84
+ digest (3.1.0)
85
+ erubi (1.11.0)
86
+ globalid (1.0.0)
87
+ activesupport (>= 5.0)
88
+ i18n (1.12.0)
89
+ concurrent-ruby (~> 1.0)
90
+ json (2.6.2)
91
+ loofah (2.18.0)
92
+ crass (~> 1.0.2)
93
+ nokogiri (>= 1.5.9)
94
+ mail (2.7.1)
95
+ mini_mime (>= 0.1.1)
96
+ marcel (1.0.2)
97
+ method_source (1.0.0)
98
+ mini_mime (1.1.2)
99
+ minitest (5.16.2)
100
+ net-imap (0.2.3)
101
+ digest
102
+ net-protocol
103
+ strscan
104
+ net-pop (0.1.1)
105
+ digest
106
+ net-protocol
107
+ timeout
108
+ net-protocol (0.1.3)
109
+ timeout
110
+ net-smtp (0.3.1)
111
+ digest
112
+ net-protocol
113
+ timeout
114
+ nio4r (2.5.8)
115
+ nokogiri (1.13.8-arm64-darwin)
116
+ racc (~> 1.4)
117
+ nokogiri (1.13.8-x86_64-linux)
118
+ racc (~> 1.4)
119
+ parallel (1.22.1)
120
+ parser (3.1.2.1)
121
+ ast (~> 2.4.1)
122
+ pg (1.4.3)
123
+ racc (1.6.0)
124
+ rack (2.2.4)
125
+ rack-test (2.0.2)
126
+ rack (>= 1.3)
127
+ rails (7.0.3.1)
128
+ actioncable (= 7.0.3.1)
129
+ actionmailbox (= 7.0.3.1)
130
+ actionmailer (= 7.0.3.1)
131
+ actionpack (= 7.0.3.1)
132
+ actiontext (= 7.0.3.1)
133
+ actionview (= 7.0.3.1)
134
+ activejob (= 7.0.3.1)
135
+ activemodel (= 7.0.3.1)
136
+ activerecord (= 7.0.3.1)
137
+ activestorage (= 7.0.3.1)
138
+ activesupport (= 7.0.3.1)
139
+ bundler (>= 1.15.0)
140
+ railties (= 7.0.3.1)
141
+ rails-dom-testing (2.0.3)
142
+ activesupport (>= 4.2.0)
143
+ nokogiri (>= 1.6)
144
+ rails-html-sanitizer (1.4.3)
145
+ loofah (~> 2.3)
146
+ railties (7.0.3.1)
147
+ actionpack (= 7.0.3.1)
148
+ activesupport (= 7.0.3.1)
149
+ method_source
150
+ rake (>= 12.2)
151
+ thor (~> 1.0)
152
+ zeitwerk (~> 2.5)
153
+ rainbow (3.1.1)
154
+ rake (13.0.6)
155
+ regexp_parser (2.5.0)
156
+ rexml (3.2.5)
157
+ rubocop (1.35.0)
158
+ json (~> 2.3)
159
+ parallel (~> 1.10)
160
+ parser (>= 3.1.2.1)
161
+ rainbow (>= 2.2.2, < 4.0)
162
+ regexp_parser (>= 1.8, < 3.0)
163
+ rexml (>= 3.2.5, < 4.0)
164
+ rubocop-ast (>= 1.20.1, < 2.0)
165
+ ruby-progressbar (~> 1.7)
166
+ unicode-display_width (>= 1.4.0, < 3.0)
167
+ rubocop-ast (1.21.0)
168
+ parser (>= 3.1.1.0)
169
+ rubocop-performance (1.14.3)
170
+ rubocop (>= 1.7.0, < 2.0)
171
+ rubocop-ast (>= 0.4.0)
172
+ ruby-progressbar (1.11.0)
173
+ sqlite3 (1.4.4)
174
+ standard (1.16.0)
175
+ rubocop (= 1.35.0)
176
+ rubocop-performance (= 1.14.3)
177
+ standardrb (1.0.1)
178
+ standard
179
+ strscan (3.0.4)
180
+ thor (1.2.1)
181
+ timeout (0.3.0)
182
+ tzinfo (2.0.5)
183
+ concurrent-ruby (~> 1.0)
184
+ unicode-display_width (2.2.0)
185
+ websocket-driver (0.7.5)
186
+ websocket-extensions (>= 0.1.0)
187
+ websocket-extensions (0.1.5)
188
+ zeitwerk (2.6.0)
189
+
190
+ PLATFORMS
191
+ arm64-darwin-21
192
+ x86_64-linux
193
+
194
+ DEPENDENCIES
195
+ appraisal
196
+ net-imap
197
+ net-pop
198
+ net-smtp
199
+ pg
200
+ rails (~> 7.0.0)
201
+ sequenced!
202
+ sqlite3 (~> 1.4.4)
203
+ standardrb
204
+
205
+ BUNDLED WITH
206
+ 2.3.16
@@ -0,0 +1,17 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "appraisal"
6
+ gem "standardrb"
7
+ gem "rails", github: "rails/rails", branch: "main"
8
+
9
+ group :development, :test do
10
+ gem "sqlite3", "~> 1.4.4"
11
+ gem "pg"
12
+ gem "net-imap"
13
+ gem "net-pop"
14
+ gem "net-smtp"
15
+ end
16
+
17
+ gemspec path: "../"