browserify-rails 1.1.0 → 1.2.0
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 +4 -4
- data/CHANGELOG.md +3 -0
- data/README.md +1 -1
- data/browserify-rails.gemspec +1 -0
- data/lib/browserify-rails/version.rb +1 -1
- metadata +16 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 16edc8ee92f32e4b254ef67d712ea62c6b5bfeb0
|
|
4
|
+
data.tar.gz: a9f63b69f899799f181eeb19c841ad023fc08317
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8598c6dda41006104bb07649e498e48e680bf0ed6ca08bef1c0e6a0e11cbd3f32bc1eda73d034516cb98b3fc61a5c4d6252d9a6b9d3764f0704fd4f8adf22b66
|
|
7
|
+
data.tar.gz: aa0556bf687f9d1ef1a1bbbe2c238aa61c2416d277108e456bfa63b60efd2ed0319863ac045e68e527c7d1c8c04e826c5b49efab4876387b2a241f27657c3699
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
All notable changes to this project will be documented in this file going forward.
|
|
3
3
|
|
|
4
|
+
## [1.2.0] - 2015-07-19
|
|
5
|
+
- require sprockets > 3.0.2 (see browserify-rails issue 91)
|
|
6
|
+
|
|
4
7
|
## [1.1.0] - 2015-07-04
|
|
5
8
|
- fix major performance bug with browserify-incremental cachefile
|
|
6
9
|
- remove specific version in README
|
data/README.md
CHANGED
|
@@ -97,7 +97,7 @@ class My::Application < Rails::Application
|
|
|
97
97
|
# By default only files in /app and /node_modules are browserified,
|
|
98
98
|
# vendor stuff is normally not made for browserification and may stop
|
|
99
99
|
# working.
|
|
100
|
-
config.browserify_rails.paths << /vendor\/assets\/javascripts\/module
|
|
100
|
+
config.browserify_rails.paths << /vendor\/assets\/javascripts\/module\.js/
|
|
101
101
|
|
|
102
102
|
# Environments, in which to generate source maps
|
|
103
103
|
#
|
data/browserify-rails.gemspec
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: browserify-rails
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Henry Hsu, Cymen Vig
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-07-
|
|
11
|
+
date: 2015-07-19 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: railties
|
|
@@ -30,6 +30,20 @@ dependencies:
|
|
|
30
30
|
- - "<"
|
|
31
31
|
- !ruby/object:Gem::Version
|
|
32
32
|
version: '5.0'
|
|
33
|
+
- !ruby/object:Gem::Dependency
|
|
34
|
+
name: sprockets
|
|
35
|
+
requirement: !ruby/object:Gem::Requirement
|
|
36
|
+
requirements:
|
|
37
|
+
- - ">"
|
|
38
|
+
- !ruby/object:Gem::Version
|
|
39
|
+
version: 3.0.2
|
|
40
|
+
type: :runtime
|
|
41
|
+
prerelease: false
|
|
42
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
43
|
+
requirements:
|
|
44
|
+
- - ">"
|
|
45
|
+
- !ruby/object:Gem::Version
|
|
46
|
+
version: 3.0.2
|
|
33
47
|
- !ruby/object:Gem::Dependency
|
|
34
48
|
name: bundler
|
|
35
49
|
requirement: !ruby/object:Gem::Requirement
|