hamlit 2.4.0 → 2.4.1
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/CHANGELOG.md +6 -0
- data/ext/hamlit/extconf.rb +3 -5
- data/lib/hamlit/version.rb +1 -1
- metadata +2 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 451185b0fdb9ffeee0f6cbe296fd5dedda5e744f
|
|
4
|
+
data.tar.gz: a31833384466d9a5c6af1352135dacde21fc63a7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 74f4245386f0a5e6bd25aa86bf38de817162db29a9e51d9a08f4b04c846ffc3afa50f90edc629e8df0b4c1a21084fc29a24b2928df551f86f6dc8959d2a87c8c
|
|
7
|
+
data.tar.gz: 4be6b3fad2635d282e4b60a56b6dc1688214fbc29e16691a6a26dd754a33a4b221cd91f0fa670786916a8945dc9e94f1dac53461e8dc66e99f9f942880930d12
|
data/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,12 @@ 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.4.1](https://github.com/k0kubun/hamlit/compare/v2.4.0...v2.4.1) - 2016-06-03
|
|
8
|
+
|
|
9
|
+
### Fixed
|
|
10
|
+
|
|
11
|
+
- Fix C extension builder to work with Ruby 2.3 on Windows
|
|
12
|
+
|
|
7
13
|
## [2.4.0](https://github.com/k0kubun/hamlit/compare/v2.3.1...v2.4.0) - 2016-05-13
|
|
8
14
|
|
|
9
15
|
### Added
|
data/ext/hamlit/extconf.rb
CHANGED
|
@@ -7,12 +7,10 @@ $CFLAGS << ' -Wall -Wextra'
|
|
|
7
7
|
$srcs = %w[hamlit.c]
|
|
8
8
|
Dir[File.join(houdini_dir, '*.c')].each do |path|
|
|
9
9
|
src = File.basename(path)
|
|
10
|
-
|
|
11
|
-
FileUtils.ln_s(path, src, force: true)
|
|
12
|
-
rescue NotImplementedError
|
|
13
|
-
# For the error on windows:
|
|
14
|
-
# symlink() function is unimplemented on this machine (NotImplementedError)
|
|
10
|
+
if /mswin|mingw/ =~ RUBY_PLATFORM
|
|
15
11
|
FileUtils.cp(path, src)
|
|
12
|
+
else
|
|
13
|
+
FileUtils.ln_s(path, src, force: true)
|
|
16
14
|
end
|
|
17
15
|
$srcs << src
|
|
18
16
|
end
|
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.4.
|
|
4
|
+
version: 2.4.1
|
|
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-
|
|
11
|
+
date: 2016-06-03 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: temple
|
|
@@ -391,4 +391,3 @@ signing_key:
|
|
|
391
391
|
specification_version: 4
|
|
392
392
|
summary: High Performance Haml Implementation
|
|
393
393
|
test_files: []
|
|
394
|
-
has_rdoc:
|