hamlit 2.14.5 → 2.14.6

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
2
  SHA256:
3
- metadata.gz: 5c58f9be7c1f06eb9104542ca749b10a2833a23d5db7b12bf9f16744461b3e83
4
- data.tar.gz: 6130138aa3ecf4cafd996b89b3442b8c354d3085da8045a627e04f72dd0aa3fb
3
+ metadata.gz: eaa5616456f4832b624f5739bce6f281235a2a758e4189d454ef080684c96452
4
+ data.tar.gz: 40315c6d81b7129a7f3810378618d277a82e47596e2a6b4b615bbd31c96c2840
5
5
  SHA512:
6
- metadata.gz: ffd47c2339cbbb0f9c9bb84ab1dc5d41edeb91e05a4cc6b1a5d79fe71d72ee67ef881ac9816f474ec2376e8dcc2416e65caeeb72fc6094c4e7844626ab126117
7
- data.tar.gz: d2292193a05d671053022da852b9456622d23214d73d785d079f0eabeacd12fdbd2eabcacfc94496be59f55e5cf7e905223d7afab042cc5361bdb227230c7f99
6
+ metadata.gz: fc4ac5b8673f3dfc68eb048f896caa239d91af799318e2037896631bb287d92cc14f10b65b5fe2a5f5fee2c5eec45d4543c9b8f4ff6b5829c8ddb379ea528f44
7
+ data.tar.gz: 5874679be120e5a5e9ca359dfffe91c3ef7ce1f936984457494bebf11df3007f4c135d7be083aaca3e0f09f126aefa91f7d6270c4a0dbf038fe7fac628a6fe14
data/CHANGELOG.md CHANGED
@@ -4,11 +4,17 @@ All notable changes to this project will be documented in this file. This
4
4
  project adheres to [Semantic Versioning](http://semver.org/). This change log is based upon
5
5
  [keep-a-changelog](https://github.com/olivierlacan/keep-a-changelog).
6
6
 
7
+ ## [2.14.6](https://github.com/k0kubun/hamlit/compare/v2.14.4...v2.14.5) - 2021-03-23
8
+
9
+ ### Fixed
10
+
11
+ - Optimize v2.14.5's implementation a little
12
+
7
13
  ## [2.14.5](https://github.com/k0kubun/hamlit/compare/v2.14.4...v2.14.5) - 2021-03-23
8
14
 
9
15
  ### Added
10
16
 
11
- - Support `config.action_view.annotate_template_file_names = true` of Rails 6.1
17
+ - Support `config.action_view.annotate_rendered_view_with_filenames = true` of Rails 6.1
12
18
  *Thanks to @kirin121*
13
19
 
14
20
  ## [2.14.4](https://github.com/k0kubun/hamlit/compare/v2.14.3...v2.14.4) - 2021-02-01
data/lib/hamlit/engine.rb CHANGED
@@ -31,10 +31,10 @@ module Hamlit
31
31
  use Escapable
32
32
  use ForceEscapable
33
33
  filter :ControlFlow
34
+ use Ambles
34
35
  filter :MultiFlattener
35
36
  filter :StaticMerger
36
37
  use DynamicMerger
37
- use Ambles
38
38
  use :Generator, -> { options[:generator] }
39
39
  end
40
40
  end
@@ -1,4 +1,4 @@
1
1
  # frozen_string_literal: true
2
2
  module Hamlit
3
- VERSION = '2.14.5'
3
+ VERSION = '2.14.6'
4
4
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hamlit
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.14.5
4
+ version: 2.14.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Takashi Kokubun