質問編集履歴

1

追加

2019/10/27 04:17

投稿

c_koki
c_koki

スコア5

test CHANGED
File without changes
test CHANGED
@@ -13,3 +13,225 @@
13
13
  この質問の続きです
14
14
 
15
15
  よろしくおねがします!
16
+
17
+
18
+
19
+ https://teratail.com/questions/219147の内容
20
+
21
+
22
+
23
+
24
+
25
+ https://teratail.com/questions/218989
26
+
27
+
28
+
29
+ 回答者の方に送っていただいたコードを実行することでbrew install imagemagickは成功したのですが、js,cssが効かなくなってしまいました
30
+
31
+ https://gyazo.com/2b9f6f3dfb08a8fd57b87f07845f5874
32
+
33
+ cssのレイアウトが崩れた状態が続いていてassetsのアクセスで500エラーが出ていてレイアウトが崩れている状態が続いてる状態です
34
+
35
+
36
+
37
+ #試したこと
38
+
39
+ https://gyazo.com/2a47d04efe61e6fceb9c3d7c9734debc
40
+
41
+ cacheは消しましたのですが、うまくいきません
42
+
43
+ 回答してくださった方のコードとbrew install imagemagickを書いた途端に効かなくなってしまったのでなかなかググっても出てこず困っています
44
+
45
+
46
+
47
+ https://gyazo.com/20cce1a037b2e5de0695df54ec9415cf
48
+
49
+
50
+
51
+ 回答お願いしますmm
52
+
53
+
54
+
55
+ 環境はcloud9でサーバーを変更してみてもダメでした
56
+
57
+
58
+
59
+ ```ruby
60
+
61
+ ruby '2.5.3'
62
+
63
+
64
+
65
+ # Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
66
+
67
+ gem 'rails', '~> 5.2.3'
68
+
69
+ # Use sqlite3 as the database for Active Record
70
+
71
+ gem 'sqlite3', groups: %w(test development), require: false
72
+
73
+
74
+
75
+
76
+
77
+ # Use Puma as the app server
78
+
79
+ gem 'puma', '~> 3.11'
80
+
81
+ # Use SCSS for stylesheets
82
+
83
+ gem 'sass-rails', '~> 5.0'
84
+
85
+ # Use Uglifier as compressor for JavaScript assets
86
+
87
+ gem 'uglifier', '>= 1.3.0'
88
+
89
+ # See https://github.com/rails/execjs#readme for more supported runtimes
90
+
91
+ # gem 'mini_racer', platforms: :ruby
92
+
93
+
94
+
95
+ # Use CoffeeScript for .coffee assets and views
96
+
97
+ gem 'coffee-rails', '~> 4.2'
98
+
99
+ # Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
100
+
101
+ gem 'turbolinks', '~> 5'
102
+
103
+ # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
104
+
105
+ #gem 'jbuilder', '~> 2.5'
106
+
107
+ # Use Redis adapter to run Action Cable in production
108
+
109
+ # gem 'redis', '~> 4.0'
110
+
111
+ # Use ActiveModel has_secure_password
112
+
113
+ # gem 'bcrypt', '~> 3.1.7'
114
+
115
+
116
+
117
+ # Use ActiveStorage variant
118
+
119
+ # gem 'mini_magick', '~> 4.8'
120
+
121
+
122
+
123
+ # Use Capistrano for deployment
124
+
125
+ # gem 'capistrano-rails', group: :development
126
+
127
+
128
+
129
+ # Reduces boot times through caching; required in config/boot.rb
130
+
131
+ gem 'bootsnap', '>= 1.1.0', require: false
132
+
133
+
134
+
135
+ group :development, :test do
136
+
137
+ # Call 'byebug' anywhere in the code to stop execution and get a debugger console
138
+
139
+ gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
140
+
141
+ gem 'better_errors', '~> 2.5', '>= 2.5.1'
142
+
143
+ gem 'guard', '~> 2.15'
144
+
145
+ gem 'guard-livereload', '~> 2.5', '>= 2.5.2'
146
+
147
+
148
+
149
+ end
150
+
151
+
152
+
153
+ group :development do
154
+
155
+ # Access an interactive console on exception pages or by calling 'console' anywhere in the code.
156
+
157
+ gem 'web-console', '>= 3.3.0'
158
+
159
+ gem 'listen', '>= 3.0.5', '< 3.2'
160
+
161
+ # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
162
+
163
+ gem 'spring'
164
+
165
+ gem 'spring-watcher-listen', '~> 2.0.0'
166
+
167
+ end
168
+
169
+
170
+
171
+ group :test do
172
+
173
+ # Adds support for Capybara system testing and selenium driver
174
+
175
+ gem 'capybara', '>= 2.15'
176
+
177
+ gem 'selenium-webdriver'
178
+
179
+ # Easy installation and use of chromedriver to run system tests with Chrome
180
+
181
+ gem 'chromedriver-helper'
182
+
183
+ end
184
+
185
+
186
+
187
+ # Windows does not include zoneinfo files, so bundle the tzinfo-data gem
188
+
189
+ gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
190
+
191
+
192
+
193
+ gem 'bulma-rails', '~> 0.7.5'
194
+
195
+ gem 'simple_form', '~> 4.1'
196
+
197
+ gem 'devise', '~> 4.6', '>= 4.6.2'
198
+
199
+ gem 'gravatar_image_tag', '~> 1.2'
200
+
201
+ gem 'carrierwave'
202
+
203
+ gem 'mini_magick'
204
+
205
+
206
+
207
+ group :production do
208
+
209
+ gem 'pg', '>= 0.18', '< 2.0'
210
+
211
+ end
212
+
213
+
214
+
215
+ gem 'pry-byebug', group: :development
216
+
217
+ #gem 'jquery-rails'
218
+
219
+ gem 'bootstrap', '~> 4.3', '>= 4.3.1'
220
+
221
+ gem 'jbuilder', '~> 2.9'
222
+
223
+ gem 'jquery-rails'
224
+
225
+ gem 'jquery-ui-rails'
226
+
227
+ gem 'slim'
228
+
229
+ gem 'slim-rails'
230
+
231
+ gem 'html2slim'
232
+
233
+ gem 'cloudinary'
234
+
235
+
236
+
237
+ ```