diff --git a/Gemfile.lock b/Gemfile.lock index de313412d..a8c492c40 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -42,8 +42,8 @@ GEM sshkit (>= 1.6.1, != 1.7.0) arel (8.0.0) bindex (0.8.1) - builder (3.2.3) - byebug (11.0.1) + builder (3.2.4) + byebug (11.1.1) capistrano (3.11.2) airbrussh (>= 1.0.0) i18n @@ -66,24 +66,24 @@ GEM sidekiq (>= 3.4, < 6.0) concurrent-ruby (1.1.5) connection_pool (2.2.2) - crass (1.0.5) + crass (1.0.6) dotenv (2.7.5) dotenv-rails (2.7.5) dotenv (= 2.7.5) railties (>= 3.2, < 6.1) erubi (1.9.0) execjs (2.7.0) - ffi (1.11.1) - ffi (1.11.1-x64-mingw32) + ffi (1.12.1) + ffi (1.12.1-x64-mingw32) globalid (0.4.2) activesupport (>= 4.2.0) haml (5.1.2) temple (>= 0.8.0) tilt - i18n (1.7.0) + i18n (1.8.2) concurrent-ruby (~> 1.0) json (1.8.6) - loofah (2.3.0) + loofah (2.4.0) crass (~> 1.0.2) nokogiri (>= 1.5.9) mail (2.7.1) @@ -91,22 +91,23 @@ GEM method_source (0.9.2) mini_mime (1.0.2) mini_portile2 (2.4.0) - minitest (5.12.2) + minitest (5.14.0) net-scp (2.0.0) net-ssh (>= 2.6.5, < 6.0.0) net-ssh (5.2.0) nio4r (2.5.2) - nokogiri (1.10.4) + nokogiri (1.10.7) mini_portile2 (~> 2.4.0) - nokogiri (1.10.4-x64-mingw32) + nokogiri (1.10.7-x64-mingw32) mini_portile2 (~> 2.4.0) non-stupid-digest-assets (1.0.9) sprockets (>= 2.0) - puma (4.2.1) + puma (4.3.1) nio4r (~> 2.0) - rack (2.0.7) - rack-cors (1.0.3) - rack-protection (2.0.7) + rack (2.1.2) + rack-cors (1.1.1) + rack (>= 2.0.0) + rack-protection (2.0.8.1) rack rack-test (1.1.0) rack (>= 1.0, < 3) @@ -133,9 +134,9 @@ GEM method_source rake (>= 0.8.7) thor (>= 0.18.1, < 2.0) - rake (13.0.0) + rake (13.0.1) rb-fsevent (0.10.3) - rb-inotify (0.10.0) + rb-inotify (0.10.1) ffi (~> 1.0) rdoc (4.3.0) redis (4.1.3) @@ -150,15 +151,14 @@ GEM sdoc (0.4.2) json (~> 1.7, >= 1.7.7) rdoc (~> 4.0) - secure_headers (6.1.1) + secure_headers (6.3.0) sidekiq (5.2.7) connection_pool (~> 2.2, >= 2.2.2) rack (>= 1.5.0) rack-protection (>= 1.5.0) redis (>= 3.3.5, < 5) - spring (2.0.2) - activesupport (>= 4.2) - sprockets (3.7.2) + spring (2.1.0) + sprockets (4.0.0) concurrent-ruby (~> 1.0) rack (> 1, < 3) sprockets-rails (3.2.1) @@ -169,10 +169,10 @@ GEM net-scp (>= 1.1.2) net-ssh (>= 2.8.0) temple (0.8.2) - thor (0.20.3) + thor (1.0.1) thread_safe (0.3.6) tilt (2.0.10) - tzinfo (1.2.5) + tzinfo (1.2.6) thread_safe (~> 0.1) tzinfo-data (1.2019.3) tzinfo (>= 1.0.0) @@ -216,4 +216,4 @@ DEPENDENCIES web-console (= 3.5.1) BUNDLED WITH - 2.0.1 + 2.1.4 diff --git a/app/assets/config/manifest.js b/app/assets/config/manifest.js new file mode 100644 index 000000000..e69de29bb diff --git a/config/initializers/assets.rb b/config/initializers/assets.rb index 1f9fb8de3..1d686d7e3 100644 --- a/config/initializers/assets.rb +++ b/config/initializers/assets.rb @@ -9,7 +9,7 @@ Rails.application.config.assets.version = '1.0' Rails.application.config.assets.paths << Rails.root.join('vendor', 'assets') Rails.application.config.assets.paths << Rails.root.join('dist') -Rails.application.config.assets.precompile << /\.(?:svg|eot|woff|ttf)\z/ +Rails.application.config.assets.precompile << ["*.svg", "*.eot", "*.woff", "*.ttf"] # Precompile additional assets. # application.js, application.css, and all non-JS/CSS in app/assets folder are already added.