diff options
author | Max Magorsch <max@magorsch.de> | 2020-01-03 01:55:50 +0100 |
---|---|---|
committer | Max Magorsch <max@magorsch.de> | 2020-01-03 01:55:50 +0100 |
commit | 7de161a64e8199a1235d9c91981a68f99438cbf0 (patch) | |
tree | e82c97f8bb179f8c07c5178467457ded43ae2acb /app/views/layouts | |
parent | Fix the environment variables in .travis.docker.yml (diff) | |
download | packages-5-7de161a64e8199a1235d9c91981a68f99438cbf0.tar.gz packages-5-7de161a64e8199a1235d9c91981a68f99438cbf0.tar.bz2 packages-5-7de161a64e8199a1235d9c91981a68f99438cbf0.zip |
Migrate the project from sprockets to webpacker
The asset pipeline was introduced in Rails 3.1. However, since Rails 5.1
webpacker has been available, so that it's possible to use webpack.
The project has been fully migrated to use webpacker for bundeling
javascripts as well as stylesheets now. This way, sprockets has been
completely replaced and removed from the project. Associated gems as
jquery-rails have been removed as well.
Accordingly all advanced webpack functionalities are available now.
The bin/first-run file as well as the Dockerfiles have been adjusted to
use webpacker instead of the asset pipeline.
Please note: In order to use webpacker, yarn has to be installed on
the target system. Please make sure that 'yarnpkg' is in your path.
Signed-off-by: Max Magorsch <max@magorsch.de>
Diffstat (limited to 'app/views/layouts')
-rw-r--r-- | app/views/layouts/application.html.erb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/layouts/application.html.erb b/app/views/layouts/application.html.erb index e368790..499328c 100644 --- a/app/views/layouts/application.html.erb +++ b/app/views/layouts/application.html.erb @@ -8,8 +8,8 @@ <meta name="description" content="<%= "#{@description} in the " if @description %>Gentoo Packages Database"> <link href="https://assets.gentoo.org/tyrian/bootstrap.min.css" rel="stylesheet" media="screen"> <link href="https://assets.gentoo.org/tyrian/tyrian.min.css" rel="stylesheet" media="screen"> - <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %> - <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %> + <%= stylesheet_pack_tag 'application' %> + <%= javascript_pack_tag 'application' %> <script src="https://assets.gentoo.org/tyrian/bootstrap.min.js"></script> <link rel="icon" href="https://www.gentoo.org/favicon.ico" type="image/x-icon"> <% if content_for? :head -%> |