lazy_migrate 0.1.1 → 0.3.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.
Files changed (105) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/tests.yaml +43 -0
  3. data/.gitignore +4 -0
  4. data/.travis.yml +6 -0
  5. data/Appraisals +14 -0
  6. data/Gemfile.lock +150 -5
  7. data/Guardfile +39 -0
  8. data/README.md +56 -6
  9. data/Rakefile +1 -3
  10. data/bin/exe/lazy_migrate +14 -1
  11. data/gemfiles/.bundle/config +2 -0
  12. data/gemfiles/rails_5_1_5.gemfile +8 -0
  13. data/gemfiles/rails_5_1_5.gemfile.lock +170 -0
  14. data/gemfiles/rails_5_2_4_3.gemfile +8 -0
  15. data/gemfiles/rails_5_2_4_3.gemfile.lock +178 -0
  16. data/gemfiles/rails_6_0_3_4.gemfile +8 -0
  17. data/gemfiles/rails_6_0_3_4.gemfile.lock +194 -0
  18. data/github/demo.gif +0 -0
  19. data/lazy_migrate.gemspec +8 -2
  20. data/lib/lazy_migrate.rb +6 -2
  21. data/lib/lazy_migrate/client.rb +123 -0
  22. data/lib/lazy_migrate/migration.rb +14 -0
  23. data/lib/lazy_migrate/migrator_adapter.rb +144 -0
  24. data/lib/lazy_migrate/migrator_adapter_factory.rb +24 -0
  25. data/lib/lazy_migrate/new_migrator_adapter.rb +90 -0
  26. data/lib/lazy_migrate/old_migrator_adapter.rb +97 -0
  27. data/lib/lazy_migrate/version.rb +2 -1
  28. data/lib/tasks/lazy_migrate.rake +10 -0
  29. data/sorbet/config +2 -0
  30. data/sorbet/rbi/gems/actioncable.rbi +393 -0
  31. data/sorbet/rbi/gems/actionmailer.rbi +425 -0
  32. data/sorbet/rbi/gems/actionpack.rbi +3230 -0
  33. data/sorbet/rbi/gems/actionview.rbi +1153 -0
  34. data/sorbet/rbi/gems/activejob.rbi +282 -0
  35. data/sorbet/rbi/gems/activemodel.rbi +742 -0
  36. data/sorbet/rbi/gems/activerecord.rbi +4004 -0
  37. data/sorbet/rbi/gems/activestorage.rbi +174 -0
  38. data/sorbet/rbi/gems/activesupport.rbi +2300 -0
  39. data/sorbet/rbi/gems/appraisal.rbi +151 -0
  40. data/sorbet/rbi/gems/arel.rbi +1253 -0
  41. data/sorbet/rbi/gems/byebug.rbi +1041 -0
  42. data/sorbet/rbi/gems/coderay.rbi +92 -0
  43. data/sorbet/rbi/gems/concurrent-ruby.rbi +1586 -0
  44. data/sorbet/rbi/gems/crass.rbi +93 -0
  45. data/sorbet/rbi/gems/erubi.rbi +27 -0
  46. data/sorbet/rbi/gems/globalid.rbi +99 -0
  47. data/sorbet/rbi/gems/i18n.rbi +192 -0
  48. data/sorbet/rbi/gems/loofah.rbi +131 -0
  49. data/sorbet/rbi/gems/mail.rbi +1092 -0
  50. data/sorbet/rbi/gems/marcel.rbi +13 -0
  51. data/sorbet/rbi/gems/method_source.rbi +64 -0
  52. data/sorbet/rbi/gems/mini_mime.rbi +52 -0
  53. data/sorbet/rbi/gems/minitest.rbi +282 -0
  54. data/sorbet/rbi/gems/nio4r.rbi +68 -0
  55. data/sorbet/rbi/gems/nokogiri.rbi +1011 -0
  56. data/sorbet/rbi/gems/pastel.rbi +119 -0
  57. data/sorbet/rbi/gems/pry-byebug.rbi +155 -0
  58. data/sorbet/rbi/gems/pry.rbi +1949 -0
  59. data/sorbet/rbi/gems/rack-test.rbi +162 -0
  60. data/sorbet/rbi/gems/rack.rbi +525 -0
  61. data/sorbet/rbi/gems/rails-dom-testing.rbi +68 -0
  62. data/sorbet/rbi/gems/rails-html-sanitizer.rbi +92 -0
  63. data/sorbet/rbi/gems/railties.rbi +724 -0
  64. data/sorbet/rbi/gems/rake.rbi +666 -0
  65. data/sorbet/rbi/gems/rspec-core.rbi +1939 -0
  66. data/sorbet/rbi/gems/rspec-expectations.rbi +1123 -0
  67. data/sorbet/rbi/gems/rspec-mocks.rbi +1090 -0
  68. data/sorbet/rbi/gems/rspec-support.rbi +280 -0
  69. data/sorbet/rbi/gems/rspec.rbi +15 -0
  70. data/sorbet/rbi/gems/sprockets-rails.rbi +106 -0
  71. data/sorbet/rbi/gems/sprockets.rbi +755 -0
  72. data/sorbet/rbi/gems/sqlite3.rbi +354 -0
  73. data/sorbet/rbi/gems/thor.rbi +580 -0
  74. data/sorbet/rbi/gems/thread_safe.rbi +82 -0
  75. data/sorbet/rbi/gems/tty-color.rbi +44 -0
  76. data/sorbet/rbi/gems/tty-cursor.rbi +72 -0
  77. data/sorbet/rbi/gems/tty-prompt.rbi +531 -0
  78. data/sorbet/rbi/gems/tty-reader.rbi +176 -0
  79. data/sorbet/rbi/gems/tty-screen.rbi +66 -0
  80. data/sorbet/rbi/gems/tzinfo.rbi +406 -0
  81. data/sorbet/rbi/gems/websocket-driver.rbi +103 -0
  82. data/sorbet/rbi/gems/websocket-extensions.rbi +29 -0
  83. data/sorbet/rbi/gems/wisper.rbi +130 -0
  84. data/sorbet/rbi/hidden-definitions/errors.txt +7584 -0
  85. data/sorbet/rbi/hidden-definitions/hidden.rbi +13328 -0
  86. data/sorbet/rbi/sorbet-typed/lib/actionmailer/all/actionmailer.rbi +13 -0
  87. data/sorbet/rbi/sorbet-typed/lib/actionpack/all/actionpack.rbi +954 -0
  88. data/sorbet/rbi/sorbet-typed/lib/actionview/all/actionview.rbi +321 -0
  89. data/sorbet/rbi/sorbet-typed/lib/activemodel/all/activemodel.rbi +597 -0
  90. data/sorbet/rbi/sorbet-typed/lib/activerecord/<6/activerecord.rbi +13 -0
  91. data/sorbet/rbi/sorbet-typed/lib/activerecord/>=5.2/activerecord.rbi +16 -0
  92. data/sorbet/rbi/sorbet-typed/lib/activerecord/>=5/activerecord.rbi +53 -0
  93. data/sorbet/rbi/sorbet-typed/lib/activerecord/all/activerecord.rbi +1454 -0
  94. data/sorbet/rbi/sorbet-typed/lib/activerecord/all/model_schema.rbi +79 -0
  95. data/sorbet/rbi/sorbet-typed/lib/activerecord/all/sanitization.rbi +36 -0
  96. data/sorbet/rbi/sorbet-typed/lib/activerecord/~>5.2.0/activerecord.rbi +447 -0
  97. data/sorbet/rbi/sorbet-typed/lib/activestorage/<=6.1/activestorage.rbi +82 -0
  98. data/sorbet/rbi/sorbet-typed/lib/activestorage/all/activestorage.rbi +177 -0
  99. data/sorbet/rbi/sorbet-typed/lib/activesupport/all/activesupport.rbi +1431 -0
  100. data/sorbet/rbi/sorbet-typed/lib/minitest/all/minitest.rbi +108 -0
  101. data/sorbet/rbi/sorbet-typed/lib/railties/all/railties.rbi +25 -0
  102. data/sorbet/rbi/todo.rbi +18 -0
  103. data/sorbet/rbi/user-defined/activerecord.rbi +56 -0
  104. metadata +182 -5
  105. data/lib/lazy_migrate/migrator.rb +0 -186
@@ -0,0 +1,2 @@
1
+ ---
2
+ BUNDLE_RETRY: "1"
@@ -0,0 +1,8 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "rails", "5.1.5"
6
+ gem "sqlite3", "~> 1.3.6"
7
+
8
+ gemspec path: "../"
@@ -0,0 +1,170 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ lazy_migrate (0.2.0)
5
+ sorbet-runtime
6
+ tty-prompt (~> 0.22.0)
7
+
8
+ GEM
9
+ remote: https://rubygems.org/
10
+ specs:
11
+ actioncable (5.1.5)
12
+ actionpack (= 5.1.5)
13
+ nio4r (~> 2.0)
14
+ websocket-driver (~> 0.6.1)
15
+ actionmailer (5.1.5)
16
+ actionpack (= 5.1.5)
17
+ actionview (= 5.1.5)
18
+ activejob (= 5.1.5)
19
+ mail (~> 2.5, >= 2.5.4)
20
+ rails-dom-testing (~> 2.0)
21
+ actionpack (5.1.5)
22
+ actionview (= 5.1.5)
23
+ activesupport (= 5.1.5)
24
+ rack (~> 2.0)
25
+ rack-test (>= 0.6.3)
26
+ rails-dom-testing (~> 2.0)
27
+ rails-html-sanitizer (~> 1.0, >= 1.0.2)
28
+ actionview (5.1.5)
29
+ activesupport (= 5.1.5)
30
+ builder (~> 3.1)
31
+ erubi (~> 1.4)
32
+ rails-dom-testing (~> 2.0)
33
+ rails-html-sanitizer (~> 1.0, >= 1.0.3)
34
+ activejob (5.1.5)
35
+ activesupport (= 5.1.5)
36
+ globalid (>= 0.3.6)
37
+ activemodel (5.1.5)
38
+ activesupport (= 5.1.5)
39
+ activerecord (5.1.5)
40
+ activemodel (= 5.1.5)
41
+ activesupport (= 5.1.5)
42
+ arel (~> 8.0)
43
+ activesupport (5.1.5)
44
+ concurrent-ruby (~> 1.0, >= 1.0.2)
45
+ i18n (~> 0.7)
46
+ minitest (~> 5.1)
47
+ tzinfo (~> 1.1)
48
+ appraisal (2.3.0)
49
+ bundler
50
+ rake
51
+ thor (>= 0.14.0)
52
+ arel (8.0.0)
53
+ builder (3.2.4)
54
+ byebug (11.1.3)
55
+ coderay (1.1.3)
56
+ concurrent-ruby (1.1.6)
57
+ crass (1.0.6)
58
+ diff-lcs (1.4.4)
59
+ erubi (1.9.0)
60
+ globalid (0.4.2)
61
+ activesupport (>= 4.2.0)
62
+ i18n (0.9.5)
63
+ concurrent-ruby (~> 1.0)
64
+ loofah (2.6.0)
65
+ crass (~> 1.0.2)
66
+ nokogiri (>= 1.5.9)
67
+ mail (2.7.1)
68
+ mini_mime (>= 0.1.1)
69
+ method_source (1.0.0)
70
+ mini_mime (1.0.2)
71
+ mini_portile2 (2.4.0)
72
+ minitest (5.14.1)
73
+ nio4r (2.5.2)
74
+ nokogiri (1.10.10)
75
+ mini_portile2 (~> 2.4.0)
76
+ pastel (0.8.0)
77
+ tty-color (~> 0.5)
78
+ pry (0.13.1)
79
+ coderay (~> 1.1)
80
+ method_source (~> 1.0)
81
+ pry-byebug (3.9.0)
82
+ byebug (~> 11.0)
83
+ pry (~> 0.13.0)
84
+ rack (2.2.3)
85
+ rack-test (1.1.0)
86
+ rack (>= 1.0, < 3)
87
+ rails (5.1.5)
88
+ actioncable (= 5.1.5)
89
+ actionmailer (= 5.1.5)
90
+ actionpack (= 5.1.5)
91
+ actionview (= 5.1.5)
92
+ activejob (= 5.1.5)
93
+ activemodel (= 5.1.5)
94
+ activerecord (= 5.1.5)
95
+ activesupport (= 5.1.5)
96
+ bundler (>= 1.3.0)
97
+ railties (= 5.1.5)
98
+ sprockets-rails (>= 2.0.0)
99
+ rails-dom-testing (2.0.3)
100
+ activesupport (>= 4.2.0)
101
+ nokogiri (>= 1.6)
102
+ rails-html-sanitizer (1.3.0)
103
+ loofah (~> 2.3)
104
+ railties (5.1.5)
105
+ actionpack (= 5.1.5)
106
+ activesupport (= 5.1.5)
107
+ method_source
108
+ rake (>= 0.8.7)
109
+ thor (>= 0.18.1, < 2.0)
110
+ rake (13.0.1)
111
+ rspec (3.9.0)
112
+ rspec-core (~> 3.9.0)
113
+ rspec-expectations (~> 3.9.0)
114
+ rspec-mocks (~> 3.9.0)
115
+ rspec-core (3.9.2)
116
+ rspec-support (~> 3.9.3)
117
+ rspec-expectations (3.9.2)
118
+ diff-lcs (>= 1.2.0, < 2.0)
119
+ rspec-support (~> 3.9.0)
120
+ rspec-mocks (3.9.1)
121
+ diff-lcs (>= 1.2.0, < 2.0)
122
+ rspec-support (~> 3.9.0)
123
+ rspec-support (3.9.3)
124
+ sorbet (0.5.5862)
125
+ sorbet-static (= 0.5.5862)
126
+ sorbet-runtime (0.5.5991)
127
+ sorbet-static (0.5.5862-universal-darwin-18)
128
+ sprockets (4.0.2)
129
+ concurrent-ruby (~> 1.0)
130
+ rack (> 1, < 3)
131
+ sprockets-rails (3.2.1)
132
+ actionpack (>= 4.0)
133
+ activesupport (>= 4.0)
134
+ sprockets (>= 3.0.0)
135
+ sqlite3 (1.3.13)
136
+ thor (1.0.1)
137
+ thread_safe (0.3.6)
138
+ tty-color (0.5.2)
139
+ tty-cursor (0.7.1)
140
+ tty-prompt (0.22.0)
141
+ pastel (~> 0.8)
142
+ tty-reader (~> 0.8)
143
+ tty-reader (0.8.0)
144
+ tty-cursor (~> 0.7)
145
+ tty-screen (~> 0.8)
146
+ wisper (~> 2.0)
147
+ tty-screen (0.8.1)
148
+ tzinfo (1.2.7)
149
+ thread_safe (~> 0.1)
150
+ websocket-driver (0.6.5)
151
+ websocket-extensions (>= 0.1.0)
152
+ websocket-extensions (0.1.5)
153
+ wisper (2.0.1)
154
+
155
+ PLATFORMS
156
+ ruby
157
+
158
+ DEPENDENCIES
159
+ appraisal
160
+ bundler (~> 2.0)
161
+ lazy_migrate!
162
+ pry-byebug (~> 3.9.0)
163
+ rails (= 5.1.5)
164
+ rake (~> 13.0)
165
+ rspec (~> 3.0)
166
+ sorbet
167
+ sqlite3 (~> 1.3.6)
168
+
169
+ BUNDLED WITH
170
+ 2.1.4
@@ -0,0 +1,8 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "rails", "5.2.4.3"
6
+ gem "sqlite3", "~> 1.4.2"
7
+
8
+ gemspec path: "../"
@@ -0,0 +1,178 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ lazy_migrate (0.2.0)
5
+ sorbet-runtime
6
+ tty-prompt (~> 0.22.0)
7
+
8
+ GEM
9
+ remote: https://rubygems.org/
10
+ specs:
11
+ actioncable (5.2.4.3)
12
+ actionpack (= 5.2.4.3)
13
+ nio4r (~> 2.0)
14
+ websocket-driver (>= 0.6.1)
15
+ actionmailer (5.2.4.3)
16
+ actionpack (= 5.2.4.3)
17
+ actionview (= 5.2.4.3)
18
+ activejob (= 5.2.4.3)
19
+ mail (~> 2.5, >= 2.5.4)
20
+ rails-dom-testing (~> 2.0)
21
+ actionpack (5.2.4.3)
22
+ actionview (= 5.2.4.3)
23
+ activesupport (= 5.2.4.3)
24
+ rack (~> 2.0, >= 2.0.8)
25
+ rack-test (>= 0.6.3)
26
+ rails-dom-testing (~> 2.0)
27
+ rails-html-sanitizer (~> 1.0, >= 1.0.2)
28
+ actionview (5.2.4.3)
29
+ activesupport (= 5.2.4.3)
30
+ builder (~> 3.1)
31
+ erubi (~> 1.4)
32
+ rails-dom-testing (~> 2.0)
33
+ rails-html-sanitizer (~> 1.0, >= 1.0.3)
34
+ activejob (5.2.4.3)
35
+ activesupport (= 5.2.4.3)
36
+ globalid (>= 0.3.6)
37
+ activemodel (5.2.4.3)
38
+ activesupport (= 5.2.4.3)
39
+ activerecord (5.2.4.3)
40
+ activemodel (= 5.2.4.3)
41
+ activesupport (= 5.2.4.3)
42
+ arel (>= 9.0)
43
+ activestorage (5.2.4.3)
44
+ actionpack (= 5.2.4.3)
45
+ activerecord (= 5.2.4.3)
46
+ marcel (~> 0.3.1)
47
+ activesupport (5.2.4.3)
48
+ concurrent-ruby (~> 1.0, >= 1.0.2)
49
+ i18n (>= 0.7, < 2)
50
+ minitest (~> 5.1)
51
+ tzinfo (~> 1.1)
52
+ appraisal (2.3.0)
53
+ bundler
54
+ rake
55
+ thor (>= 0.14.0)
56
+ arel (9.0.0)
57
+ builder (3.2.4)
58
+ byebug (11.1.3)
59
+ coderay (1.1.3)
60
+ concurrent-ruby (1.1.6)
61
+ crass (1.0.6)
62
+ diff-lcs (1.4.4)
63
+ erubi (1.9.0)
64
+ globalid (0.4.2)
65
+ activesupport (>= 4.2.0)
66
+ i18n (1.8.5)
67
+ concurrent-ruby (~> 1.0)
68
+ loofah (2.6.0)
69
+ crass (~> 1.0.2)
70
+ nokogiri (>= 1.5.9)
71
+ mail (2.7.1)
72
+ mini_mime (>= 0.1.1)
73
+ marcel (0.3.3)
74
+ mimemagic (~> 0.3.2)
75
+ method_source (1.0.0)
76
+ mimemagic (0.3.5)
77
+ mini_mime (1.0.2)
78
+ mini_portile2 (2.4.0)
79
+ minitest (5.14.1)
80
+ nio4r (2.5.2)
81
+ nokogiri (1.10.10)
82
+ mini_portile2 (~> 2.4.0)
83
+ pastel (0.8.0)
84
+ tty-color (~> 0.5)
85
+ pry (0.13.1)
86
+ coderay (~> 1.1)
87
+ method_source (~> 1.0)
88
+ pry-byebug (3.9.0)
89
+ byebug (~> 11.0)
90
+ pry (~> 0.13.0)
91
+ rack (2.2.3)
92
+ rack-test (1.1.0)
93
+ rack (>= 1.0, < 3)
94
+ rails (5.2.4.3)
95
+ actioncable (= 5.2.4.3)
96
+ actionmailer (= 5.2.4.3)
97
+ actionpack (= 5.2.4.3)
98
+ actionview (= 5.2.4.3)
99
+ activejob (= 5.2.4.3)
100
+ activemodel (= 5.2.4.3)
101
+ activerecord (= 5.2.4.3)
102
+ activestorage (= 5.2.4.3)
103
+ activesupport (= 5.2.4.3)
104
+ bundler (>= 1.3.0)
105
+ railties (= 5.2.4.3)
106
+ sprockets-rails (>= 2.0.0)
107
+ rails-dom-testing (2.0.3)
108
+ activesupport (>= 4.2.0)
109
+ nokogiri (>= 1.6)
110
+ rails-html-sanitizer (1.3.0)
111
+ loofah (~> 2.3)
112
+ railties (5.2.4.3)
113
+ actionpack (= 5.2.4.3)
114
+ activesupport (= 5.2.4.3)
115
+ method_source
116
+ rake (>= 0.8.7)
117
+ thor (>= 0.19.0, < 2.0)
118
+ rake (13.0.1)
119
+ rspec (3.9.0)
120
+ rspec-core (~> 3.9.0)
121
+ rspec-expectations (~> 3.9.0)
122
+ rspec-mocks (~> 3.9.0)
123
+ rspec-core (3.9.2)
124
+ rspec-support (~> 3.9.3)
125
+ rspec-expectations (3.9.2)
126
+ diff-lcs (>= 1.2.0, < 2.0)
127
+ rspec-support (~> 3.9.0)
128
+ rspec-mocks (3.9.1)
129
+ diff-lcs (>= 1.2.0, < 2.0)
130
+ rspec-support (~> 3.9.0)
131
+ rspec-support (3.9.3)
132
+ sorbet (0.5.5862)
133
+ sorbet-static (= 0.5.5862)
134
+ sorbet-runtime (0.5.5991)
135
+ sorbet-static (0.5.5862-universal-darwin-18)
136
+ sprockets (4.0.2)
137
+ concurrent-ruby (~> 1.0)
138
+ rack (> 1, < 3)
139
+ sprockets-rails (3.2.1)
140
+ actionpack (>= 4.0)
141
+ activesupport (>= 4.0)
142
+ sprockets (>= 3.0.0)
143
+ sqlite3 (1.4.2)
144
+ thor (1.0.1)
145
+ thread_safe (0.3.6)
146
+ tty-color (0.5.2)
147
+ tty-cursor (0.7.1)
148
+ tty-prompt (0.22.0)
149
+ pastel (~> 0.8)
150
+ tty-reader (~> 0.8)
151
+ tty-reader (0.8.0)
152
+ tty-cursor (~> 0.7)
153
+ tty-screen (~> 0.8)
154
+ wisper (~> 2.0)
155
+ tty-screen (0.8.1)
156
+ tzinfo (1.2.7)
157
+ thread_safe (~> 0.1)
158
+ websocket-driver (0.7.3)
159
+ websocket-extensions (>= 0.1.0)
160
+ websocket-extensions (0.1.5)
161
+ wisper (2.0.1)
162
+
163
+ PLATFORMS
164
+ ruby
165
+
166
+ DEPENDENCIES
167
+ appraisal
168
+ bundler (~> 2.0)
169
+ lazy_migrate!
170
+ pry-byebug (~> 3.9.0)
171
+ rails (= 5.2.4.3)
172
+ rake (~> 13.0)
173
+ rspec (~> 3.0)
174
+ sorbet
175
+ sqlite3 (~> 1.4.2)
176
+
177
+ BUNDLED WITH
178
+ 2.1.4
@@ -0,0 +1,8 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "rails", "6.0.3.4"
6
+ gem "sqlite3", "~> 1.4.2"
7
+
8
+ gemspec path: "../"
@@ -0,0 +1,194 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ lazy_migrate (0.2.0)
5
+ sorbet-runtime
6
+ tty-prompt (~> 0.22.0)
7
+
8
+ GEM
9
+ remote: https://rubygems.org/
10
+ specs:
11
+ actioncable (6.0.3.4)
12
+ actionpack (= 6.0.3.4)
13
+ nio4r (~> 2.0)
14
+ websocket-driver (>= 0.6.1)
15
+ actionmailbox (6.0.3.4)
16
+ actionpack (= 6.0.3.4)
17
+ activejob (= 6.0.3.4)
18
+ activerecord (= 6.0.3.4)
19
+ activestorage (= 6.0.3.4)
20
+ activesupport (= 6.0.3.4)
21
+ mail (>= 2.7.1)
22
+ actionmailer (6.0.3.4)
23
+ actionpack (= 6.0.3.4)
24
+ actionview (= 6.0.3.4)
25
+ activejob (= 6.0.3.4)
26
+ mail (~> 2.5, >= 2.5.4)
27
+ rails-dom-testing (~> 2.0)
28
+ actionpack (6.0.3.4)
29
+ actionview (= 6.0.3.4)
30
+ activesupport (= 6.0.3.4)
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.3.4)
36
+ actionpack (= 6.0.3.4)
37
+ activerecord (= 6.0.3.4)
38
+ activestorage (= 6.0.3.4)
39
+ activesupport (= 6.0.3.4)
40
+ nokogiri (>= 1.8.5)
41
+ actionview (6.0.3.4)
42
+ activesupport (= 6.0.3.4)
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.3.4)
48
+ activesupport (= 6.0.3.4)
49
+ globalid (>= 0.3.6)
50
+ activemodel (6.0.3.4)
51
+ activesupport (= 6.0.3.4)
52
+ activerecord (6.0.3.4)
53
+ activemodel (= 6.0.3.4)
54
+ activesupport (= 6.0.3.4)
55
+ activestorage (6.0.3.4)
56
+ actionpack (= 6.0.3.4)
57
+ activejob (= 6.0.3.4)
58
+ activerecord (= 6.0.3.4)
59
+ marcel (~> 0.3.1)
60
+ activesupport (6.0.3.4)
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.3.0)
67
+ bundler
68
+ rake
69
+ thor (>= 0.14.0)
70
+ builder (3.2.4)
71
+ byebug (11.1.3)
72
+ coderay (1.1.3)
73
+ concurrent-ruby (1.1.7)
74
+ crass (1.0.6)
75
+ diff-lcs (1.4.4)
76
+ erubi (1.9.0)
77
+ globalid (0.4.2)
78
+ activesupport (>= 4.2.0)
79
+ i18n (1.8.5)
80
+ concurrent-ruby (~> 1.0)
81
+ loofah (2.7.0)
82
+ crass (~> 1.0.2)
83
+ nokogiri (>= 1.5.9)
84
+ mail (2.7.1)
85
+ mini_mime (>= 0.1.1)
86
+ marcel (0.3.3)
87
+ mimemagic (~> 0.3.2)
88
+ method_source (1.0.0)
89
+ mimemagic (0.3.5)
90
+ mini_mime (1.0.2)
91
+ mini_portile2 (2.4.0)
92
+ minitest (5.14.2)
93
+ nio4r (2.5.4)
94
+ nokogiri (1.10.10)
95
+ mini_portile2 (~> 2.4.0)
96
+ pastel (0.8.0)
97
+ tty-color (~> 0.5)
98
+ pry (0.13.1)
99
+ coderay (~> 1.1)
100
+ method_source (~> 1.0)
101
+ pry-byebug (3.9.0)
102
+ byebug (~> 11.0)
103
+ pry (~> 0.13.0)
104
+ rack (2.2.3)
105
+ rack-test (1.1.0)
106
+ rack (>= 1.0, < 3)
107
+ rails (6.0.3.4)
108
+ actioncable (= 6.0.3.4)
109
+ actionmailbox (= 6.0.3.4)
110
+ actionmailer (= 6.0.3.4)
111
+ actionpack (= 6.0.3.4)
112
+ actiontext (= 6.0.3.4)
113
+ actionview (= 6.0.3.4)
114
+ activejob (= 6.0.3.4)
115
+ activemodel (= 6.0.3.4)
116
+ activerecord (= 6.0.3.4)
117
+ activestorage (= 6.0.3.4)
118
+ activesupport (= 6.0.3.4)
119
+ bundler (>= 1.3.0)
120
+ railties (= 6.0.3.4)
121
+ sprockets-rails (>= 2.0.0)
122
+ rails-dom-testing (2.0.3)
123
+ activesupport (>= 4.2.0)
124
+ nokogiri (>= 1.6)
125
+ rails-html-sanitizer (1.3.0)
126
+ loofah (~> 2.3)
127
+ railties (6.0.3.4)
128
+ actionpack (= 6.0.3.4)
129
+ activesupport (= 6.0.3.4)
130
+ method_source
131
+ rake (>= 0.8.7)
132
+ thor (>= 0.20.3, < 2.0)
133
+ rake (13.0.1)
134
+ rspec (3.9.0)
135
+ rspec-core (~> 3.9.0)
136
+ rspec-expectations (~> 3.9.0)
137
+ rspec-mocks (~> 3.9.0)
138
+ rspec-core (3.9.3)
139
+ rspec-support (~> 3.9.3)
140
+ rspec-expectations (3.9.2)
141
+ diff-lcs (>= 1.2.0, < 2.0)
142
+ rspec-support (~> 3.9.0)
143
+ rspec-mocks (3.9.1)
144
+ diff-lcs (>= 1.2.0, < 2.0)
145
+ rspec-support (~> 3.9.0)
146
+ rspec-support (3.9.3)
147
+ sorbet (0.5.5991)
148
+ sorbet-static (= 0.5.5991)
149
+ sorbet-runtime (0.5.5991)
150
+ sorbet-static (0.5.5991-universal-darwin-19)
151
+ sprockets (4.0.2)
152
+ concurrent-ruby (~> 1.0)
153
+ rack (> 1, < 3)
154
+ sprockets-rails (3.2.2)
155
+ actionpack (>= 4.0)
156
+ activesupport (>= 4.0)
157
+ sprockets (>= 3.0.0)
158
+ sqlite3 (1.4.2)
159
+ thor (1.0.1)
160
+ thread_safe (0.3.6)
161
+ tty-color (0.5.2)
162
+ tty-cursor (0.7.1)
163
+ tty-prompt (0.22.0)
164
+ pastel (~> 0.8)
165
+ tty-reader (~> 0.8)
166
+ tty-reader (0.8.0)
167
+ tty-cursor (~> 0.7)
168
+ tty-screen (~> 0.8)
169
+ wisper (~> 2.0)
170
+ tty-screen (0.8.1)
171
+ tzinfo (1.2.7)
172
+ thread_safe (~> 0.1)
173
+ websocket-driver (0.7.3)
174
+ websocket-extensions (>= 0.1.0)
175
+ websocket-extensions (0.1.5)
176
+ wisper (2.0.1)
177
+ zeitwerk (2.4.0)
178
+
179
+ PLATFORMS
180
+ ruby
181
+
182
+ DEPENDENCIES
183
+ appraisal
184
+ bundler (~> 2.0)
185
+ lazy_migrate!
186
+ pry-byebug (~> 3.9.0)
187
+ rails (= 6.0.3.4)
188
+ rake (~> 13.0)
189
+ rspec (~> 3.0)
190
+ sorbet
191
+ sqlite3 (~> 1.4.2)
192
+
193
+ BUNDLED WITH
194
+ 2.1.4