hamlit 2.9.1 → 2.9.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: bc45e545339c68fa4be81ef0dade7e48023f2529
4
- data.tar.gz: c78dad0eb8daeceed3aaca230a3587dd39207a02
2
+ SHA256:
3
+ metadata.gz: 13ec1e68a6e76570f52bcd3164031e074f02c86a44d23896266a108ca95d86d7
4
+ data.tar.gz: d7d92af631e2d6fe194c05b72963bf39b44030c7912ecab9ad62d3625ea29973
5
5
  SHA512:
6
- metadata.gz: 9f2ae53cc63fc0c3a081d776dc156b5e6fa0138d598b4981030ea98117ef14633bc2c04c5e1d94aca8a7f610ba59d8990a920c87a57c8c11ee5052ffc67a2300
7
- data.tar.gz: 51ddf158f1e3fefa9d3e338ea4b72a65065d7c46b3be992685e605950ac1cfceef21f1487b4f87a55c9ed8f0e2affb37a80d5413ced67e8b61db827c8459b734
6
+ metadata.gz: 3842f9ffc14c12ba07812ed31d6e0957b82f5d20378cae981cb019008444e7bb3564f246fe4a77658fb4457a84ce92004cd59d068aa362c1350acfdad5b2c907
7
+ data.tar.gz: 230e6fc6748f94b12a5b67a15797559267c3a93653c586af67cf6bf15951091dd5f8e54e885e561b2aa06430240764cc365decf8a4bb38a7b43bf25d417262a3
@@ -4,6 +4,11 @@ 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.9.2](https://github.com/k0kubun/hamlit/compare/v2.9.1...v2.9.2) - 2018-11-30
8
+
9
+ - Fix possible `autoload` failure of dependency [#131](https://github.com/k0kubun/hamlit/issues/131).
10
+ *Thanks to @wimrijnders*
11
+
7
12
  ## [2.9.1](https://github.com/k0kubun/hamlit/compare/v2.9.0...v2.9.1) - 2018-11-01
8
13
 
9
14
  - Start supporting JRuby [#100](https://github.com/k0kubun/hamlit/issues/100).
@@ -20,7 +20,7 @@ Gem::Specification.new do |spec|
20
20
  spec.require_paths = ['lib']
21
21
 
22
22
  if /java/ === RUBY_PLATFORM
23
- # spec.platform = 'java'
23
+ spec.platform = 'java'
24
24
  else
25
25
  spec.extensions = ['ext/hamlit/extconf.rb']
26
26
  spec.required_ruby_version = '>= 2.1.0'
@@ -1,4 +1,5 @@
1
1
  # frozen_string_literal: true
2
+ require 'temple/static_analyzer'
2
3
  require 'hamlit/ruby_expression'
3
4
  require 'hamlit/string_splitter'
4
5
 
@@ -1,4 +1,4 @@
1
1
  # frozen_string_literal: true
2
2
  module Hamlit
3
- VERSION = '2.9.1'
3
+ VERSION = '2.9.2'
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.9.1
4
+ version: 2.9.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Takashi Kokubun
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2018-11-01 00:00:00.000000000 Z
11
+ date: 2018-11-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: temple
@@ -354,7 +354,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
354
354
  version: '0'
355
355
  requirements: []
356
356
  rubyforge_project:
357
- rubygems_version: 2.6.13
357
+ rubygems_version: 2.7.6
358
358
  signing_key:
359
359
  specification_version: 4
360
360
  summary: High Performance Haml Implementation