rake-compiler 1.0.1 → 1.0.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5874e9da35805567c4884a2ff13f02b35ac5d81a
4
- data.tar.gz: 561065c4a2e60b4d2b0823caaac0d4bd414e85bf
3
+ metadata.gz: 03252eb82e9f149d8b0595c6d4d706b57b12162b
4
+ data.tar.gz: d044f1b61816c1e7a46bc0591969b553cff2bfee
5
5
  SHA512:
6
- metadata.gz: cd48f027eec09d0f775eed9c5022d19d6f1a37904764bc24ae24580498f3149a4199606f075be54d2e5b33cc087a543335202543f194618f3fe1f0a5fb746bae
7
- data.tar.gz: 1da44d65df10fb7c70ed76d01a940bbffa496e135f76543b7923f28a484108606bd2c42c5065cd30de444fceaafb29f1b967fd166faaa32f45367464f9ba119a
6
+ metadata.gz: ffd3beb651811d3f616652dbd952f85f029d30ced44e5dfa4f7a8de06844617602a19558600cc07f956d0e0694b6855ac8976c02763d58ee3e222e54997c0e84
7
+ data.tar.gz: a443ea8df5261473b0058e69d3047771ff8b8c4f53349cfb77292684be046c829e9dfc5f65a340dbbdff3d8c328247c2c37da04a5963991446710459f4625678
@@ -1,3 +1,11 @@
1
+ === 1.0.2 / 2016-11-13
2
+
3
+ * Bugfixes:
4
+ * Fix Ruby version detection example code in README.
5
+ #135 [Patch by Nicolas Noble]
6
+ * Fix version detection.
7
+ #136 [Patch by Lars Kanis]
8
+
1
9
  === 1.0.1 / 2016-06-21
2
10
 
3
11
  * Bugfixes:
@@ -393,7 +393,7 @@ cross compiling from a Linux or OSX host. Patches are welcome if building
393
393
  Now it's up to you to make your gem load the proper binary at runtime:
394
394
 
395
395
  begin
396
- RUBY_VERSION =~ /(\d+.\d+)/
396
+ RUBY_VERSION =~ /(\d+\.\d+)/
397
397
  require "#{$1}/my_extension"
398
398
  rescue LoadError
399
399
  require "my_extension"
@@ -342,7 +342,7 @@ Java extension should be preferred.
342
342
 
343
343
  # tweak lib directory only when targeting multiple versions
344
344
  if multi then
345
- version =~ /(\d+.\d+)/
345
+ version =~ /(\d+\.\d+)/
346
346
  @lib_dir = "#{@lib_dir}/#{$1}"
347
347
  end
348
348
 
@@ -3,7 +3,7 @@ require 'rubygems/package_task'
3
3
  GEM_SPEC = Gem::Specification.new do |s|
4
4
  # basic information
5
5
  s.name = "rake-compiler"
6
- s.version = "1.0.1"
6
+ s.version = "1.0.2"
7
7
  s.platform = Gem::Platform::RUBY
8
8
 
9
9
  # description and details
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rake-compiler
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kouhei Sutou
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2016-06-20 00:00:00.000000000 Z
12
+ date: 2016-11-13 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rake