hamlit 2.14.4 → 2.14.5

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: f7ba07071048a08ffc2c58df5987c6772236c1b895b9a301881d27c13311d318
4
- data.tar.gz: cde3a650bcc4d06ac8909447203f90b99460ff187140347c9e528107bc62a1bc
3
+ metadata.gz: 5c58f9be7c1f06eb9104542ca749b10a2833a23d5db7b12bf9f16744461b3e83
4
+ data.tar.gz: 6130138aa3ecf4cafd996b89b3442b8c354d3085da8045a627e04f72dd0aa3fb
5
5
  SHA512:
6
- metadata.gz: de8bf0cddb83e2fd86b7876461e0b44c46eced02dc85b6375e60c3669d31b4079a9e8142842abb9a5b09dbf806c1d7288f96fbc4000168659029b115e033c7a9
7
- data.tar.gz: 759a9899a5aaa126c10d5894294c66af62d74585f4d2eb99e4ed9813554fa7a07aade664071c529d7ebb71d72c62b87636abd9d09e3e82e77c8fb1193ee7ad8b
6
+ metadata.gz: ffd47c2339cbbb0f9c9bb84ab1dc5d41edeb91e05a4cc6b1a5d79fe71d72ee67ef881ac9816f474ec2376e8dcc2416e65caeeb72fc6094c4e7844626ab126117
7
+ data.tar.gz: d2292193a05d671053022da852b9456622d23214d73d785d079f0eabeacd12fdbd2eabcacfc94496be59f55e5cf7e905223d7afab042cc5361bdb227230c7f99
@@ -0,0 +1 @@
1
+ github: k0kubun
data/CHANGELOG.md CHANGED
@@ -4,6 +4,13 @@ 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.5](https://github.com/k0kubun/hamlit/compare/v2.14.4...v2.14.5) - 2021-03-23
8
+
9
+ ### Added
10
+
11
+ - Support `config.action_view.annotate_template_file_names = true` of Rails 6.1
12
+ *Thanks to @kirin121*
13
+
7
14
  ## [2.14.4](https://github.com/k0kubun/hamlit/compare/v2.14.3...v2.14.4) - 2021-02-01
8
15
 
9
16
  ### Fixed
@@ -0,0 +1,20 @@
1
+ # frozen_string_literal: true
2
+ module Hamlit
3
+ class Ambles < Temple::Filter
4
+ define_options :preamble, :postamble
5
+
6
+ def initialize(*)
7
+ super
8
+ @preamble = options[:preamble]
9
+ @postamble = options[:postamble]
10
+ end
11
+
12
+ def call(ast)
13
+ ret = [:multi]
14
+ ret << [:static, @preamble] if @preamble
15
+ ret << ast
16
+ ret << [:static, @postamble] if @postamble
17
+ ret
18
+ end
19
+ end
20
+ end
data/lib/hamlit/engine.rb CHANGED
@@ -6,6 +6,7 @@ require 'hamlit/html'
6
6
  require 'hamlit/escapable'
7
7
  require 'hamlit/force_escapable'
8
8
  require 'hamlit/dynamic_merger'
9
+ require 'hamlit/ambles'
9
10
 
10
11
  module Hamlit
11
12
  class Engine < Temple::Engine
@@ -33,6 +34,7 @@ module Hamlit
33
34
  filter :MultiFlattener
34
35
  filter :StaticMerger
35
36
  use DynamicMerger
37
+ use Ambles
36
38
  use :Generator, -> { options[:generator] }
37
39
  end
38
40
  end
@@ -33,6 +33,11 @@ module Hamlit
33
33
  options = options.merge(format: :xhtml)
34
34
  end
35
35
 
36
+ if ActionView::Base.try(:annotate_rendered_view_with_filenames) && template.format == :html
37
+ options[:preamble] = "<!-- BEGIN #{template.short_identifier} -->\n"
38
+ options[:postamble] = "<!-- END #{template.short_identifier} -->\n"
39
+ end
40
+
36
41
  Engine.new(options).call(source)
37
42
  end
38
43
 
@@ -1,4 +1,4 @@
1
1
  # frozen_string_literal: true
2
2
  module Hamlit
3
- VERSION = '2.14.4'
3
+ VERSION = '2.14.5'
4
4
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hamlit
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.14.4
4
+ version: 2.14.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Takashi Kokubun
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-02-01 00:00:00.000000000 Z
11
+ date: 2021-03-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: temple
@@ -257,6 +257,7 @@ extensions:
257
257
  - ext/hamlit/extconf.rb
258
258
  extra_rdoc_files: []
259
259
  files:
260
+ - ".github/FUNDING.yml"
260
261
  - ".github/workflows/test.yml"
261
262
  - ".gitignore"
262
263
  - CHANGELOG.md
@@ -313,6 +314,7 @@ files:
313
314
  - ext/hamlit/hescape.h
314
315
  - hamlit.gemspec
315
316
  - lib/hamlit.rb
317
+ - lib/hamlit/ambles.rb
316
318
  - lib/hamlit/attribute_builder.rb
317
319
  - lib/hamlit/attribute_compiler.rb
318
320
  - lib/hamlit/attribute_parser.rb
@@ -391,7 +393,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
391
393
  - !ruby/object:Gem::Version
392
394
  version: '0'
393
395
  requirements: []
394
- rubygems_version: 3.1.2
396
+ rubygems_version: 3.2.3
395
397
  signing_key:
396
398
  specification_version: 4
397
399
  summary: High Performance Haml Implementation