hamlit 2.4.0 → 2.4.1

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: 6b12c8ee8fbc97d9eda90e24db50496038942663
4
- data.tar.gz: 1260b4dfc2f4db62b82d384bfd42fc47ca75469a
3
+ metadata.gz: 451185b0fdb9ffeee0f6cbe296fd5dedda5e744f
4
+ data.tar.gz: a31833384466d9a5c6af1352135dacde21fc63a7
5
5
  SHA512:
6
- metadata.gz: db8f07ad47026134dcf60aefd9cd27c31f22ab7f7027c3605c3e2f4243bac921f54374a22bb672a04ebf3119d251ec64b970910137f8544a76a75f8c5755aef9
7
- data.tar.gz: 7d7f92c8050832f24e3e951fd4eddfea5e42863b00daaa808fb9fe69f9094300b5cf5a5c19f1a77adf15eb5c86e05809cb2c823d47fce4a443bb2ce2ce513435
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
@@ -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
- begin
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
@@ -1,3 +1,3 @@
1
1
  module Hamlit
2
- VERSION = '2.4.0'
2
+ VERSION = '2.4.1'
3
3
  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.4.0
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-05-23 00:00:00.000000000 Z
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: