質問をすることでしか得られない、回答やアドバイスがある。

15分調べてもわからないことは、質問しよう!

新規登録して質問してみよう
ただいま回答率
85.50%
Ruby on Rails

Ruby on Railsは、オープンソースのWebアプリケーションフレームワークです。「同じことを繰り返さない」というRailsの基本理念のもと、他のフレームワークより少ないコードで簡単に開発できるよう設計されています。

Q&A

解決済

1回答

1194閲覧

brew install imagemagick をした途端scss,jsが効かなくなった

c_koki

総合スコア5

Ruby on Rails

Ruby on Railsは、オープンソースのWebアプリケーションフレームワークです。「同じことを繰り返さない」というRailsの基本理念のもと、他のフレームワークより少ないコードで簡単に開発できるよう設計されています。

0グッド

1クリップ

投稿2019/10/24 11:15

編集2019/10/24 11:48

production.rb

ruby

1Rails.application.configure do 2 # Settings specified here will take precedence over those in config/application.rb. 3 4 # In the development environment your application's code is reloaded on 5 # every request. This slows down response time but is perfect for development 6 # since you don't have to restart the web server when you make code changes. 7 config.cache_classes = false 8 9 # Do not eager load code on boot. 10 config.eager_load = false 11 12 # Show full error reports. 13 config.consider_all_requests_local = true 14 15 # Enable/disable caching. By default caching is disabled. 16 # Run rails dev:cache to toggle caching. 17 if Rails.root.join('tmp', 'caching-dev.txt').exist? 18 config.action_controller.perform_caching = true 19 20 config.cache_store = :memory_store 21 config.public_file_server.headers = { 22 'Cache-Control' => "public, max-age=#{2.days.to_i}" 23 } 24 else 25 config.action_controller.perform_caching = false 26 27 config.cache_store = :null_store 28 end 29 30 # Store uploaded files on the local file system (see config/storage.yml for options) 31 config.active_storage.service = :local 32 33 # Don't care if the mailer can't send. 34 config.action_mailer.raise_delivery_errors = false 35 36 config.action_mailer.perform_caching = false 37 38 # Print deprecation notices to the Rails logger. 39 config.active_support.deprecation = :log 40 41 # Raise an error on page load if there are pending migrations. 42 config.active_record.migration_error = :page_load 43 44 # Highlight code that triggered database queries in logs. 45 config.active_record.verbose_query_logs = true 46 47 # Debug mode disables concatenation and preprocessing of assets. 48 # This option may cause significant delays in view rendering with a large 49 # number of complex assets. 50 config.assets.debug = true 51 52 # Suppress logger output for asset requests. 53 config.assets.quiet = true 54 55 # Raises error for missing translations 56 # config.action_view.raise_on_missing_translations = true 57 58 # Use an evented file watcher to asynchronously detect changes in source code, 59 # routes, locales, etc. This feature depends on the listen gem. 60 config.file_watcher = ActiveSupport::EventedFileUpdateChecker 61end 62

https://teratail.com/questions/218989

回答者の方に送っていただいたコードを実行することでbrew install imagemagickは成功したのですが、js,cssが効かなくなってしまいました
https://gyazo.com/2b9f6f3dfb08a8fd57b87f07845f5874
cssのレイアウトが崩れた状態が続いていてassetsのアクセスで500エラーが出ていてレイアウトが崩れている状態が続いてる状態です

#試したこと
https://gyazo.com/2a47d04efe61e6fceb9c3d7c9734debc
cacheは消しましたのですが、うまくいきません
回答してくださった方のコードとbrew install imagemagickを書いた途端に効かなくなってしまったのでなかなかググっても出てこず困っています

https://gyazo.com/20cce1a037b2e5de0695df54ec9415cf

回答お願いしますmm

気になる質問をクリップする

クリップした質問は、後からいつでもMYページで確認できます。

またクリップした質問に回答があった際、通知やメールを受け取ることができます。

バッドをするには、ログインかつ

こちらの条件を満たす必要があります。

guest

回答1

0

自己解決

投稿2019/10/29 00:49

c_koki

総合スコア5

バッドをするには、ログインかつ

こちらの条件を満たす必要があります。

あなたの回答

tips

太字

斜体

打ち消し線

見出し

引用テキストの挿入

コードの挿入

リンクの挿入

リストの挿入

番号リストの挿入

表の挿入

水平線の挿入

プレビュー

15分調べてもわからないことは
teratailで質問しよう!

ただいまの回答率
85.50%

質問をまとめることで
思考を整理して素早く解決

テンプレート機能で
簡単に質問をまとめる

質問する

関連した質問