webpackrails 0.1.0 → 0.1.1
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/README.md +4 -4
- data/lib/webpack-rails/version.rb +1 -1
- data/webpack-rails.gemspec +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d9b8b8434a19ec89528c9b6e881c745f28e05a94
|
|
4
|
+
data.tar.gz: 280ca44bac406b044fa20d7a39f821b80637bee9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ea4dc1ba597d1566cf1d7006dcc78c74a36e2d994bcc7942d2b738648ba0c10a39b11f4f562ae3f3fa9af5d860679d8db02416d1076a31d40c558e64a9c534a8
|
|
7
|
+
data.tar.gz: 9cd84024ace9d54ca09902d7bce01e04e1b377e11cf40a3585ae717eadd02a436e7043fcf171bb2bd512c079b432d3bbcf8e3f0bc24856c590349dc2d8e0852d
|
data/README.md
CHANGED
|
@@ -7,7 +7,7 @@ This gem make [Webpack](http://webpack.github.io) works with [Rails](http://gith
|
|
|
7
7
|
Add this line to your application's Gemfile:
|
|
8
8
|
|
|
9
9
|
```ruby
|
|
10
|
-
gem '
|
|
10
|
+
gem 'webpackrails'
|
|
11
11
|
```
|
|
12
12
|
|
|
13
13
|
And then execute:
|
|
@@ -16,7 +16,7 @@ And then execute:
|
|
|
16
16
|
|
|
17
17
|
Or install it yourself as:
|
|
18
18
|
|
|
19
|
-
$ gem install
|
|
19
|
+
$ gem install webpackrails
|
|
20
20
|
|
|
21
21
|
Create `package.json` in your Rails root:
|
|
22
22
|
|
|
@@ -40,7 +40,7 @@ webpack config file within `application.rb`
|
|
|
40
40
|
|
|
41
41
|
### Config
|
|
42
42
|
|
|
43
|
-
See [source](https://raw.githubusercontent.com/
|
|
43
|
+
See [source](https://raw.githubusercontent.com/towry/webpack-rails/master/lib/webpack-rails/railtie.rb)
|
|
44
44
|
|
|
45
45
|
## Development
|
|
46
46
|
|
|
@@ -50,7 +50,7 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
|
|
|
50
50
|
|
|
51
51
|
## Contributing
|
|
52
52
|
|
|
53
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/
|
|
53
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/towry/webpack-rails. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](contributor-covenant.org) code of conduct.
|
|
54
54
|
|
|
55
55
|
|
|
56
56
|
## License
|
data/webpack-rails.gemspec
CHANGED
|
@@ -11,7 +11,7 @@ Gem::Specification.new do |spec|
|
|
|
11
11
|
|
|
12
12
|
spec.summary = %q{Make Webpack work with Rails for you}
|
|
13
13
|
spec.description = %q{Webpack + Rails ≠ CommonJS Heaven}
|
|
14
|
-
spec.homepage = "https://github.com/
|
|
14
|
+
spec.homepage = "https://github.com/towry/webpack-rails"
|
|
15
15
|
spec.license = "MIT"
|
|
16
16
|
|
|
17
17
|
# Prevent pushing this gem to RubyGems.org by setting 'allowed_push_host', or
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: webpackrails
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- towry
|
|
@@ -136,7 +136,7 @@ files:
|
|
|
136
136
|
- lib/webpack-rails/webpack_logger.rb
|
|
137
137
|
- lib/webpack-rails/webpack_processor.rb
|
|
138
138
|
- webpack-rails.gemspec
|
|
139
|
-
homepage: https://github.com/
|
|
139
|
+
homepage: https://github.com/towry/webpack-rails
|
|
140
140
|
licenses:
|
|
141
141
|
- MIT
|
|
142
142
|
metadata:
|