hamlit 2.6.2 → 2.7.0

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: b22430fc90715fc9557d4cd0f63bf7cd616c43c4
4
- data.tar.gz: aa4ce7df77eb79e02688a208b8efa8cfdf572c60
3
+ metadata.gz: 2cc9b6d89274a0d67b34821d9db5c3f8b030def3
4
+ data.tar.gz: 53bd799f72ed3f007be514fa4c792a4e50aee750
5
5
  SHA512:
6
- metadata.gz: 0b4d121ab0326143c3651727f7d122006389fd9064810aa38b8b9d251a92bba143ebe9582614fd76e2611e7b1a50e43d76bd904acbf18c0aa3096ada925d74ec
7
- data.tar.gz: 512e91b9d64b94615f9fde9fec22145db8a8e8eeac74a663896cb43d1065d5e0f51ff4a61ffbd1e68e89896393f7cfc9a6e93564d302009c1d60988ba591d2e4
6
+ metadata.gz: f67f45ef08b9a44a27d3fb35aafd128d34797ecf1cb15ac7dc7647cbf916b296c6d457f1e937b0b7afc448a1d6fe229e2ac1839471f17914d6656eb282bc2ef6
7
+ data.tar.gz: 3a5b6bf125cddd93639913653b29d7d66b58268003c109b13cccc7d352e9839ebdf4433a646122546a2a4822840fcdb2f48d56fc981f6545bfe7d1a60e3bb861
data/.gitignore CHANGED
@@ -13,3 +13,4 @@
13
13
  *.so
14
14
  *.o
15
15
  *.a
16
+ *.swp
@@ -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.0](https://github.com/k0kubun/hamlit/compare/v2.6.2...v2.7.0) - 2016-08-31
8
+
9
+ ### Changed
10
+
11
+ - Don't escape interpolated content in plain filter
12
+ [#87](https://github.com/k0kubun/hamlit/pull/87). *Thanks to @shmargum*
13
+
7
14
  ## [2.6.2](https://github.com/k0kubun/hamlit/compare/v2.6.1...v2.6.2) - 2016-08-27
8
15
 
9
16
  ### Added
@@ -45,7 +45,7 @@ for full features in original implementation.
45
45
  - [x] Escaping HTML: &=
46
46
  - [x] Unescaping HTML: !=
47
47
  - [x] Filters
48
- - [ ] :cdata
48
+ - [x] :cdata
49
49
  - [x] :coffee
50
50
  - [x] :css
51
51
  - [x] :erb
@@ -18,7 +18,7 @@ module Hamlit
18
18
  type, str = temple
19
19
  case type
20
20
  when :dynamic
21
- [:escape, true, [:dynamic, str]]
21
+ [:escape, false, [:dynamic, str]]
22
22
  else
23
23
  temple
24
24
  end
@@ -1,4 +1,4 @@
1
1
  # frozen_string_literal: true
2
2
  module Hamlit
3
- VERSION = '2.6.2'
3
+ VERSION = '2.7.0'
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.6.2
4
+ version: 2.7.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Takashi Kokubun
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2016-08-26 00:00:00.000000000 Z
11
+ date: 2016-08-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: temple