gsl 2.1.0.2 → 2.1.0.3

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: 867207d0bcbf91b9e09347e0ff88f94e33eb25c0
4
- data.tar.gz: 49cb32046c2852fee2d42af5626842a4c9564d86
3
+ metadata.gz: bea0f96dc3d0ae9fbdd97cec79326864be9ecc9b
4
+ data.tar.gz: b7cef9985274d27955f18ef4d714902faf5bacba
5
5
  SHA512:
6
- metadata.gz: ca492e6d20fd79de8c8f9c902083876f9d987923673a9f8575cad9a9f13ae059785ee84c4af08473b2fdf1eacb17a374fd4e6764f25ece46d0ee0a212182a91a
7
- data.tar.gz: ada482645b5ce72b16c27b79915378942599d90b9b7ef18d7636f4da50d7439d7d71fdd9d486430017896be64c802250db8f14f8bbb4c99e760263d8f2ff0874
6
+ metadata.gz: 0c00bdb56b8a22f938e549f32791bcdee3d2a019e47498889a31d3bebc5ca212c2c679c6fcd83092140872e5c226f8a2290377ab411581ec9c0863deb8dfd8cf
7
+ data.tar.gz: 8be0d80aad6a7436e5b5bffbbacda6df5af5cfd9e6b6eb3ac1f2a9bfd8cbdfd8e2219c22919089bc99b3fb39513dbf20ee5b313fbecfd63ddae2498b20823e26
data/ChangeLog CHANGED
@@ -1,5 +1,9 @@
1
1
  # markup: rd
2
2
 
3
+ == Sat April 29 2017
4
+ - Enhancements
5
+ * Suppress warnings in Ruby 2.4 by suppressing use of Fixnum.
6
+
3
7
  == Mon January 30 2017
4
8
  - Enhancements
5
9
  * Support for assigning Ruby Complex types to GSL::Matrix::Complex. (@v0dro)
@@ -40,4 +40,4 @@ module GSL::Oper
40
40
 
41
41
  end
42
42
 
43
- [Fixnum, Float].each { |klass| klass.send(:include, GSL::Oper) }
43
+ [RUBY_VERSION > "2.4" ? Integer : Fixnum, Float].each { |klass| klass.send(:include, GSL::Oper) }
@@ -1,3 +1,3 @@
1
1
  module GSL
2
- RUBY_GSL_VERSION = RB_GSL_VERSION = '2.1.0.2'
2
+ RUBY_GSL_VERSION = RB_GSL_VERSION = '2.1.0.3'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gsl
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.0.2
4
+ version: 2.1.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yoshiki Tsunesada
@@ -11,7 +11,7 @@ authors:
11
11
  autorequire:
12
12
  bindir: bin
13
13
  cert_chain: []
14
- date: 2017-01-30 00:00:00.000000000 Z
14
+ date: 2017-04-29 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: rake-compiler
@@ -886,7 +886,7 @@ post_install_message: "\n gsl can be installed with or without narray support
886
886
  gsl.\n "
887
887
  rdoc_options:
888
888
  - "--title"
889
- - Ruby/GSL (2.1.0.2)
889
+ - Ruby/GSL (2.1.0.3)
890
890
  - "--charset"
891
891
  - UTF-8
892
892
  - "--line-numbers"