hamlit 2.7.1 → 2.7.2

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
  SHA1:
3
- metadata.gz: dcba4705c56d2c130668fb235560be337b5b4080
4
- data.tar.gz: cd2cc85376d294046608a0e7c36b160f83971d8e
3
+ metadata.gz: 09deba103d2ef587a9f16492f39cc14c050fb8e1
4
+ data.tar.gz: 90f1e9eebed58018fa8560d3ea8ea1f9ff2036c8
5
5
  SHA512:
6
- metadata.gz: 5b9c550bb834c50c714a7fab554d07a42e8007b1b7ccb3a6734295eb410056541106a14a183f4731e7c3c838832445d8eee0612da05eda28daa179f476117d00
7
- data.tar.gz: a098b5ce23d3f7c99fdd814b665c289bde1c61bc4a54eeb58ebcfb2c1d50aae565b70e3fad00e4490c2ef71f828ed5af1cc60c650c2b13f769dcfbc5e17fabfd
6
+ metadata.gz: 120f3e054abc94caa703d5e47fdcedf4127ea8653ba7863ac19391c18b4037cbb03147ff07d88270cc7270e329364a0343f6b0d60578a757481a3fec222d093e
7
+ data.tar.gz: 605d6ec08c6b236abe5c0882d05deef2e94bb5d89fd558801ed998ded076a27cdfcb17a1073354159b2130b1dc2a8217c9f0470e817dd7aec9477279a9c29d18
@@ -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.7.2](https://github.com/k0kubun/hamlit/compare/v2.7.1...v2.7.2) - 2016-09-19
8
+
9
+ ### Fixed
10
+
11
+ - Fix engine option warning
12
+ [#90](https://github.com/k0kubun/hamlit/issues/90). *Thank to @kikonen*
13
+
7
14
  ## [2.7.1](https://github.com/k0kubun/hamlit/compare/v2.7.0...v2.7.1) - 2016-09-19
8
15
 
9
16
  ### Fixed
@@ -11,6 +11,7 @@ require 'hamlit/static_analyzer'
11
11
  module Hamlit
12
12
  class Engine < Temple::Engine
13
13
  define_options(
14
+ :buffer_class,
14
15
  generator: Temple::Generators::ArrayBuffer,
15
16
  format: :html,
16
17
  attr_quote: "'",
@@ -1,4 +1,4 @@
1
1
  # frozen_string_literal: true
2
2
  module Hamlit
3
- VERSION = '2.7.1'
3
+ VERSION = '2.7.2'
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.7.1
4
+ version: 2.7.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Takashi Kokubun