bower-rails 0.11.0 → 0.12.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 6006f079a66a16246b1b202c5937c34c2a10f604
4
- data.tar.gz: ff977ce0ecd9914b0da8d17035654a3cf68dd82c
2
+ SHA256:
3
+ metadata.gz: f790001d319661a5ac187369ebc0224dacd6b61db30483b5870103268cdad1cb
4
+ data.tar.gz: 7a0929e21a1f34a1ab872e66a19a97f77b3fcbc42a1cdf14a83cd6ba60b87d01
5
5
  SHA512:
6
- metadata.gz: 9b0caababbe66adb75d1978c4c2dbb38dd351d48da41fb1a441a273ce1ee3ce157addcc0e780cb3990f44f5e5891c2f1f024f666fbc2aff33b42734fde4263b0
7
- data.tar.gz: 32912bcc0c5b3c9650446a7751c137d9b9e02ec179ba1853a9ed5b17a6c2004808a6c13216640d0249ee6c61bd887889da606a4c5ef29b2a570273fdb9d67796
6
+ metadata.gz: bf7bd6d5fe7c42c176a439e7a30171edb71a45efbfc3c775c97fa0e6fbd53346edc23947159478207c8f6dc7c52ea2ad29d18c4effeec45c951a6d6bbf641656
7
+ data.tar.gz: 186fa5eaf1d965087e75e177af78571e0d005357eb5de07397ebbe3afae198ba00690c168ac580a79ef9d6d0e29c1a0d22a0c44292cfd22b28a12a0d24f42720
data/README.md CHANGED
@@ -29,12 +29,12 @@ NOTE: If you install `node` via package manager with `sudo apt-get install nodej
29
29
  in Gemfile
30
30
 
31
31
  ```ruby
32
- gem "bower-rails", "~> 0.10.0"
32
+ gem "bower-rails", "~> 0.11.0"
33
33
  ```
34
34
 
35
35
  ## JSON configuration
36
36
 
37
- Bower-rails now supports the standard [bower package](http://bower.io/docs/creating-packages/#specification) format out-of-the-box. Simply place your bower.json file the Rails root directory to start. Using the standard format will default all bower components to be installed under the `vendor` directory.
37
+ Bower-rails now supports the standard [bower package](http://bower.io/docs/creating-packages/#specification) format out-of-the-box. Simply place your bower.json file inside the Rails root directory to start. Using the standard format will default all bower components to be installed under the `vendor` directory.
38
38
 
39
39
  To install dependencies into both `lib` and `vendor` directories, run the initializer to generate a custom bower.json:
40
40
 
@@ -185,7 +185,9 @@ results in the following bower.json file:
185
185
  }
186
186
  }
187
187
  ```
188
- NOTE: Available dependency groups are `:dependencies` (default) and `:dev_dependencies`. Others are not allowed according to the Rails convention.
188
+ NOTE:
189
+ * Available dependency groups are `:dependencies` (default) and `:dev_dependencies`. Others are not allowed according to the Rails convention.
190
+ * In order to install assets on the `:dev_dependencies` group please run `RAILS_ENV=development rake bower:install`.
189
191
 
190
192
  ## Bower Resolutions
191
193
 
@@ -1,6 +1,7 @@
1
1
  require 'json'
2
2
  require 'pp'
3
3
  require 'find'
4
+ require 'shellwords'
4
5
 
5
6
  module BowerRails
6
7
  class Performer
@@ -1,4 +1,4 @@
1
1
  # -*- encoding : utf-8 -*-
2
2
  module BowerRails
3
- VERSION = "0.11.0"
3
+ VERSION = "0.12.0"
4
4
  end
metadata CHANGED
@@ -1,10 +1,11 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bower-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.11.0
4
+ version: 0.12.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ross Harrison
8
+ - Sergey Kishenin
8
9
  autorequire:
9
10
  bindir: bin
10
11
  cert_chain: []
@@ -90,7 +91,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
90
91
  version: '0'
91
92
  requirements: []
92
93
  rubyforge_project:
93
- rubygems_version: 2.4.8
94
+ rubygems_version: 2.7.8
94
95
  signing_key:
95
96
  specification_version: 4
96
97
  summary: Bower for Rails