mathematical 1.6.10 → 1.6.11
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/ext/mathematical/extconf.rb +2 -2
- data/lib/mathematical/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f63a20488fabfdca9dd9d1542a90084349da3b48
|
|
4
|
+
data.tar.gz: 394c5d6cc07808c8a8453562ad7fb96d3fbd50af
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fbf0dcb9b1ccfa6a34947074daf4fc3f86f80997c24efb1ca640993e604f03cff8699d376b91f71aea41d72b3a8d9875c0170d3eb6c584d6801ace1d6acd7cbb
|
|
7
|
+
data.tar.gz: df45a29481071ab48f35936d2760aad2e21113d1bafc766fb0e7adfe4458b6b0c32669c72e86af13ecc113b1516ccbcbe705dc7fbe35a3bd2841aa767c1a4e48
|
data/ext/mathematical/extconf.rb
CHANGED
|
@@ -7,7 +7,7 @@ OS = case RbConfig::CONFIG['host_os']
|
|
|
7
7
|
when /mswin|msys|mingw|cygwin|bccwin|wince|emc/
|
|
8
8
|
:windows
|
|
9
9
|
when /darwin|mac os/
|
|
10
|
-
:
|
|
10
|
+
:macos
|
|
11
11
|
when /linux/
|
|
12
12
|
:linux
|
|
13
13
|
when /solaris|bsd/
|
|
@@ -18,7 +18,7 @@ OS = case RbConfig::CONFIG['host_os']
|
|
|
18
18
|
|
|
19
19
|
LIBDIR = RbConfig::CONFIG['libdir']
|
|
20
20
|
INCLUDEDIR = RbConfig::CONFIG['includedir']
|
|
21
|
-
SHARED_EXT = OS == :
|
|
21
|
+
SHARED_EXT = OS == :macos ? 'dylib' : 'so'
|
|
22
22
|
|
|
23
23
|
unless find_executable('cmake')
|
|
24
24
|
$stderr.puts "\n\n\n[ERROR]: cmake is required and not installed. Get it here: http://www.cmake.org/\n\n"
|
data/lib/mathematical/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: mathematical
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.6.
|
|
4
|
+
version: 1.6.11
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Garen Torikian
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-09-
|
|
11
|
+
date: 2017-09-24 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: ruby-enum
|