hamlit 2.4.1 → 2.4.2

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: 451185b0fdb9ffeee0f6cbe296fd5dedda5e744f
4
- data.tar.gz: a31833384466d9a5c6af1352135dacde21fc63a7
3
+ metadata.gz: 75bbaf8a560601a913c28b186797c6824914765e
4
+ data.tar.gz: e4d255684eb75fdfa4d3dac23628ba1515cc95ff
5
5
  SHA512:
6
- metadata.gz: 74f4245386f0a5e6bd25aa86bf38de817162db29a9e51d9a08f4b04c846ffc3afa50f90edc629e8df0b4c1a21084fc29a24b2928df551f86f6dc8959d2a87c8c
7
- data.tar.gz: 4be6b3fad2635d282e4b60a56b6dc1688214fbc29e16691a6a26dd754a33a4b221cd91f0fa670786916a8945dc9e94f1dac53461e8dc66e99f9f942880930d12
6
+ metadata.gz: e854cb4ac85a81d87badd44f79311408fe65eb6cc9c354a2a23f623c0b3e0653239a83e7abd8616e7c98c1979387b53a712802c03ca641496f0f4f744db1cfad
7
+ data.tar.gz: aefbae2ce306c8d6586b87826dc7e8db68213fcc67291f13ce97ed30bed3336a3d3016aac04122d42422311efee3a0c3533957b3f902ef0400c3860755bd339a
@@ -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.2](https://github.com/k0kubun/hamlit/compare/v2.4.1...v2.4.2) - 2016-06-04
8
+
9
+ ### Fixed
10
+
11
+ - Regard cygwin and bccwin as Windows environment too
12
+
7
13
  ## [2.4.1](https://github.com/k0kubun/hamlit/compare/v2.4.0...v2.4.1) - 2016-06-03
8
14
 
9
15
  ### Fixed
@@ -7,7 +7,7 @@ $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
- if /mswin|mingw/ =~ RUBY_PLATFORM
10
+ if /mswin|mingw|cygwin|bccwin/ =~ RUBY_PLATFORM
11
11
  FileUtils.cp(path, src)
12
12
  else
13
13
  FileUtils.ln_s(path, src, force: true)
@@ -1,3 +1,3 @@
1
1
  module Hamlit
2
- VERSION = '2.4.1'
2
+ VERSION = '2.4.2'
3
3
  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.4.1
4
+ version: 2.4.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Takashi Kokubun