cssbundling-rails 0.1.2 → 0.1.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: aca8e582aaa7610a44dbd408daab95d8d88060eda9bb2cc8b8ccaec933bc265f
4
- data.tar.gz: 00305b7cfe9ae0c757affe7cc015b7a39757931b16fbb36d5a4b893de047bb4f
3
+ metadata.gz: 8c82ef361bd3cc309f18f8409933e815eec239fd35bd7da36b8efbce95836b1d
4
+ data.tar.gz: '08a38e4931966664bcb64946fc30f8b87130d4d38e76aed116fc52dddca63448'
5
5
  SHA512:
6
- metadata.gz: e773ff5211c1bde8d03a6c00a35a247aecce1b86bfc916252229e124314a5cb7eb1095141b52b2f698d7ad473fd0fb0eb6a2bc1fb3270faf4760139ab17075b8
7
- data.tar.gz: fac48a58f322ba87dcd70d30640299bf6dcdd303979a279d4b87df99cb53293d863d7ffb3b58a3696982e31237c437140709b9a155ce83451808ee0fd12a91f1
6
+ metadata.gz: 9bd72320a3937f2f07744b4ec6543313bf8892b3b19894061ac96ee129700c682ca2f72624b4498b4399206da2edeb84ed01280deb270ea0b58d1707c519855d
7
+ data.tar.gz: 4bff61453f9b2e847dcc0284221376d04f26323f68863f91f1e6d338fae5b7c91f5d9da27911dddfaaf1bf75d034cd08434cba4748d06feb949db49e9050694d
data/README.md CHANGED
@@ -15,7 +15,7 @@ You can configure your bundler options in the `build:css` script in `package.jso
15
15
 
16
16
  ## Installation
17
17
 
18
- You must already have node and yarn installed on your system. Then:
18
+ You must already have node and yarn installed on your system. You will also need npx version 7.1.0 or later. Then:
19
19
 
20
20
  1. Add `cssbundling-rails` to your Gemfile with `gem 'cssbundling-rails'`
21
21
  2. Run `./bin/bundle install`
@@ -1,3 +1,3 @@
1
1
  module Cssbundling
2
- VERSION = "0.1.2"
2
+ VERSION = "0.1.4"
3
3
  end
@@ -1,2 +1,2 @@
1
- web: bin/rails server
1
+ web: bin/rails server -p 3000
2
2
  css: yarn build:css --watch
@@ -4,7 +4,7 @@ keep_file "app/assets/builds"
4
4
  append_to_file "app/assets/config/manifest.js", %(//= link_tree ../builds\n)
5
5
 
6
6
  if Rails.root.join(".gitignore").exist?
7
- append_to_file(".gitignore", %(/app/assets/builds\n))
7
+ append_to_file(".gitignore", %(/app/assets/builds\n!/app/assets/builds/.keep\n))
8
8
  end
9
9
 
10
10
  say "Remove app/assets/stylesheets/application.css so build output can take over"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cssbundling-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Heinemeier Hansson