sunrise-cms 1.1.0 → 2.0.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 (93) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/tests.yml +49 -0
  3. data/.gitignore +1 -0
  4. data/.rubocop.yml +3 -1
  5. data/.ruby-version +1 -1
  6. data/CHANGELOG.rdoc +13 -3
  7. data/Gemfile +11 -22
  8. data/Gemfile.lock +344 -214
  9. data/README.md +47 -33
  10. data/Rakefile +1 -0
  11. data/app/assets/config/manifest.js +1 -0
  12. data/app/assets/images/sunrise/icons/export.svg +4 -0
  13. data/app/assets/images/sunrise/icons/import.svg +5 -0
  14. data/app/assets/javascripts/sunrise/application.js +2 -5
  15. data/app/assets/javascripts/sunrise/jquery.dialog.js.coffee +113 -40
  16. data/app/assets/javascripts/sunrise/jquery.editable.js.coffee +21 -21
  17. data/app/assets/javascripts/sunrise/manage.js.coffee +29 -28
  18. data/app/assets/stylesheets/sunrise/application.css +0 -1
  19. data/app/assets/stylesheets/sunrise/customize.css +7 -4
  20. data/app/assets/stylesheets/sunrise/main.css +883 -606
  21. data/app/controllers/sunrise/manager_controller.rb +44 -7
  22. data/app/controllers/sunrise/settings_controller.rb +2 -3
  23. data/app/helpers/sunrise/structure_helper.rb +2 -2
  24. data/app/views/layouts/sunrise/application.html.erb +9 -6
  25. data/app/views/sunrise/manager/_field.html.erb +5 -5
  26. data/app/views/sunrise/manager/_form.html.erb +15 -15
  27. data/app/views/sunrise/manager/_header_edit.html.erb +3 -4
  28. data/app/views/sunrise/manager/_header_new.html.erb +3 -3
  29. data/app/views/sunrise/manager/_header_show.html.erb +9 -13
  30. data/app/views/sunrise/manager/_nested_field.html.erb +6 -6
  31. data/app/views/sunrise/manager/buttons/_export.html.erb +9 -2
  32. data/app/views/sunrise/manager/buttons/_import.html.erb +25 -0
  33. data/app/views/sunrise/manager/buttons/_sort.html.erb +3 -3
  34. data/app/views/sunrise/manager/edit.html.erb +1 -1
  35. data/app/views/sunrise/manager/new.html.erb +1 -1
  36. data/app/views/sunrise/manager/structures/thumbs/_record.html.erb +19 -16
  37. data/app/views/sunrise/manager/thumbs/_record.html.erb +26 -22
  38. data/app/views/sunrise/manager/tree/index.html.erb +1 -1
  39. data/app/views/sunrise/settings/_form.html.erb +5 -5
  40. data/app/views/sunrise/settings/_header_edit.html.erb +3 -4
  41. data/config/locales/sunrise/en.yml +35 -35
  42. data/config/locales/sunrise/ru.yml +35 -35
  43. data/config/locales/sunrise/uk.yml +35 -35
  44. data/config/routes.rb +1 -0
  45. data/db/migrate/20111216144515_create_assets.rb +1 -1
  46. data/db/migrate/20111216144915_create_structures.rb +1 -1
  47. data/db/migrate/20111216145015_create_users.rb +1 -1
  48. data/db/migrate/20120611095315_create_settings.rb +1 -1
  49. data/lib/generators/sunrise/templates/config/active_record/sunrise.rb +0 -4
  50. data/lib/generators/sunrise/templates/config/mongoid/sunrise.rb +0 -4
  51. data/lib/generators/sunrise/templates/models/active_record/attachment_file.rb +0 -2
  52. data/lib/generators/sunrise/templates/models/active_record/avatar.rb +0 -2
  53. data/lib/generators/sunrise/templates/models/active_record/picture.rb +0 -2
  54. data/lib/generators/sunrise/templates/models/active_record/position_type.rb +4 -4
  55. data/lib/generators/sunrise/templates/models/active_record/role_type.rb +5 -5
  56. data/lib/generators/sunrise/templates/models/active_record/settings.rb +14 -2
  57. data/lib/generators/sunrise/templates/models/active_record/structure_type.rb +6 -6
  58. data/lib/generators/sunrise/templates/models/mongoid/attachment_file.rb +0 -2
  59. data/lib/generators/sunrise/templates/models/mongoid/avatar.rb +0 -2
  60. data/lib/generators/sunrise/templates/models/mongoid/picture.rb +0 -2
  61. data/lib/generators/sunrise/templates/models/mongoid/position_type.rb +4 -4
  62. data/lib/generators/sunrise/templates/models/mongoid/role_type.rb +5 -5
  63. data/lib/generators/sunrise/templates/models/mongoid/structure_type.rb +6 -6
  64. data/lib/generators/sunrise/templates/models/sunrise/sunrise_structure.rb +2 -2
  65. data/lib/generators/sunrise/templates/spec/controllers/pages_controller_spec.rb +2 -2
  66. data/lib/generators/sunrise/templates/spec/controllers/welcome_controller_spec.rb +1 -1
  67. data/lib/generators/sunrise/templates/spec/factories/structure_factory.rb +2 -2
  68. data/lib/generators/sunrise/templates/spec/factories/user_factory.rb +6 -6
  69. data/lib/generators/sunrise/templates/spec/spec_helper.rb +1 -1
  70. data/lib/generators/sunrise/templates/spec/support/helpers/controller_macros.rb +4 -4
  71. data/lib/generators/sunrise/templates/uploaders/attachment_file_uploader.rb +4 -0
  72. data/lib/generators/sunrise/templates/uploaders/avatar_uploader.rb +4 -0
  73. data/lib/generators/sunrise/templates/uploaders/picture_uploader.rb +4 -0
  74. data/lib/sunrise/abstract_model.rb +13 -3
  75. data/lib/sunrise/carrierwave/glue.rb +1 -7
  76. data/lib/sunrise/config/model.rb +4 -0
  77. data/lib/sunrise/config.rb +0 -5
  78. data/lib/sunrise/core_ext/string.rb +0 -5
  79. data/lib/sunrise/engine.rb +7 -1
  80. data/lib/sunrise/models/ability.rb +8 -8
  81. data/lib/sunrise/models/position_type.rb +1 -7
  82. data/lib/sunrise/models/role_type.rb +4 -6
  83. data/lib/sunrise/models/structure.rb +3 -3
  84. data/lib/sunrise/models/structure_type.rb +1 -7
  85. data/lib/sunrise/models/user.rb +4 -4
  86. data/lib/sunrise/utils.rb +1 -2
  87. data/lib/sunrise/version.rb +1 -1
  88. data/lib/sunrise/views/search_wrapper.rb +1 -1
  89. data/sunrise-cms.gemspec +8 -13
  90. metadata +24 -65
  91. data/.rspec +0 -2
  92. data/lib/sunrise/carrierwave/file_size_validator.rb +0 -75
  93. data/lib/sunrise/utils/transliteration.rb +0 -73
data/Gemfile.lock CHANGED
@@ -1,96 +1,142 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- sunrise-cms (1.1.0)
5
- babosa
6
- cancan
7
- cancan_namespace
4
+ sunrise-cms (2.0.0)
5
+ cancancan
8
6
  carrierwave
9
7
  galetahub-enum_field
10
- jquery-ui-rails (>= 5.0.0)
8
+ jquery-ui-rails
11
9
  kaminari
12
- meta_manager (>= 0.2.0)
10
+ meta_manager
13
11
  mime-types
14
12
  mini_magick
15
- page_parts (>= 0.1.3)
16
- public_activity (>= 1.0.0)
13
+ page_parts
14
+ public_activity
17
15
  rails (>= 4.0.0)
18
- rails-settings-cached (>= 0.4.0)
16
+ rails-settings-cached
19
17
  rails-uploader
20
- select2-rails
21
18
  simple_form
22
19
 
23
20
  GEM
24
21
  remote: https://rubygems.org/
25
22
  specs:
26
- actionmailer (4.2.11.1)
27
- actionpack (= 4.2.11.1)
28
- actionview (= 4.2.11.1)
29
- activejob (= 4.2.11.1)
30
- mail (~> 2.5, >= 2.5.4)
31
- rails-dom-testing (~> 1.0, >= 1.0.5)
32
- actionpack (4.2.11.1)
33
- actionview (= 4.2.11.1)
34
- activesupport (= 4.2.11.1)
35
- rack (~> 1.6)
36
- rack-test (~> 0.6.2)
37
- rails-dom-testing (~> 1.0, >= 1.0.5)
38
- rails-html-sanitizer (~> 1.0, >= 1.0.2)
39
- actionview (4.2.11.1)
40
- activesupport (= 4.2.11.1)
41
- builder (~> 3.1)
42
- erubis (~> 2.7.0)
43
- rails-dom-testing (~> 1.0, >= 1.0.5)
44
- rails-html-sanitizer (~> 1.0, >= 1.0.3)
45
- activejob (4.2.11.1)
46
- activesupport (= 4.2.11.1)
47
- globalid (>= 0.3.0)
48
- activemodel (4.2.11.1)
49
- activesupport (= 4.2.11.1)
23
+ actioncable (7.2.2.1)
24
+ actionpack (= 7.2.2.1)
25
+ activesupport (= 7.2.2.1)
26
+ nio4r (~> 2.0)
27
+ websocket-driver (>= 0.6.1)
28
+ zeitwerk (~> 2.6)
29
+ actionmailbox (7.2.2.1)
30
+ actionpack (= 7.2.2.1)
31
+ activejob (= 7.2.2.1)
32
+ activerecord (= 7.2.2.1)
33
+ activestorage (= 7.2.2.1)
34
+ activesupport (= 7.2.2.1)
35
+ mail (>= 2.8.0)
36
+ actionmailer (7.2.2.1)
37
+ actionpack (= 7.2.2.1)
38
+ actionview (= 7.2.2.1)
39
+ activejob (= 7.2.2.1)
40
+ activesupport (= 7.2.2.1)
41
+ mail (>= 2.8.0)
42
+ rails-dom-testing (~> 2.2)
43
+ actionpack (7.2.2.1)
44
+ actionview (= 7.2.2.1)
45
+ activesupport (= 7.2.2.1)
46
+ nokogiri (>= 1.8.5)
47
+ racc
48
+ rack (>= 2.2.4, < 3.2)
49
+ rack-session (>= 1.0.1)
50
+ rack-test (>= 0.6.3)
51
+ rails-dom-testing (~> 2.2)
52
+ rails-html-sanitizer (~> 1.6)
53
+ useragent (~> 0.16)
54
+ actiontext (7.2.2.1)
55
+ actionpack (= 7.2.2.1)
56
+ activerecord (= 7.2.2.1)
57
+ activestorage (= 7.2.2.1)
58
+ activesupport (= 7.2.2.1)
59
+ globalid (>= 0.6.0)
60
+ nokogiri (>= 1.8.5)
61
+ actionview (7.2.2.1)
62
+ activesupport (= 7.2.2.1)
50
63
  builder (~> 3.1)
51
- activerecord (4.2.11.1)
52
- activemodel (= 4.2.11.1)
53
- activesupport (= 4.2.11.1)
54
- arel (~> 6.0)
55
- activesupport (4.2.11.1)
56
- i18n (~> 0.7)
57
- minitest (~> 5.1)
58
- thread_safe (~> 0.3, >= 0.3.4)
59
- tzinfo (~> 1.1)
60
- addressable (2.7.0)
61
- public_suffix (>= 2.0.2, < 5.0)
62
- arel (6.0.4)
63
- awesome_nested_set (3.2.0)
64
- activerecord (>= 4.0.0, < 7.0)
65
- babosa (1.0.3)
66
- bcrypt (3.1.13)
67
- builder (3.2.4)
68
- cancan (1.6.10)
69
- cancan_namespace (0.1.3)
70
- cancan (>= 1.6.3)
71
- capybara (3.31.0)
64
+ erubi (~> 1.11)
65
+ rails-dom-testing (~> 2.2)
66
+ rails-html-sanitizer (~> 1.6)
67
+ activejob (7.2.2.1)
68
+ activesupport (= 7.2.2.1)
69
+ globalid (>= 0.3.6)
70
+ activemodel (7.2.2.1)
71
+ activesupport (= 7.2.2.1)
72
+ activerecord (7.2.2.1)
73
+ activemodel (= 7.2.2.1)
74
+ activesupport (= 7.2.2.1)
75
+ timeout (>= 0.4.0)
76
+ activestorage (7.2.2.1)
77
+ actionpack (= 7.2.2.1)
78
+ activejob (= 7.2.2.1)
79
+ activerecord (= 7.2.2.1)
80
+ activesupport (= 7.2.2.1)
81
+ marcel (~> 1.0)
82
+ activesupport (7.2.2.1)
83
+ base64
84
+ benchmark (>= 0.3)
85
+ bigdecimal
86
+ concurrent-ruby (~> 1.0, >= 1.3.1)
87
+ connection_pool (>= 2.2.5)
88
+ drb
89
+ i18n (>= 1.6, < 2)
90
+ logger (>= 1.4.2)
91
+ minitest (>= 5.1)
92
+ securerandom (>= 0.3)
93
+ tzinfo (~> 2.0, >= 2.0.5)
94
+ addressable (2.8.7)
95
+ public_suffix (>= 2.0.2, < 7.0)
96
+ awesome_nested_set (3.8.0)
97
+ activerecord (>= 4.0.0, < 8.1)
98
+ base64 (0.2.0)
99
+ bcrypt (3.1.20)
100
+ benchmark (0.4.0)
101
+ bigdecimal (3.1.9)
102
+ builder (3.3.0)
103
+ cancancan (3.6.1)
104
+ capybara (3.40.0)
72
105
  addressable
106
+ matrix
73
107
  mini_mime (>= 0.1.3)
74
- nokogiri (~> 1.8)
108
+ nokogiri (~> 1.11)
75
109
  rack (>= 1.6.0)
76
110
  rack-test (>= 0.6.3)
77
- regexp_parser (~> 1.5)
111
+ regexp_parser (>= 1.5, < 3.0)
78
112
  xpath (~> 3.2)
79
- carrierwave (1.3.1)
80
- activemodel (>= 4.0.0)
81
- activesupport (>= 4.0.0)
82
- mime-types (>= 1.16)
83
- coffee-rails (4.2.2)
113
+ carrierwave (3.1.2)
114
+ activemodel (>= 6.0.0)
115
+ activesupport (>= 6.0.0)
116
+ addressable (~> 2.6)
117
+ image_processing (~> 1.1)
118
+ marcel (~> 1.0.0)
119
+ ssrf_filter (~> 1.0)
120
+ childprocess (5.1.0)
121
+ logger (~> 1.5)
122
+ coffee-rails (5.0.0)
84
123
  coffee-script (>= 2.2.0)
85
- railties (>= 4.0.0)
124
+ railties (>= 5.2.0)
86
125
  coffee-script (2.4.1)
87
126
  coffee-script-source
88
127
  execjs
89
128
  coffee-script-source (1.12.2)
90
- concurrent-ruby (1.1.5)
129
+ concurrent-ruby (1.3.5)
130
+ connection_pool (2.5.3)
91
131
  crass (1.0.6)
92
- database_cleaner (1.8.2)
93
- devise (4.7.1)
132
+ database_cleaner (2.1.0)
133
+ database_cleaner-active_record (>= 2, < 3)
134
+ database_cleaner-active_record (2.2.1)
135
+ activerecord (>= 5.a)
136
+ database_cleaner-core (~> 2.0.0)
137
+ database_cleaner-core (2.0.1)
138
+ date (3.4.1)
139
+ devise (4.9.4)
94
140
  bcrypt (~> 3.0)
95
141
  orm_adapter (~> 0.1)
96
142
  railties (>= 4.1.0)
@@ -98,134 +144,210 @@ GEM
98
144
  warden (~> 1.2.3)
99
145
  devise-encryptable (0.2.0)
100
146
  devise (>= 2.1.0)
101
- diff-lcs (1.3)
102
- erubis (2.7.0)
103
- execjs (2.7.0)
104
- factory_girl (4.9.0)
147
+ diff-lcs (1.6.2)
148
+ drb (2.2.3)
149
+ erb (5.0.1)
150
+ erubi (1.13.1)
151
+ execjs (2.10.0)
152
+ factory_bot (6.5.1)
153
+ activesupport (>= 6.1.0)
154
+ factory_bot_rails (6.4.4)
155
+ factory_bot (~> 6.5)
156
+ railties (>= 5.0.0)
157
+ ffi (1.17.2-aarch64-linux-gnu)
158
+ ffi (1.17.2-aarch64-linux-musl)
159
+ ffi (1.17.2-arm-linux-gnu)
160
+ ffi (1.17.2-arm-linux-musl)
161
+ ffi (1.17.2-arm64-darwin)
162
+ ffi (1.17.2-x86_64-darwin)
163
+ ffi (1.17.2-x86_64-linux-gnu)
164
+ ffi (1.17.2-x86_64-linux-musl)
165
+ galetahub-enum_field (0.5.4)
166
+ activesupport
167
+ generator_spec (0.10.0)
105
168
  activesupport (>= 3.0.0)
106
- factory_girl_rails (4.9.0)
107
- factory_girl (~> 4.9.0)
108
169
  railties (>= 3.0.0)
109
- ffi (1.12.2)
110
- fuubar (2.5.0)
111
- rspec-core (~> 3.0)
112
- ruby-progressbar (~> 1.4)
113
- galetahub-enum_field (0.4.0)
114
- generator_spec (0.9.4)
115
- activesupport (>= 3.0.0)
116
- railties (>= 3.0.0)
117
- globalid (0.4.2)
118
- activesupport (>= 4.2.0)
119
- i18n (0.9.5)
170
+ globalid (1.2.1)
171
+ activesupport (>= 6.1)
172
+ i18n (1.14.7)
120
173
  concurrent-ruby (~> 1.0)
121
- jquery-rails (4.3.5)
122
- rails-dom-testing (>= 1, < 3)
123
- railties (>= 4.2.0)
124
- thor (>= 0.14, < 2.0)
125
- jquery-ui-rails (6.0.1)
174
+ image_processing (1.14.0)
175
+ mini_magick (>= 4.9.5, < 6)
176
+ ruby-vips (>= 2.0.17, < 3)
177
+ io-console (0.8.0)
178
+ irb (1.15.2)
179
+ pp (>= 0.6.0)
180
+ rdoc (>= 4.0.0)
181
+ reline (>= 0.4.2)
182
+ jquery-ui-rails (8.0.0)
126
183
  railties (>= 3.2.16)
127
- kaminari (1.2.0)
184
+ kaminari (1.2.2)
128
185
  activesupport (>= 4.1.0)
129
- kaminari-actionview (= 1.2.0)
130
- kaminari-activerecord (= 1.2.0)
131
- kaminari-core (= 1.2.0)
132
- kaminari-actionview (1.2.0)
186
+ kaminari-actionview (= 1.2.2)
187
+ kaminari-activerecord (= 1.2.2)
188
+ kaminari-core (= 1.2.2)
189
+ kaminari-actionview (1.2.2)
133
190
  actionview
134
- kaminari-core (= 1.2.0)
135
- kaminari-activerecord (1.2.0)
191
+ kaminari-core (= 1.2.2)
192
+ kaminari-activerecord (1.2.2)
136
193
  activerecord
137
- kaminari-core (= 1.2.0)
138
- kaminari-core (1.2.0)
139
- launchy (2.4.3)
140
- addressable (~> 2.3)
141
- libv8 (3.11.8.17)
142
- loofah (2.4.0)
194
+ kaminari-core (= 1.2.2)
195
+ kaminari-core (1.2.2)
196
+ launchy (3.1.1)
197
+ addressable (~> 2.8)
198
+ childprocess (~> 5.0)
199
+ logger (~> 1.6)
200
+ logger (1.7.0)
201
+ loofah (2.24.1)
143
202
  crass (~> 1.0.2)
144
- nokogiri (>= 1.5.9)
145
- mail (2.7.1)
203
+ nokogiri (>= 1.12.0)
204
+ mail (2.8.1)
146
205
  mini_mime (>= 0.1.1)
147
- meta_manager (0.2.3)
206
+ net-imap
207
+ net-pop
208
+ net-smtp
209
+ marcel (1.0.4)
210
+ matrix (0.4.2)
211
+ meta_manager (0.3.0)
148
212
  orm_adapter
149
- mime-types (3.3.1)
150
- mime-types-data (~> 3.2015)
151
- mime-types-data (3.2019.1009)
152
- mini_magick (4.10.1)
153
- mini_mime (1.0.2)
154
- mini_portile2 (2.4.0)
155
- minitest (5.14.0)
156
- nokogiri (1.10.7)
157
- mini_portile2 (~> 2.4.0)
213
+ mime-types (3.7.0)
214
+ logger
215
+ mime-types-data (~> 3.2025, >= 3.2025.0507)
216
+ mime-types-data (3.2025.0527)
217
+ mini_magick (5.2.0)
218
+ benchmark
219
+ logger
220
+ mini_mime (1.1.5)
221
+ minitest (5.25.5)
222
+ net-imap (0.5.8)
223
+ date
224
+ net-protocol
225
+ net-pop (0.1.2)
226
+ net-protocol
227
+ net-protocol (0.2.2)
228
+ timeout
229
+ net-smtp (0.5.1)
230
+ net-protocol
231
+ nio4r (2.7.4)
232
+ nokogiri (1.18.8-aarch64-linux-gnu)
233
+ racc (~> 1.4)
234
+ nokogiri (1.18.8-aarch64-linux-musl)
235
+ racc (~> 1.4)
236
+ nokogiri (1.18.8-arm-linux-gnu)
237
+ racc (~> 1.4)
238
+ nokogiri (1.18.8-arm-linux-musl)
239
+ racc (~> 1.4)
240
+ nokogiri (1.18.8-arm64-darwin)
241
+ racc (~> 1.4)
242
+ nokogiri (1.18.8-x86_64-darwin)
243
+ racc (~> 1.4)
244
+ nokogiri (1.18.8-x86_64-linux-gnu)
245
+ racc (~> 1.4)
246
+ nokogiri (1.18.8-x86_64-linux-musl)
247
+ racc (~> 1.4)
158
248
  orm_adapter (0.5.0)
159
249
  page_parts (0.1.4)
160
250
  rails (>= 3.0.0)
161
- pg (0.21.0)
162
- public_activity (1.6.4)
163
- actionpack (>= 3.0.0)
164
- activerecord (>= 3.0)
251
+ pg (1.5.9)
252
+ pp (0.6.2)
253
+ prettyprint
254
+ prettyprint (0.2.0)
255
+ psych (5.2.6)
256
+ date
257
+ stringio
258
+ public_activity (3.0.1)
259
+ actionpack (>= 6.1.0)
260
+ activerecord (>= 6.1)
165
261
  i18n (>= 0.5.0)
166
- railties (>= 3.0.0)
167
- public_suffix (4.0.3)
168
- rack (1.6.12)
169
- rack-test (0.6.3)
170
- rack (>= 1.0)
171
- rails (4.2.11.1)
172
- actionmailer (= 4.2.11.1)
173
- actionpack (= 4.2.11.1)
174
- actionview (= 4.2.11.1)
175
- activejob (= 4.2.11.1)
176
- activemodel (= 4.2.11.1)
177
- activerecord (= 4.2.11.1)
178
- activesupport (= 4.2.11.1)
179
- bundler (>= 1.3.0, < 2.0)
180
- railties (= 4.2.11.1)
181
- sprockets-rails
182
- rails-deprecated_sanitizer (1.0.3)
183
- activesupport (>= 4.2.0.alpha)
184
- rails-dom-testing (1.0.9)
185
- activesupport (>= 4.2.0, < 5.0)
186
- nokogiri (~> 1.6)
187
- rails-deprecated_sanitizer (>= 1.0.1)
188
- rails-html-sanitizer (1.3.0)
189
- loofah (~> 2.3)
190
- rails-settings-cached (0.4.6)
191
- rails (>= 4.2.0)
192
- rails-uploader (0.3.4)
193
- jquery-ui-rails
194
- railties (4.2.11.1)
195
- actionpack (= 4.2.11.1)
196
- activesupport (= 4.2.11.1)
197
- rake (>= 0.8.7)
198
- thor (>= 0.18.1, < 2.0)
199
- rake (13.0.1)
200
- ref (2.0.0)
201
- regexp_parser (1.6.0)
202
- responders (2.4.1)
203
- actionpack (>= 4.2.0, < 6.0)
204
- railties (>= 4.2.0, < 6.0)
205
- rspec-core (3.9.1)
206
- rspec-support (~> 3.9.1)
207
- rspec-expectations (3.9.0)
262
+ railties (>= 6.1.0)
263
+ public_suffix (6.0.2)
264
+ racc (1.8.1)
265
+ rack (3.1.15)
266
+ rack-session (2.1.1)
267
+ base64 (>= 0.1.0)
268
+ rack (>= 3.0.0)
269
+ rack-test (2.2.0)
270
+ rack (>= 1.3)
271
+ rackup (2.2.1)
272
+ rack (>= 3)
273
+ rails (7.2.2.1)
274
+ actioncable (= 7.2.2.1)
275
+ actionmailbox (= 7.2.2.1)
276
+ actionmailer (= 7.2.2.1)
277
+ actionpack (= 7.2.2.1)
278
+ actiontext (= 7.2.2.1)
279
+ actionview (= 7.2.2.1)
280
+ activejob (= 7.2.2.1)
281
+ activemodel (= 7.2.2.1)
282
+ activerecord (= 7.2.2.1)
283
+ activestorage (= 7.2.2.1)
284
+ activesupport (= 7.2.2.1)
285
+ bundler (>= 1.15.0)
286
+ railties (= 7.2.2.1)
287
+ rails-controller-testing (1.0.5)
288
+ actionpack (>= 5.0.1.rc1)
289
+ actionview (>= 5.0.1.rc1)
290
+ activesupport (>= 5.0.1.rc1)
291
+ rails-dom-testing (2.3.0)
292
+ activesupport (>= 5.0.0)
293
+ minitest
294
+ nokogiri (>= 1.6)
295
+ rails-html-sanitizer (1.6.2)
296
+ loofah (~> 2.21)
297
+ nokogiri (>= 1.15.7, != 1.16.7, != 1.16.6, != 1.16.5, != 1.16.4, != 1.16.3, != 1.16.2, != 1.16.1, != 1.16.0.rc1, != 1.16.0)
298
+ rails-settings-cached (2.9.6)
299
+ activerecord (>= 5.0.0)
300
+ railties (>= 5.0.0)
301
+ rails-uploader (0.5.9)
302
+ railties (7.2.2.1)
303
+ actionpack (= 7.2.2.1)
304
+ activesupport (= 7.2.2.1)
305
+ irb (~> 1.13)
306
+ rackup (>= 1.0.0)
307
+ rake (>= 12.2)
308
+ thor (~> 1.0, >= 1.2.2)
309
+ zeitwerk (~> 2.6)
310
+ rake (13.2.1)
311
+ rb-fsevent (0.11.2)
312
+ rb-inotify (0.11.1)
313
+ ffi (~> 1.0)
314
+ rdoc (6.14.0)
315
+ erb
316
+ psych (>= 4.0.0)
317
+ regexp_parser (2.10.0)
318
+ reline (0.6.1)
319
+ io-console (~> 0.5)
320
+ responders (3.1.1)
321
+ actionpack (>= 5.2)
322
+ railties (>= 5.2)
323
+ rspec-core (3.13.4)
324
+ rspec-support (~> 3.13.0)
325
+ rspec-expectations (3.13.5)
208
326
  diff-lcs (>= 1.2.0, < 2.0)
209
- rspec-support (~> 3.9.0)
210
- rspec-mocks (3.9.1)
327
+ rspec-support (~> 3.13.0)
328
+ rspec-mocks (3.13.5)
211
329
  diff-lcs (>= 1.2.0, < 2.0)
212
- rspec-support (~> 3.9.0)
213
- rspec-rails (3.9.0)
214
- actionpack (>= 3.0)
215
- activesupport (>= 3.0)
216
- railties (>= 3.0)
217
- rspec-core (~> 3.9.0)
218
- rspec-expectations (~> 3.9.0)
219
- rspec-mocks (~> 3.9.0)
220
- rspec-support (~> 3.9.0)
221
- rspec-support (3.9.2)
222
- ruby-progressbar (1.10.1)
223
- ruby2xlsx (0.1.0)
224
- activemodel (>= 3.1.3)
225
- writeexcel (>= 1.0.5)
330
+ rspec-support (~> 3.13.0)
331
+ rspec-rails (8.0.0)
332
+ actionpack (>= 7.2)
333
+ activesupport (>= 7.2)
334
+ railties (>= 7.2)
335
+ rspec-core (~> 3.13)
336
+ rspec-expectations (~> 3.13)
337
+ rspec-mocks (~> 3.13)
338
+ rspec-support (~> 3.13)
339
+ rspec-support (3.13.4)
340
+ ruby-vips (2.2.3)
341
+ ffi (~> 1.12)
342
+ logger
343
+ sass (3.7.4)
344
+ sass-listen (~> 4.0.0)
345
+ sass-listen (4.0.0)
346
+ rb-fsevent (~> 0.9, >= 0.9.4)
347
+ rb-inotify (~> 0.9, >= 0.9.7)
226
348
  sass-rails (6.0.0)
227
349
  sassc-rails (~> 2.1, >= 2.1.1)
228
- sassc (2.2.1)
350
+ sassc (2.4.0)
229
351
  ffi (~> 1.9)
230
352
  sassc-rails (2.1.2)
231
353
  railties (>= 4.0.0)
@@ -233,36 +355,47 @@ GEM
233
355
  sprockets (> 3.0)
234
356
  sprockets-rails
235
357
  tilt
236
- select2-rails (4.0.3)
237
- thor (~> 0.14)
238
- simple_form (4.0.0)
239
- actionpack (> 4)
240
- activemodel (> 4)
241
- sprockets (4.0.0)
358
+ securerandom (0.4.1)
359
+ simple_form (5.3.1)
360
+ actionpack (>= 5.2)
361
+ activemodel (>= 5.2)
362
+ sprockets (4.2.2)
242
363
  concurrent-ruby (~> 1.0)
243
- rack (> 1, < 3)
244
- sprockets-rails (3.2.1)
245
- actionpack (>= 4.0)
246
- activesupport (>= 4.0)
364
+ logger
365
+ rack (>= 2.2.4, < 4)
366
+ sprockets-rails (3.5.2)
367
+ actionpack (>= 6.1)
368
+ activesupport (>= 6.1)
247
369
  sprockets (>= 3.0.0)
248
- therubyracer (0.11.4)
249
- libv8 (~> 3.11.8.12)
250
- ref
251
- thor (0.20.3)
252
- thread_safe (0.3.6)
253
- tilt (2.0.10)
254
- tzinfo (1.2.6)
255
- thread_safe (~> 0.1)
256
- uglifier (4.2.0)
370
+ ssrf_filter (1.3.0)
371
+ stringio (3.1.7)
372
+ thor (1.3.2)
373
+ tilt (2.6.0)
374
+ timeout (0.4.3)
375
+ tzinfo (2.0.6)
376
+ concurrent-ruby (~> 1.0)
377
+ uglifier (4.2.1)
257
378
  execjs (>= 0.3.0, < 3)
258
- warden (1.2.7)
259
- rack (>= 1.0)
260
- writeexcel (1.0.5)
379
+ useragent (0.16.11)
380
+ warden (1.2.9)
381
+ rack (>= 2.0.9)
382
+ websocket-driver (0.8.0)
383
+ base64
384
+ websocket-extensions (>= 0.1.0)
385
+ websocket-extensions (0.1.5)
261
386
  xpath (3.2.0)
262
387
  nokogiri (~> 1.8)
388
+ zeitwerk (2.7.3)
263
389
 
264
390
  PLATFORMS
265
- ruby
391
+ aarch64-linux-gnu
392
+ aarch64-linux-musl
393
+ arm-linux-gnu
394
+ arm-linux-musl
395
+ arm64-darwin
396
+ x86_64-darwin
397
+ x86_64-linux-gnu
398
+ x86_64-linux-musl
266
399
 
267
400
  DEPENDENCIES
268
401
  activerecord
@@ -272,24 +405,21 @@ DEPENDENCIES
272
405
  database_cleaner
273
406
  devise
274
407
  devise-encryptable
275
- factory_girl_rails
276
- fuubar
277
- galetahub-enum_field (~> 0.4.0)
278
- generator_spec (~> 0.9.4)
279
- jquery-rails
408
+ factory_bot_rails
409
+ galetahub-enum_field
410
+ generator_spec
280
411
  launchy
281
- libv8 (~> 3.11.8.4)
282
- pg (~> 0.15)
283
- rails (~> 4.2, >= 4.2.11.1)
284
- rails-settings-cached (~> 0.4.0)
285
- rails-uploader (~> 0.3.4)
412
+ pg
413
+ rails (~> 7.0)
414
+ rails-controller-testing
415
+ rails-settings-cached
416
+ rails-uploader
286
417
  rspec-rails
287
- ruby-progressbar
288
- ruby2xlsx
418
+ sass
289
419
  sass-rails
420
+ sprockets
290
421
  sunrise-cms!
291
- therubyracer
292
- uglifier (>= 1.0.3)
422
+ uglifier
293
423
 
294
424
  BUNDLED WITH
295
- 1.17.3
425
+ 2.5.23