handlebars_assets 0.23.0 → 0.23.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/CHANGELOG.md +10 -0
- data/lib/handlebars_assets/engine.rb +1 -1
- data/lib/handlebars_assets/version.rb +1 -1
- metadata +2 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f75f7bbea1a31fa2a0b67eaee1c82059b9013663
|
|
4
|
+
data.tar.gz: d3b172bc0e09622a944172a002bad6fe5b548de2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b39faf3a14e12badc2bcf1c66f19cf09d07684c0cbeda64b9f36d3a0d804e4892af4f3256ea8894fe6e8f5adc7975be7adfecd42cc93eb6de09b01aff8d11f7f
|
|
7
|
+
data.tar.gz: d63bea3de557ee9764ecf608456551bfa456fdd918a2c8ab67c7a151867d343a7a6af07901ec6f548ec3c612941d2e68761394a2e66d44a0ab9f7537aa57343d
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,13 @@
|
|
|
1
|
+
## 0.23.1 (2016-08-04)
|
|
2
|
+
|
|
3
|
+
* Fixes for Issue on Boot with Rails 3 and 4
|
|
4
|
+
|
|
5
|
+
## 0.23.0 (2016-01-26)
|
|
6
|
+
|
|
7
|
+
* Fixes for Railties and certain versions of Rails
|
|
8
|
+
* Only load if asset compilation is enabled
|
|
9
|
+
* Add support for Sprockets 3.x + 4.x - @tjgrathwell
|
|
10
|
+
|
|
1
11
|
## 0.22.0 (2015-11-23)
|
|
2
12
|
|
|
3
13
|
* Update Handlebars to v4.0.5
|
|
@@ -2,7 +2,7 @@ module HandlebarsAssets
|
|
|
2
2
|
# NOTE: must be an engine because we are including assets in the gem
|
|
3
3
|
class Engine < ::Rails::Engine
|
|
4
4
|
initializer "handlebars_assets.assets.register", :group => :all do |app|
|
|
5
|
-
config.assets.configure do |sprockets_env|
|
|
5
|
+
app.config.assets.configure do |sprockets_env|
|
|
6
6
|
::HandlebarsAssets::register_extensions(sprockets_env)
|
|
7
7
|
if Gem::Version.new(Sprockets::VERSION) < Gem::Version.new('3')
|
|
8
8
|
::HandlebarsAssets::add_to_asset_versioning(sprockets_env)
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: handlebars_assets
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.23.
|
|
4
|
+
version: 0.23.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Les Hill
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-
|
|
11
|
+
date: 2016-08-04 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: execjs
|
|
@@ -225,4 +225,3 @@ test_files:
|
|
|
225
225
|
- test/handlebars_assets/tilt_handlebars_test.rb
|
|
226
226
|
- test/patch/patch.js
|
|
227
227
|
- test/test_helper.rb
|
|
228
|
-
has_rdoc:
|