hamlit 2.14.2-java → 2.14.3-java
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 +4 -4
- data/.github/workflows/test.yml +11 -7
- data/CHANGELOG.md +7 -0
- data/README.md +0 -1
- data/lib/hamlit/railtie.rb +1 -1
- data/lib/hamlit/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 11c32d81401751aafca753073b44560253e4605b7485cc625b2b8d27e7180a05
|
|
4
|
+
data.tar.gz: 9f6bba687c6d525fd182ceef3f1e17f13ed7c066259373d51fffd6296dcda4ae
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d3b66ba289cc883be82057a9f1432e0d3fc9c1e66b8e5f26f5cf4dcf9e922af3f8eb1c61552e40d17a85e086a2542d7e1b0b7c7d5620a381c093c452f7845fc7
|
|
7
|
+
data.tar.gz: 1a8922aee504b14aad091827f69979d32a1b9c23791a00cae4f412a154f449c423661f8b7250c44c11fa34f852288676718cc383f1f18e107e5a1a63529b9f35
|
data/.github/workflows/test.yml
CHANGED
|
@@ -13,24 +13,28 @@ on:
|
|
|
13
13
|
jobs:
|
|
14
14
|
test:
|
|
15
15
|
runs-on: ubuntu-latest
|
|
16
|
-
container: ${{ matrix.ruby }}
|
|
17
16
|
strategy:
|
|
18
17
|
fail-fast: false
|
|
19
18
|
matrix:
|
|
20
19
|
ruby:
|
|
21
|
-
-
|
|
22
|
-
-
|
|
23
|
-
-
|
|
24
|
-
-
|
|
25
|
-
|
|
20
|
+
- '2.5'
|
|
21
|
+
- '2.6'
|
|
22
|
+
- '2.7'
|
|
23
|
+
- '3.0'
|
|
24
|
+
- jruby
|
|
25
|
+
- truffleruby-head
|
|
26
26
|
steps:
|
|
27
27
|
- uses: actions/checkout@v2
|
|
28
|
+
- name: Set up Ruby
|
|
29
|
+
uses: ruby/setup-ruby@v1
|
|
30
|
+
with:
|
|
31
|
+
ruby-version: ${{ matrix.ruby }}
|
|
28
32
|
- uses: actions/cache@v2
|
|
29
33
|
with:
|
|
30
34
|
path: vendor/bundle
|
|
31
35
|
key: ${{ runner.os }}-${{ matrix.ruby }}-gems-${{ hashFiles('**/Gemfile.lock') }}
|
|
32
36
|
restore-keys: ${{ runner.os }}-gems-
|
|
33
|
-
- run: apt-get update && apt-get install -y nodejs #
|
|
37
|
+
- run: sudo apt-get update && sudo apt-get install -y nodejs libxslt-dev # nodejs for execjs, libxslt for TruffleRuby nokogiri
|
|
34
38
|
- name: bundle install
|
|
35
39
|
run: bundle config path vendor/bundle && bundle install -j$(nproc) --retry 3
|
|
36
40
|
- run: bundle exec rake test
|
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.3](https://github.com/k0kubun/hamlit/compare/v2.14.2...v2.14.3) - 2021-01-24
|
|
8
|
+
|
|
9
|
+
### Fixed
|
|
10
|
+
|
|
11
|
+
- Ensure the Rails initializer is called before `:load_config_initializers` [#176](https://github.com/k0kubun/hamlit/issues/176)
|
|
12
|
+
*Thanks to @sunny*
|
|
13
|
+
|
|
7
14
|
## [2.14.2](https://github.com/k0kubun/hamlit/compare/v2.14.1...v2.14.2) - 2021-01-21
|
|
8
15
|
|
|
9
16
|
### Fixed
|
data/README.md
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
# Hamlit
|
|
2
2
|
|
|
3
3
|
[](http://badge.fury.io/rb/hamlit)
|
|
4
|
-
[](https://travis-ci.org/k0kubun/hamlit)
|
|
5
4
|
[](https://github.com/k0kubun/hamlit/actions?query=workflow%3Atest)
|
|
6
5
|
|
|
7
6
|
Hamlit is a high performance [Haml](https://github.com/haml/haml) implementation.
|
data/lib/hamlit/railtie.rb
CHANGED
data/lib/hamlit/version.rb
CHANGED
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
|
+
version: 2.14.3
|
|
5
5
|
platform: java
|
|
6
6
|
authors:
|
|
7
7
|
- Takashi Kokubun
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-01-
|
|
11
|
+
date: 2021-01-24 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|