jl4rb 0.2.5 → 0.2.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/ext/jl4rb/extconf.rb +1 -1
- data/jl4rb.gemspec +1 -2
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 994b5475b648747803c998adf29256d8142e40197a0a2880b2f5c2ef309045f6
|
4
|
+
data.tar.gz: 73a77f6ccc7a6c5ffa2bf86179ddf4efaa3c8d5b30abde28c0563b59a0fee1df
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 21394963d68c946891f10d9eb71613f170f0e5c78130126ad7fafcc98fe8e3558d787e39f7f451136e11d5c85a0635ea7531361a126f50eafbf73849120e4d6e
|
7
|
+
data.tar.gz: 2924a03b95e4860482d6227565dbc83e88e33ce17318c33221d3b47d3bfaa860a7a2f851d25fcddc9d27a8fa6ebb2b4a13ac53092c4e5313848e022e57d95d96
|
data/ext/jl4rb/extconf.rb
CHANGED
@@ -15,7 +15,7 @@ end
|
|
15
15
|
def jl4rb_makefile(incs,libs)
|
16
16
|
|
17
17
|
jl_share=`julia -e 'print(joinpath(Sys.BINDIR, Base.DATAROOTDIR, "julia"))'`
|
18
|
-
$CFLAGS =`julia #{jl_share}/julia-config.jl --cflags`.strip + " -fdeclspec"
|
18
|
+
$CFLAGS =`julia #{jl_share}/julia-config.jl --cflags`.strip + (RUBY_VERSION.split(".")[0] > "2" ? " -fdeclspec" : "")
|
19
19
|
$LDFLAGS =`julia #{jl_share}/julia-config.jl --ldflags`.strip
|
20
20
|
$LIBS = `julia #{jl_share}/julia-config.jl --ldlibs`.strip
|
21
21
|
|
data/jl4rb.gemspec
CHANGED
@@ -2,7 +2,7 @@ require 'rubygems'
|
|
2
2
|
require 'rubygems/package_task'
|
3
3
|
|
4
4
|
PKG_NAME='jl4rb'
|
5
|
-
PKG_VERSION='0.2.
|
5
|
+
PKG_VERSION='0.2.6'
|
6
6
|
PKG_FILES=FileList[
|
7
7
|
'Rakefile','jl4rb.gemspec',
|
8
8
|
'ext/jl4rb/*.c',
|
@@ -29,5 +29,4 @@ EOF
|
|
29
29
|
s.author = "CQLS"
|
30
30
|
s.email= "rdrouilh@gmail.com"
|
31
31
|
s.homepage = "http://cqls.upmf-grenoble.fr"
|
32
|
-
s.rubyforge_project = nil
|
33
32
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jl4rb
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- CQLS
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-10-29 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: 'R is embedded in ruby with some communication support .
|
14
14
|
|
@@ -52,7 +52,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
52
52
|
version: '0'
|
53
53
|
requirements:
|
54
54
|
- none
|
55
|
-
rubygems_version: 3.3.
|
55
|
+
rubygems_version: 3.3.11
|
56
56
|
signing_key:
|
57
57
|
specification_version: 4
|
58
58
|
summary: Julia for ruby
|