File tree Expand file tree Collapse file tree 5 files changed +60
-0
lines changed Expand file tree Collapse file tree 5 files changed +60
-0
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,9 @@ gem 'devise'
13
13
gem 'faker'
14
14
gem 'will_paginate-bootstrap'
15
15
gem 'acts_as_votable'
16
+ gem 'carrierwave'
17
+ gem 'cloudinary'
18
+
16
19
17
20
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails', branch: 'main'
18
21
gem 'rails' , '~> 6.1.4' , '>= 6.1.4.1'
Original file line number Diff line number Diff line change 74
74
public_suffix (>= 2.0.2 , < 5.0 )
75
75
autoprefixer-rails (10.3.3.0 )
76
76
execjs (~> 2 )
77
+ aws_cf_signer (0.1.3 )
77
78
bcrypt (3.1.16 )
78
79
bindex (0.8.1 )
79
80
bootsnap (1.9.1 )
95
96
rack-test (>= 0.6.3 )
96
97
regexp_parser (>= 1.5 , < 3.0 )
97
98
xpath (~> 3.2 )
99
+ carrierwave (2.2.2 )
100
+ activemodel (>= 5.0.0 )
101
+ activesupport (>= 5.0.0 )
102
+ addressable (~> 2.6 )
103
+ image_processing (~> 1.1 )
104
+ marcel (~> 1.0.0 )
105
+ mini_mime (>= 0.1.3 )
106
+ ssrf_filter (~> 1.0 )
98
107
childprocess (3.0.0 )
108
+ cloudinary (1.21.0 )
109
+ aws_cf_signer
110
+ rest-client (>= 2.0.0 )
99
111
concurrent-ruby (1.1.9 )
100
112
crass (1.0.6 )
101
113
devise (4.8.0 )
104
116
railties (>= 4.1.0 )
105
117
responders
106
118
warden (~> 1.2.3 )
119
+ domain_name (0.5.20190701 )
120
+ unf (>= 0.0.5 , < 1.0.0 )
107
121
erubi (1.10.0 )
108
122
execjs (2.8.1 )
109
123
faker (2.19.0 )
132
146
activesupport (>= 5.0 )
133
147
gravatar_image_tag (1.2.0 )
134
148
hashie (4.1.0 )
149
+ http-accept (1.7.0 )
150
+ http-cookie (1.0.4 )
151
+ domain_name (~> 0.5 )
135
152
i18n (1.8.10 )
136
153
concurrent-ruby (~> 1.0 )
137
154
image_processing (1.12.1 )
154
171
mini_mime (>= 0.1.1 )
155
172
marcel (1.0.2 )
156
173
method_source (1.0.0 )
174
+ mime-types (3.3.1 )
175
+ mime-types-data (~> 3.2015 )
176
+ mime-types-data (3.2021.0901 )
157
177
mini_magick (4.11.0 )
158
178
mini_mime (1.1.1 )
159
179
minitest (5.14.4 )
162
182
multi_xml (0.6.0 )
163
183
multipart-post (2.1.1 )
164
184
mysql2 (0.5.3 )
185
+ netrc (0.11.0 )
165
186
nio4r (2.5.8 )
187
+ nokogiri (1.12.5-x86_64-darwin )
188
+ racc (~> 1.4 )
166
189
nokogiri (1.12.5-x86_64-linux )
167
190
racc (~> 1.4 )
168
191
oauth2 (1.4.7 )
239
262
responders (3.0.1 )
240
263
actionpack (>= 5.0 )
241
264
railties (>= 5.0 )
265
+ rest-client (2.1.0 )
266
+ http-accept (>= 1.7.0 , < 2.0 )
267
+ http-cookie (>= 1.0.2 , < 2.0 )
268
+ mime-types (>= 1.16 , < 4.0 )
269
+ netrc (~> 0.8 )
242
270
ruby-vips (2.1.3 )
243
271
ffi (~> 1.12 )
244
272
ruby2_keywords (0.0.5 )
@@ -265,13 +293,17 @@ GEM
265
293
actionpack (>= 4.0 )
266
294
activesupport (>= 4.0 )
267
295
sprockets (>= 3.0.0 )
296
+ ssrf_filter (1.0.7 )
268
297
thor (1.1.0 )
269
298
tilt (2.0.10 )
270
299
turbolinks (5.2.1 )
271
300
turbolinks-source (~> 5.2 )
272
301
turbolinks-source (5.2.0 )
273
302
tzinfo (2.0.4 )
274
303
concurrent-ruby (~> 1.0 )
304
+ unf (0.1.4 )
305
+ unf_ext
306
+ unf_ext (0.0.8 )
275
307
warden (1.2.9 )
276
308
rack (>= 2.0.9 )
277
309
web-console (4.1.0 )
299
331
zeitwerk (2.4.2 )
300
332
301
333
PLATFORMS
334
+ x86_64-darwin-21
302
335
x86_64-linux
303
336
304
337
DEPENDENCIES
@@ -308,6 +341,8 @@ DEPENDENCIES
308
341
bootstrap-sass
309
342
byebug
310
343
capybara (>= 3.26 )
344
+ carrierwave
345
+ cloudinary
311
346
devise
312
347
faker
313
348
gravatar_image_tag
Original file line number Diff line number Diff line change
1
+ ---
2
+ development :
3
+ cloud_name : hq9qpthnj
4
+ api_key : ' 686938378396561'
5
+ api_secret : JObOqmL_LP1HGz-lRmYqukdaVwE
6
+ enhance_image_tag : true
7
+ static_file_support : false
8
+ production :
9
+ cloud_name : hq9qpthnj
10
+ api_key : ' 686938378396561'
11
+ api_secret : JObOqmL_LP1HGz-lRmYqukdaVwE
12
+ enhance_image_tag : true
13
+ static_file_support : true
14
+ test :
15
+ cloud_name : hq9qpthnj
16
+ api_key : ' 686938378396561'
17
+ api_secret : JObOqmL_LP1HGz-lRmYqukdaVwE
18
+ enhance_image_tag : true
19
+ static_file_support : false
Original file line number Diff line number Diff line change
1
+ CLOUD_NAME = hq9qpthnj
2
+ CLOUD_API_KEY = 686938378396561
3
+ CLOUD_API_SECRET = JObOqmL_LP1HGz-lRmYqukdaVwE
You can’t perform that action at this time.
0 commit comments