-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
updating apprisals - rails 5.2.1 & 5.2.3
gemspec rule for rubyzip compatability with ruby versions less than 2.4 gemfile update via appraisal rm terms_manifest.js from spec/dummy manifest.js Rails 6 Sprockets error in travis updating assets.rb & manifest.js for new sprockets
- Loading branch information
1 parent
81f6eb9
commit f8f4e72
Showing
7 changed files
with
24 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
//= link policy_manager/application.css | ||
//= link policy_manager/application.js | ||
//= link_tree ../stylesheets .css | ||
//= link_tree ../javascripts .js |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,16 @@ | ||
# Be sure to restart your server when you modify this file. | ||
|
||
# Version of your assets, change this if you want to expire all your assets. | ||
Rails.application.config.assets.version = '1.0' | ||
Rails.application.config.assets.version = "1.0" | ||
|
||
# Add additional assets to the asset load path. | ||
# Rails.application.config.assets.paths << Emoji.images_path | ||
# Add Yarn node_modules folder to the asset load path. | ||
Rails.application.config.assets.paths << Rails.root.join('node_modules') | ||
Rails.application.config.assets.paths << Rails.root.join("node_modules") | ||
|
||
# Precompile additional assets. | ||
# application.js, application.css, and all non-JS/CSS in the app/assets | ||
# folder are already added. | ||
# Rails.application.config.assets.precompile += %w( admin.js admin.css ) | ||
|
||
Rails.application.config.assets.precompile += %w( policy_manager/application.css policy_manager/application.js ) |