jinda 0.7.7.4 → 0.8.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.
- checksums.yaml +4 -4
- data/README.md +39 -25
- data/app/assets/config/manifest.js +4 -1
- data/lib/generators/jinda/config_generator.rb +1 -1
- data/lib/generators/jinda/install_generator.rb +3 -4
- data/lib/generators/jinda/templates/app/assets/config/manifest.js +4 -0
- data/lib/generators/jinda/templates/config/mongoid.yml +3 -3
- data/lib/generators/jinda/templates/config/mongoid.yml-docker +3 -3
- data/lib/generators/jinda/templates/config/mongoid.yml-localhost +3 -3
- data/lib/generators/jinda/templates/spec/features/userlogins_spec.rb +1 -1
- data/lib/jinda/version.rb +1 -1
- data/test/dummy/Dockerfile +2 -4
- data/test/dummy/Gemfile +6 -8
- data/test/dummy/Gemfile.lock +205 -189
- data/test/dummy/README.md.bak +24 -0
- data/test/dummy/app/assets/config/manifest.js +4 -0
- data/test/dummy/app/assets/javascripts/application.js +8 -8
- data/test/dummy/app/assets/stylesheets/application.css.bak +15 -0
- data/test/dummy/app/assets/stylesheets/{application.scss → application.css.scss} +4 -12
- data/test/dummy/app/assets/stylesheets/jinda_jqm.css.scss +32 -0
- data/test/dummy/app/mailers/application_mailer.rb +2 -2
- data/test/dummy/app/mailers/application_mailer.rb-org +4 -0
- data/test/dummy/app/views/identities/new.html.haml +0 -13
- data/test/dummy/app/views/layouts/application.haml +4 -51
- data/test/dummy/app/views/sessions/new.html.haml +0 -13
- data/test/dummy/config/credentials.yml.enc +1 -1
- data/test/dummy/config/environments/test.rb +1 -1
- data/test/dummy/config/initializers/content_security_policy.rb +5 -4
- data/test/dummy/config/initializers/filter_parameter_logging.rb +1 -3
- data/test/dummy/config/mongoid.yml +54 -40
- data/test/dummy/config/mongoid.yml-docker +3 -3
- data/test/dummy/config/mongoid.yml-localhost +3 -3
- data/test/dummy/docker-compose.yml +0 -4
- data/test/dummy/log/development.log +2 -2331
- data/test/dummy/spec/features/userlogins_spec.rb +1 -1
- data/test/dummy/tmp/development_secret.txt +1 -1
- data/test/integration/config_generator_test.rb +28 -0
- metadata +9 -19
- data/test/dummy/Guardfile +0 -96
- data/test/dummy/app/assets/stylesheets/jinda.scss +0 -253
- data/test/dummy/app/controllers/adminltes_controller.rb +0 -2
- data/test/dummy/app/views/adminltes/dashboard1.haml +0 -461
- data/test/dummy/app/views/adminltes/dashboard2.haml +0 -656
- data/test/dummy/app/views/identities/new-bak.html.haml +0 -32
- data/test/dummy/app/views/layouts/application.haml.bak +0 -4
- data/test/dummy/app/views/layouts/lte/_flash.haml +0 -9
- data/test/dummy/app/views/layouts/lte/_footer.haml +0 -7
- data/test/dummy/app/views/layouts/lte/_header.haml +0 -111
- data/test/dummy/app/views/layouts/lte/_menu.haml +0 -42
- data/test/dummy/app/views/layouts/lte/_menu_mm.haml +0 -36
- data/test/dummy/app/views/layouts/lte/_rightbar.haml +0 -123
- data/test/dummy/app/views/layouts/lte/_sidebar.haml +0 -154
- data/test/dummy/app/views/sessions/new-bak.html.haml +0 -22
- /data/lib/generators/jinda/templates/app/mailers/{application_mailer.rb → application_mailer.rb-org} +0 -0
data/test/dummy/Gemfile.lock
CHANGED
@@ -1,130 +1,143 @@
|
|
1
|
+
PATH
|
2
|
+
remote: ../../../jinda_adminlte
|
3
|
+
specs:
|
4
|
+
jinda_adminlte (0.7.5.1)
|
5
|
+
|
6
|
+
PATH
|
7
|
+
remote: ../..
|
8
|
+
specs:
|
9
|
+
jinda (0.7.7.2)
|
10
|
+
rexml (~> 3.2)
|
11
|
+
|
1
12
|
GEM
|
2
13
|
remote: https://rubygems.org/
|
3
14
|
specs:
|
4
|
-
actioncable (7.0.
|
5
|
-
actionpack (= 7.0.
|
6
|
-
activesupport (= 7.0.
|
15
|
+
actioncable (7.0.8.1)
|
16
|
+
actionpack (= 7.0.8.1)
|
17
|
+
activesupport (= 7.0.8.1)
|
7
18
|
nio4r (~> 2.0)
|
8
19
|
websocket-driver (>= 0.6.1)
|
9
|
-
actionmailbox (7.0.
|
10
|
-
actionpack (= 7.0.
|
11
|
-
activejob (= 7.0.
|
12
|
-
activerecord (= 7.0.
|
13
|
-
activestorage (= 7.0.
|
14
|
-
activesupport (= 7.0.
|
20
|
+
actionmailbox (7.0.8.1)
|
21
|
+
actionpack (= 7.0.8.1)
|
22
|
+
activejob (= 7.0.8.1)
|
23
|
+
activerecord (= 7.0.8.1)
|
24
|
+
activestorage (= 7.0.8.1)
|
25
|
+
activesupport (= 7.0.8.1)
|
15
26
|
mail (>= 2.7.1)
|
16
27
|
net-imap
|
17
28
|
net-pop
|
18
29
|
net-smtp
|
19
|
-
actionmailer (7.0.
|
20
|
-
actionpack (= 7.0.
|
21
|
-
actionview (= 7.0.
|
22
|
-
activejob (= 7.0.
|
23
|
-
activesupport (= 7.0.
|
30
|
+
actionmailer (7.0.8.1)
|
31
|
+
actionpack (= 7.0.8.1)
|
32
|
+
actionview (= 7.0.8.1)
|
33
|
+
activejob (= 7.0.8.1)
|
34
|
+
activesupport (= 7.0.8.1)
|
24
35
|
mail (~> 2.5, >= 2.5.4)
|
25
36
|
net-imap
|
26
37
|
net-pop
|
27
38
|
net-smtp
|
28
39
|
rails-dom-testing (~> 2.0)
|
29
|
-
actionpack (7.0.
|
30
|
-
actionview (= 7.0.
|
31
|
-
activesupport (= 7.0.
|
32
|
-
rack (~> 2.0, >= 2.2.
|
40
|
+
actionpack (7.0.8.1)
|
41
|
+
actionview (= 7.0.8.1)
|
42
|
+
activesupport (= 7.0.8.1)
|
43
|
+
rack (~> 2.0, >= 2.2.4)
|
33
44
|
rack-test (>= 0.6.3)
|
34
45
|
rails-dom-testing (~> 2.0)
|
35
46
|
rails-html-sanitizer (~> 1.0, >= 1.2.0)
|
36
|
-
actiontext (7.0.
|
37
|
-
actionpack (= 7.0.
|
38
|
-
activerecord (= 7.0.
|
39
|
-
activestorage (= 7.0.
|
40
|
-
activesupport (= 7.0.
|
47
|
+
actiontext (7.0.8.1)
|
48
|
+
actionpack (= 7.0.8.1)
|
49
|
+
activerecord (= 7.0.8.1)
|
50
|
+
activestorage (= 7.0.8.1)
|
51
|
+
activesupport (= 7.0.8.1)
|
41
52
|
globalid (>= 0.6.0)
|
42
53
|
nokogiri (>= 1.8.5)
|
43
|
-
actionview (7.0.
|
44
|
-
activesupport (= 7.0.
|
54
|
+
actionview (7.0.8.1)
|
55
|
+
activesupport (= 7.0.8.1)
|
45
56
|
builder (~> 3.1)
|
46
57
|
erubi (~> 1.4)
|
47
58
|
rails-dom-testing (~> 2.0)
|
48
59
|
rails-html-sanitizer (~> 1.1, >= 1.2.0)
|
49
|
-
activejob (7.0.
|
50
|
-
activesupport (= 7.0.
|
60
|
+
activejob (7.0.8.1)
|
61
|
+
activesupport (= 7.0.8.1)
|
51
62
|
globalid (>= 0.3.6)
|
52
|
-
activemodel (7.0.
|
53
|
-
activesupport (= 7.0.
|
54
|
-
activerecord (7.0.
|
55
|
-
activemodel (= 7.0.
|
56
|
-
activesupport (= 7.0.
|
57
|
-
activestorage (7.0.
|
58
|
-
actionpack (= 7.0.
|
59
|
-
activejob (= 7.0.
|
60
|
-
activerecord (= 7.0.
|
61
|
-
activesupport (= 7.0.
|
63
|
+
activemodel (7.0.8.1)
|
64
|
+
activesupport (= 7.0.8.1)
|
65
|
+
activerecord (7.0.8.1)
|
66
|
+
activemodel (= 7.0.8.1)
|
67
|
+
activesupport (= 7.0.8.1)
|
68
|
+
activestorage (7.0.8.1)
|
69
|
+
actionpack (= 7.0.8.1)
|
70
|
+
activejob (= 7.0.8.1)
|
71
|
+
activerecord (= 7.0.8.1)
|
72
|
+
activesupport (= 7.0.8.1)
|
62
73
|
marcel (~> 1.0)
|
63
74
|
mini_mime (>= 1.1.0)
|
64
|
-
activesupport (7.0.
|
75
|
+
activesupport (7.0.8.1)
|
65
76
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
66
77
|
i18n (>= 1.6, < 2)
|
67
78
|
minitest (>= 5.1)
|
68
79
|
tzinfo (~> 2.0)
|
69
|
-
addressable (2.8.
|
80
|
+
addressable (2.8.6)
|
70
81
|
public_suffix (>= 2.0.2, < 6.0)
|
71
82
|
aws_cf_signer (0.1.3)
|
72
|
-
|
83
|
+
base64 (0.2.0)
|
84
|
+
bcrypt (3.1.20)
|
73
85
|
bcrypt-ruby (3.1.5)
|
74
86
|
bcrypt (>= 3.1.3)
|
75
|
-
better_errors (2.
|
76
|
-
coderay (>= 1.0.0)
|
87
|
+
better_errors (2.10.1)
|
77
88
|
erubi (>= 1.0.0)
|
78
89
|
rack (>= 0.9.0)
|
90
|
+
rouge (>= 1.0.0)
|
91
|
+
bigdecimal (3.1.6)
|
79
92
|
bindex (0.8.1)
|
80
|
-
binding_of_caller (1.0.
|
81
|
-
debug_inspector (>=
|
82
|
-
bootsnap (1.
|
93
|
+
binding_of_caller (1.0.1)
|
94
|
+
debug_inspector (>= 1.2.0)
|
95
|
+
bootsnap (1.18.3)
|
83
96
|
msgpack (~> 1.2)
|
84
|
-
bson (4.
|
97
|
+
bson (4.15.0)
|
85
98
|
builder (3.2.4)
|
86
99
|
byebug (11.1.3)
|
87
|
-
capybara (3.
|
100
|
+
capybara (3.40.0)
|
88
101
|
addressable
|
89
102
|
matrix
|
90
103
|
mini_mime (>= 0.1.3)
|
91
|
-
nokogiri (~> 1.
|
104
|
+
nokogiri (~> 1.11)
|
92
105
|
rack (>= 1.6.0)
|
93
106
|
rack-test (>= 0.6.3)
|
94
107
|
regexp_parser (>= 1.5, < 3.0)
|
95
108
|
xpath (~> 3.2)
|
96
|
-
climate_control (
|
109
|
+
climate_control (1.2.0)
|
97
110
|
cloudinary (1.13.2)
|
98
111
|
aws_cf_signer
|
99
112
|
rest-client
|
100
113
|
coderay (1.1.3)
|
101
|
-
concurrent-ruby (1.
|
114
|
+
concurrent-ruby (1.2.3)
|
102
115
|
crass (1.0.6)
|
103
116
|
database_cleaner-core (2.0.1)
|
104
117
|
database_cleaner-mongoid (2.0.1)
|
105
118
|
database_cleaner-core (~> 2.0.0)
|
106
119
|
mongoid
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
dotenv (
|
115
|
-
dotenv-rails (
|
116
|
-
dotenv (=
|
117
|
-
railties (>=
|
118
|
-
erubi (1.
|
120
|
+
date (3.3.4)
|
121
|
+
debug (1.9.1)
|
122
|
+
irb (~> 1.10)
|
123
|
+
reline (>= 0.3.8)
|
124
|
+
debug_inspector (1.2.0)
|
125
|
+
diff-lcs (1.5.1)
|
126
|
+
domain_name (0.6.20240107)
|
127
|
+
dotenv (3.1.0)
|
128
|
+
dotenv-rails (3.1.0)
|
129
|
+
dotenv (= 3.1.0)
|
130
|
+
railties (>= 6.1)
|
131
|
+
erubi (1.12.0)
|
119
132
|
erubis (2.7.0)
|
120
|
-
factory_bot (6.
|
133
|
+
factory_bot (6.4.6)
|
121
134
|
activesupport (>= 5.0.0)
|
122
|
-
factory_bot_rails (6.
|
123
|
-
factory_bot (~> 6.
|
135
|
+
factory_bot_rails (6.4.3)
|
136
|
+
factory_bot (~> 6.4)
|
124
137
|
railties (>= 5.0.0)
|
125
|
-
faker (3.
|
138
|
+
faker (3.2.3)
|
126
139
|
i18n (>= 1.8.11, < 2)
|
127
|
-
faraday (1.10.
|
140
|
+
faraday (1.10.3)
|
128
141
|
faraday-em_http (~> 1.0)
|
129
142
|
faraday-em_synchrony (~> 1.0)
|
130
143
|
faraday-excon (~> 1.1)
|
@@ -147,15 +160,15 @@ GEM
|
|
147
160
|
faraday-patron (1.0.0)
|
148
161
|
faraday-rack (1.0.0)
|
149
162
|
faraday-retry (1.0.3)
|
150
|
-
ffi (1.
|
163
|
+
ffi (1.16.3)
|
151
164
|
font-awesome-rails (4.7.0.8)
|
152
165
|
railties (>= 3.2, < 8.0)
|
153
166
|
font-awesome-sass (5.12.0)
|
154
167
|
sassc (>= 1.11)
|
155
168
|
formatador (1.1.0)
|
156
|
-
globalid (1.
|
157
|
-
activesupport (>=
|
158
|
-
guard (2.18.
|
169
|
+
globalid (1.2.1)
|
170
|
+
activesupport (>= 6.1)
|
171
|
+
guard (2.18.1)
|
159
172
|
formatador (>= 0.2.4)
|
160
173
|
listen (>= 2.7, < 4.0)
|
161
174
|
lumberjack (>= 1.0.12, < 2.0)
|
@@ -190,17 +203,15 @@ GEM
|
|
190
203
|
http-accept (1.7.0)
|
191
204
|
http-cookie (1.0.5)
|
192
205
|
domain_name (~> 0.5)
|
193
|
-
i18n (1.
|
206
|
+
i18n (1.14.4)
|
194
207
|
concurrent-ruby (~> 1.0)
|
195
|
-
io-console (0.
|
196
|
-
irb (1.
|
197
|
-
|
208
|
+
io-console (0.7.2)
|
209
|
+
irb (1.12.0)
|
210
|
+
rdoc
|
211
|
+
reline (>= 0.4.2)
|
198
212
|
jbuilder (2.11.5)
|
199
213
|
actionview (>= 5.0.0)
|
200
214
|
activesupport (>= 5.0.0)
|
201
|
-
jinda (0.7.7.3)
|
202
|
-
rexml (~> 3.2)
|
203
|
-
jinda_adminlte (0.7.5.1)
|
204
215
|
jquery-rails (4.3.5)
|
205
216
|
rails-dom-testing (>= 1, < 3)
|
206
217
|
railties (>= 4.2.0)
|
@@ -208,7 +219,8 @@ GEM
|
|
208
219
|
jquery-turbolinks (2.1.0)
|
209
220
|
railties (>= 3.1.0)
|
210
221
|
turbolinks
|
211
|
-
jwt (2.
|
222
|
+
jwt (2.8.1)
|
223
|
+
base64
|
212
224
|
kaminari (1.2.0)
|
213
225
|
activesupport (>= 4.1.0)
|
214
226
|
kaminari-actionview (= 1.2.0)
|
@@ -224,62 +236,62 @@ GEM
|
|
224
236
|
kaminari-mongoid (1.0.1)
|
225
237
|
kaminari-core (~> 1.0)
|
226
238
|
mongoid
|
227
|
-
kt-paperclip (7.
|
239
|
+
kt-paperclip (7.2.2)
|
228
240
|
activemodel (>= 4.2.0)
|
229
241
|
activesupport (>= 4.2.0)
|
230
242
|
marcel (~> 1.0.1)
|
231
243
|
mime-types
|
232
|
-
terrapin (
|
233
|
-
listen (3.
|
244
|
+
terrapin (>= 0.6.0, < 2.0)
|
245
|
+
listen (3.9.0)
|
234
246
|
rb-fsevent (~> 0.10, >= 0.10.3)
|
235
247
|
rb-inotify (~> 0.9, >= 0.9.10)
|
236
|
-
loofah (2.
|
248
|
+
loofah (2.22.0)
|
237
249
|
crass (~> 1.0.2)
|
238
|
-
nokogiri (>= 1.
|
239
|
-
lumberjack (1.2.
|
240
|
-
mail (2.8.
|
250
|
+
nokogiri (>= 1.12.0)
|
251
|
+
lumberjack (1.2.10)
|
252
|
+
mail (2.8.1)
|
241
253
|
mini_mime (>= 0.1.1)
|
242
254
|
net-imap
|
243
255
|
net-pop
|
244
256
|
net-smtp
|
245
|
-
marcel (1.0.
|
257
|
+
marcel (1.0.4)
|
246
258
|
maruku (0.7.3)
|
247
259
|
matrix (0.4.2)
|
248
|
-
meta-tags (2.
|
249
|
-
actionpack (>=
|
260
|
+
meta-tags (2.20.0)
|
261
|
+
actionpack (>= 6.0.0, < 7.2)
|
250
262
|
method_source (1.0.0)
|
251
|
-
mime-types (3.
|
263
|
+
mime-types (3.5.2)
|
252
264
|
mime-types-data (~> 3.2015)
|
253
|
-
mime-types-data (3.
|
254
|
-
mini_mime (1.1.
|
255
|
-
minitest (5.
|
256
|
-
mongo (2.
|
257
|
-
bson (>= 4.
|
258
|
-
mongoid (
|
259
|
-
activemodel (>= 5.1, < 7.
|
260
|
-
|
265
|
+
mime-types-data (3.2024.0305)
|
266
|
+
mini_mime (1.1.5)
|
267
|
+
minitest (5.22.2)
|
268
|
+
mongo (2.19.3)
|
269
|
+
bson (>= 4.14.1, < 5.0.0)
|
270
|
+
mongoid (8.1.5)
|
271
|
+
activemodel (>= 5.1, < 7.2, != 7.0.0)
|
272
|
+
concurrent-ruby (>= 1.0.5, < 2.0)
|
273
|
+
mongo (>= 2.18.0, < 3.0.0)
|
261
274
|
ruby2_keywords (~> 0.0.5)
|
262
275
|
mongoid-paperclip (0.1.0)
|
263
276
|
kt-paperclip
|
264
277
|
mongoid
|
265
|
-
msgpack (1.
|
278
|
+
msgpack (1.7.2)
|
266
279
|
multi_json (1.15.0)
|
267
280
|
multi_xml (0.6.0)
|
268
|
-
multipart-post (2.
|
281
|
+
multipart-post (2.4.0)
|
269
282
|
nenv (0.3.0)
|
270
|
-
net-imap (0.
|
283
|
+
net-imap (0.4.10)
|
284
|
+
date
|
271
285
|
net-protocol
|
272
286
|
net-pop (0.1.2)
|
273
287
|
net-protocol
|
274
|
-
net-protocol (0.
|
288
|
+
net-protocol (0.2.2)
|
275
289
|
timeout
|
276
|
-
net-smtp (0.
|
290
|
+
net-smtp (0.4.0.1)
|
277
291
|
net-protocol
|
278
292
|
netrc (0.11.0)
|
279
|
-
nio4r (2.
|
280
|
-
nokogiri (1.
|
281
|
-
racc (~> 1.4)
|
282
|
-
nokogiri (1.13.9-arm64-darwin)
|
293
|
+
nio4r (2.7.0)
|
294
|
+
nokogiri (1.16.2-arm64-darwin)
|
283
295
|
racc (~> 1.4)
|
284
296
|
normalize-rails (8.0.1)
|
285
297
|
notiffany (0.1.3)
|
@@ -306,98 +318,105 @@ GEM
|
|
306
318
|
omniauth-oauth2 (1.6.0)
|
307
319
|
oauth2 (~> 1.1)
|
308
320
|
omniauth (~> 1.9)
|
309
|
-
pdf-core (0.
|
310
|
-
prawn (2.
|
311
|
-
|
312
|
-
|
313
|
-
|
321
|
+
pdf-core (0.10.0)
|
322
|
+
prawn (2.5.0)
|
323
|
+
matrix (~> 0.4)
|
324
|
+
pdf-core (~> 0.10.0)
|
325
|
+
ttfunk (~> 1.8)
|
326
|
+
pry (0.14.2)
|
314
327
|
coderay (~> 1.1)
|
315
328
|
method_source (~> 1.0)
|
316
329
|
pry-byebug (3.10.1)
|
317
330
|
byebug (~> 11.0)
|
318
331
|
pry (>= 0.13, < 0.15)
|
319
|
-
|
320
|
-
|
332
|
+
psych (5.1.2)
|
333
|
+
stringio
|
334
|
+
public_suffix (5.0.4)
|
335
|
+
puma (5.6.8)
|
321
336
|
nio4r (~> 2.0)
|
322
|
-
racc (1.
|
323
|
-
rack (2.2.
|
324
|
-
rack-test (2.0
|
337
|
+
racc (1.7.3)
|
338
|
+
rack (2.2.8.1)
|
339
|
+
rack-test (2.1.0)
|
325
340
|
rack (>= 1.3)
|
326
|
-
rails (7.0.
|
327
|
-
actioncable (= 7.0.
|
328
|
-
actionmailbox (= 7.0.
|
329
|
-
actionmailer (= 7.0.
|
330
|
-
actionpack (= 7.0.
|
331
|
-
actiontext (= 7.0.
|
332
|
-
actionview (= 7.0.
|
333
|
-
activejob (= 7.0.
|
334
|
-
activemodel (= 7.0.
|
335
|
-
activerecord (= 7.0.
|
336
|
-
activestorage (= 7.0.
|
337
|
-
activesupport (= 7.0.
|
341
|
+
rails (7.0.8.1)
|
342
|
+
actioncable (= 7.0.8.1)
|
343
|
+
actionmailbox (= 7.0.8.1)
|
344
|
+
actionmailer (= 7.0.8.1)
|
345
|
+
actionpack (= 7.0.8.1)
|
346
|
+
actiontext (= 7.0.8.1)
|
347
|
+
actionview (= 7.0.8.1)
|
348
|
+
activejob (= 7.0.8.1)
|
349
|
+
activemodel (= 7.0.8.1)
|
350
|
+
activerecord (= 7.0.8.1)
|
351
|
+
activestorage (= 7.0.8.1)
|
352
|
+
activesupport (= 7.0.8.1)
|
338
353
|
bundler (>= 1.15.0)
|
339
|
-
railties (= 7.0.
|
340
|
-
rails-dom-testing (2.0
|
341
|
-
activesupport (>=
|
354
|
+
railties (= 7.0.8.1)
|
355
|
+
rails-dom-testing (2.2.0)
|
356
|
+
activesupport (>= 5.0.0)
|
357
|
+
minitest
|
342
358
|
nokogiri (>= 1.6)
|
343
|
-
rails-html-sanitizer (1.
|
344
|
-
loofah (~> 2.
|
345
|
-
|
346
|
-
|
347
|
-
|
359
|
+
rails-html-sanitizer (1.6.0)
|
360
|
+
loofah (~> 2.21)
|
361
|
+
nokogiri (~> 1.14)
|
362
|
+
railties (7.0.8.1)
|
363
|
+
actionpack (= 7.0.8.1)
|
364
|
+
activesupport (= 7.0.8.1)
|
348
365
|
method_source
|
349
366
|
rake (>= 12.2)
|
350
367
|
thor (~> 1.0)
|
351
368
|
zeitwerk (~> 2.5)
|
352
|
-
rake (13.0
|
369
|
+
rake (13.1.0)
|
353
370
|
rb-fsevent (0.11.2)
|
354
371
|
rb-inotify (0.10.1)
|
355
372
|
ffi (~> 1.0)
|
356
|
-
|
357
|
-
|
358
|
-
|
373
|
+
rdoc (6.6.2)
|
374
|
+
psych (>= 4.0.0)
|
375
|
+
redcarpet (3.6.0)
|
376
|
+
regexp_parser (2.9.0)
|
377
|
+
reline (0.4.3)
|
359
378
|
io-console (~> 0.5)
|
360
379
|
rest-client (2.1.0)
|
361
380
|
http-accept (>= 1.7.0, < 2.0)
|
362
381
|
http-cookie (>= 1.0.2, < 2.0)
|
363
382
|
mime-types (>= 1.16, < 4.0)
|
364
383
|
netrc (~> 0.8)
|
365
|
-
rexml (3.2.
|
366
|
-
rouge (4.
|
367
|
-
rspec (3.
|
368
|
-
rspec-core (~> 3.
|
369
|
-
rspec-expectations (~> 3.
|
370
|
-
rspec-mocks (~> 3.
|
371
|
-
rspec-core (3.
|
372
|
-
rspec-support (~> 3.
|
373
|
-
rspec-expectations (3.
|
384
|
+
rexml (3.2.6)
|
385
|
+
rouge (4.2.0)
|
386
|
+
rspec (3.13.0)
|
387
|
+
rspec-core (~> 3.13.0)
|
388
|
+
rspec-expectations (~> 3.13.0)
|
389
|
+
rspec-mocks (~> 3.13.0)
|
390
|
+
rspec-core (3.13.0)
|
391
|
+
rspec-support (~> 3.13.0)
|
392
|
+
rspec-expectations (3.13.0)
|
374
393
|
diff-lcs (>= 1.2.0, < 2.0)
|
375
|
-
rspec-support (~> 3.
|
376
|
-
rspec-mocks (3.
|
394
|
+
rspec-support (~> 3.13.0)
|
395
|
+
rspec-mocks (3.13.0)
|
377
396
|
diff-lcs (>= 1.2.0, < 2.0)
|
378
|
-
rspec-support (~> 3.
|
379
|
-
rspec-rails (6.
|
397
|
+
rspec-support (~> 3.13.0)
|
398
|
+
rspec-rails (6.1.1)
|
380
399
|
actionpack (>= 6.1)
|
381
400
|
activesupport (>= 6.1)
|
382
401
|
railties (>= 6.1)
|
383
|
-
rspec-core (~> 3.
|
384
|
-
rspec-expectations (~> 3.
|
385
|
-
rspec-mocks (~> 3.
|
386
|
-
rspec-support (~> 3.
|
387
|
-
rspec-support (3.
|
388
|
-
rspec_junit_formatter (0.6.0)
|
389
|
-
rspec-core (>= 2, < 4, != 2.12.0)
|
402
|
+
rspec-core (~> 3.12)
|
403
|
+
rspec-expectations (~> 3.12)
|
404
|
+
rspec-mocks (~> 3.12)
|
405
|
+
rspec-support (~> 3.12)
|
406
|
+
rspec-support (3.13.1)
|
390
407
|
ruby2_keywords (0.0.5)
|
391
|
-
ruby_parser (3.
|
408
|
+
ruby_parser (3.21.0)
|
409
|
+
racc (~> 1.5)
|
392
410
|
sexp_processor (~> 4.16)
|
393
411
|
rubyzip (2.3.2)
|
394
412
|
sassc (2.4.0)
|
395
413
|
ffi (~> 1.9)
|
396
|
-
selenium-webdriver (4.
|
414
|
+
selenium-webdriver (4.18.1)
|
415
|
+
base64 (~> 0.2)
|
397
416
|
rexml (~> 3.2, >= 3.2.5)
|
398
417
|
rubyzip (>= 1.2.2, < 3.0)
|
399
418
|
websocket (~> 1.0)
|
400
|
-
sexp_processor (4.
|
419
|
+
sexp_processor (4.17.1)
|
401
420
|
shellany (0.0.1)
|
402
421
|
shoulda (4.0.0)
|
403
422
|
shoulda-context (~> 2.0)
|
@@ -405,20 +424,22 @@ GEM
|
|
405
424
|
shoulda-context (2.0.0)
|
406
425
|
shoulda-matchers (4.5.1)
|
407
426
|
activesupport (>= 4.2.0)
|
408
|
-
sprockets (4.
|
427
|
+
sprockets (4.2.1)
|
409
428
|
concurrent-ruby (~> 1.0)
|
410
|
-
rack (
|
429
|
+
rack (>= 2.2.4, < 4)
|
411
430
|
sprockets-rails (3.4.2)
|
412
431
|
actionpack (>= 5.2)
|
413
432
|
activesupport (>= 5.2)
|
414
433
|
sprockets (>= 3.0.0)
|
415
|
-
|
416
|
-
|
417
|
-
|
418
|
-
|
419
|
-
|
420
|
-
|
421
|
-
|
434
|
+
stringio (3.1.0)
|
435
|
+
temple (0.10.3)
|
436
|
+
terrapin (1.0.1)
|
437
|
+
climate_control
|
438
|
+
thor (1.3.1)
|
439
|
+
tilt (2.3.0)
|
440
|
+
timeout (0.4.1)
|
441
|
+
ttfunk (1.8.0)
|
442
|
+
bigdecimal (~> 3.1)
|
422
443
|
turbolinks (5.2.1)
|
423
444
|
turbolinks-source (~> 5.2)
|
424
445
|
turbolinks-source (5.2.0)
|
@@ -427,27 +448,23 @@ GEM
|
|
427
448
|
activesupport (>= 5.2.0)
|
428
449
|
railties (>= 5.2.0)
|
429
450
|
turbolinks-source (~> 5.1)
|
430
|
-
tzinfo (2.0.
|
451
|
+
tzinfo (2.0.6)
|
431
452
|
concurrent-ruby (~> 1.0)
|
432
|
-
unf (0.1.4)
|
433
|
-
unf_ext
|
434
|
-
unf_ext (0.0.8.2)
|
435
453
|
valid_attribute (2.0.0)
|
436
|
-
web-console (4.2.
|
454
|
+
web-console (4.2.1)
|
437
455
|
actionview (>= 6.0.0)
|
438
456
|
activemodel (>= 6.0.0)
|
439
457
|
bindex (>= 0.4.0)
|
440
458
|
railties (>= 6.0.0)
|
441
|
-
websocket (1.2.
|
442
|
-
websocket-driver (0.7.
|
459
|
+
websocket (1.2.10)
|
460
|
+
websocket-driver (0.7.6)
|
443
461
|
websocket-extensions (>= 0.1.0)
|
444
462
|
websocket-extensions (0.1.5)
|
445
463
|
xpath (3.2.0)
|
446
464
|
nokogiri (~> 1.8)
|
447
|
-
zeitwerk (2.6.
|
465
|
+
zeitwerk (2.6.13)
|
448
466
|
|
449
467
|
PLATFORMS
|
450
|
-
aarch64-linux
|
451
468
|
arm64-darwin-22
|
452
469
|
|
453
470
|
DEPENDENCIES
|
@@ -455,7 +472,7 @@ DEPENDENCIES
|
|
455
472
|
better_errors
|
456
473
|
binding_of_caller
|
457
474
|
bootsnap
|
458
|
-
bson (= 4.
|
475
|
+
bson (= 4.15)
|
459
476
|
capybara
|
460
477
|
cloudinary (= 1.13.2)
|
461
478
|
database_cleaner-mongoid
|
@@ -470,15 +487,15 @@ DEPENDENCIES
|
|
470
487
|
guard-rspec
|
471
488
|
haml-rails (~> 2.0.1)
|
472
489
|
jbuilder
|
473
|
-
jinda
|
474
|
-
jinda_adminlte
|
490
|
+
jinda!
|
491
|
+
jinda_adminlte!
|
475
492
|
jquery-rails (= 4.3.5)
|
476
493
|
jquery-turbolinks (= 2.1.0)
|
477
494
|
kaminari (= 1.2.0)
|
478
495
|
kaminari-mongoid (= 1.0.1)
|
479
496
|
maruku (~> 0.7.3)
|
480
497
|
meta-tags
|
481
|
-
mongo
|
498
|
+
mongo
|
482
499
|
mongoid
|
483
500
|
mongoid-paperclip
|
484
501
|
normalize-rails
|
@@ -491,14 +508,13 @@ DEPENDENCIES
|
|
491
508
|
prawn
|
492
509
|
pry-byebug
|
493
510
|
puma (~> 5.0)
|
494
|
-
rails (~> 7.0.
|
511
|
+
rails (~> 7.0.0)
|
495
512
|
rb-fsevent
|
496
513
|
redcarpet
|
497
514
|
rexml (~> 3.2.4)
|
498
515
|
rouge
|
499
516
|
rspec
|
500
517
|
rspec-rails
|
501
|
-
rspec_junit_formatter
|
502
518
|
selenium-webdriver
|
503
519
|
shoulda
|
504
520
|
sprockets-rails
|
@@ -511,4 +527,4 @@ RUBY VERSION
|
|
511
527
|
ruby 3.1.2p20
|
512
528
|
|
513
529
|
BUNDLED WITH
|
514
|
-
2.
|
530
|
+
2.4.10
|
@@ -0,0 +1,24 @@
|
|
1
|
+
# README
|
2
|
+
|
3
|
+
This README would normally document whatever steps are necessary to get the
|
4
|
+
application up and running.
|
5
|
+
|
6
|
+
Things you may want to cover:
|
7
|
+
|
8
|
+
* Ruby version
|
9
|
+
|
10
|
+
* System dependencies
|
11
|
+
|
12
|
+
* Configuration
|
13
|
+
|
14
|
+
* Database creation
|
15
|
+
|
16
|
+
* Database initialization
|
17
|
+
|
18
|
+
* How to run the test suite
|
19
|
+
|
20
|
+
* Services (job queues, cache servers, search engines, etc.)
|
21
|
+
|
22
|
+
* Deployment instructions
|
23
|
+
|
24
|
+
* ...
|
@@ -1,15 +1,15 @@
|
|
1
1
|
// This is a manifest file that'll be compiled into application.js, which will include all the files
|
2
2
|
// listed below.
|
3
3
|
//
|
4
|
-
// Any JavaScript/Coffee file within this directory, lib/assets/javascripts,
|
5
|
-
// vendor/assets/javascripts
|
4
|
+
// Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts,
|
5
|
+
// or vendor/assets/javascripts of plugins, if any, can be referenced here using a relative path.
|
6
6
|
//
|
7
7
|
// It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
|
8
|
-
// compiled file.
|
8
|
+
// the compiled file.
|
9
9
|
//
|
10
|
-
//
|
11
|
-
//
|
10
|
+
// WARNING: THE FIRST BLANK LINE MARKS THE END OF WHAT'S TO BE PROCESSED, ANY BLANK LINE SHOULD
|
11
|
+
// GO AFTER THE REQUIRES BELOW.
|
12
12
|
//
|
13
|
-
//= require
|
14
|
-
|
15
|
-
|
13
|
+
//= require jinda_jqm
|
14
|
+
|
15
|
+
|