browserify-rails 4.0.0.b → 4.0.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 +11 -0
- data/lib/browserify-rails/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a2b411c1b092a8ce83681dec1157e71de08d3d41
|
|
4
|
+
data.tar.gz: 5f3a1f64ca16a6805d7a268ca43c7c2e2a3f67bd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 200ce47b6988f24865c086db9a71f3cc24714df142d0b72aeeb2bf563d8ec29edd578c358b64c68f8d428b2c2b3ab044d13a92ae2ce4c86d5f99733a95dd0fd7
|
|
7
|
+
data.tar.gz: 5930724c1cb84a4e8d206741684b42a2a7f5fa6350b939e70e162e4309f74a62d310001415117c82410c854fd440ceb80d074686cec73472be1a0fb528deb5c8
|
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
|
+
## [4.0.0] - 2017-02-07
|
|
5
|
+
- depend on sprockets >= 3.6.0 and change to new API usage (#11f7c3c)
|
|
6
|
+
|
|
4
7
|
## [3.4.0] - 2016-11-22
|
|
5
8
|
- speeds up build by up to 20% thanks to cguillemette (see PR #183)
|
|
6
9
|
- update README for using in engine thanks to valentin-krasontovitsch (see PR #187)
|
data/README.md
CHANGED
|
@@ -284,6 +284,17 @@ Pull requests appreciated. Pull requests will not be rejected based on
|
|
|
284
284
|
ideological neurosis of either the NodeJS or the Ruby on Rails communities.
|
|
285
285
|
In other words, technical needs are respected.
|
|
286
286
|
|
|
287
|
+
## Running the dummy Rails app
|
|
288
|
+
|
|
289
|
+
There is a dummy rails app in `test/dummy`. You can change to that directory
|
|
290
|
+
and run `bundle install` and then `bundle exec rails server`. You can see
|
|
291
|
+
the test JavaScript files in `app/assets/javascripts` so try loading one --
|
|
292
|
+
for example `http://localhost:3000/assets/application.js`.
|
|
293
|
+
|
|
294
|
+
You can use this dummy app to try out your coding/refactoring/hacking ideas
|
|
295
|
+
and also see how the tests are written. To run the tests, run `bundle exec rake test`
|
|
296
|
+
in the root directory of the browserify-rails code (not in the dummy app).
|
|
297
|
+
|
|
287
298
|
## Potential areas of change (contributions welcome)
|
|
288
299
|
|
|
289
300
|
### Multiple modules
|
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: 4.0.0
|
|
4
|
+
version: 4.0.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:
|
|
11
|
+
date: 2017-02-07 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: railties
|
|
@@ -264,9 +264,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
264
264
|
version: '0'
|
|
265
265
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
266
266
|
requirements:
|
|
267
|
-
- - "
|
|
267
|
+
- - ">="
|
|
268
268
|
- !ruby/object:Gem::Version
|
|
269
|
-
version:
|
|
269
|
+
version: '0'
|
|
270
270
|
requirements: []
|
|
271
271
|
rubyforge_project:
|
|
272
272
|
rubygems_version: 2.6.4
|