hamlit 2.13.1-java → 2.13.2-java

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: f649de4fc1498b7d3ba1df9351244d386830815789d64213e7e7295bb64fe29c
4
- data.tar.gz: 590f33639faf1c98af0d0fd7b2aeae79ed7f7d57f5983c65a7fc0728d7d167d6
3
+ metadata.gz: 9c157cfa69dafaafe52824f77e7d8b42678ba3710dd09bbb5808a714cfda759a
4
+ data.tar.gz: 1e734a39a56edf5cd3898d9245506dd865e15734cc590c990c72350f20e48ae6
5
5
  SHA512:
6
- metadata.gz: 7c38eef161d63b822b4c17baebcfbac20a54af445620d20b63e3a0d746aee1c1fa0a594d2bf9a067d3fa761c17e6294fc20dc1d6e8230ecbdd97c2651e368675
7
- data.tar.gz: 1a31b1fce2a21204ef7d9baa240bb5bbc5c76832bc6a5ccabc9780b6df0fd4a7a451b84f08879e70c2bdffbc26191399facb8fb4af7de75b0a952bb3cd7d0f43
6
+ metadata.gz: 6ab77e54fe32548c307d1f1fef0356915be976313721ec70bd33877f5063f5a953c00b722b267af01668ea33c05daef9e07d8c7732936126ca1d06791c81161f
7
+ data.tar.gz: 57aea5e83ec4a34fd5bd41878b687f13e987c4a2d8a7bec1b7823d86755332f49084d20a61a88ecbdadd7278d9ef1517a871b1b8a338cad02f765bc4862f56d4
@@ -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.13.2](https://github.com/k0kubun/hamlit/compare/v2.13.1...v2.13.2) - 2020-12-27
8
+
9
+ ### Added
10
+
11
+ - Speed up `hamlit` commands [#166](https://github.com/k0kubun/hamlit/issues/166)
12
+ *Thanks to @knightq*
13
+
7
14
  ## [2.13.1](https://github.com/k0kubun/hamlit/compare/v2.13.0...v2.13.1) - 2020-12-27
8
15
 
9
16
  ### Added
@@ -4,8 +4,10 @@ require 'hamlit/error'
4
4
  require 'hamlit/version'
5
5
  require 'hamlit/template'
6
6
 
7
- begin
8
- require 'rails'
9
- require 'hamlit/railtie'
10
- rescue LoadError
7
+ if File.basename($0) != 'hamlit'
8
+ begin
9
+ require 'rails'
10
+ require 'hamlit/railtie'
11
+ rescue LoadError
12
+ end
11
13
  end
@@ -1,4 +1,4 @@
1
1
  # frozen_string_literal: true
2
2
  module Hamlit
3
- VERSION = '2.13.1'
3
+ VERSION = '2.13.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.13.1
4
+ version: 2.13.2
5
5
  platform: java
6
6
  authors:
7
7
  - Takashi Kokubun