carray 1.1.5 → 1.1.6
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/carray.gemspec +10 -7
- data/version.h +3 -3
- metadata +10 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 276a2111392d231904754413e83e6598bb834860
|
|
4
|
+
data.tar.gz: 0c318098c83e0a9f420a1a2dc63395d5d4fea67f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6ca9bf7e2a4f6feaff5f2d5afc302789109a2ad9eb3c5ea27a3c6a5d6f92dd83a6f60cd5a2a2fe9471f801b89d11e91d8120e9038997bc75f6b4327ba33a17ec
|
|
7
|
+
data.tar.gz: 0a8c4127d977106751c6fd7186211dd3ef51f04091b6ccbd4bef111e0fab4f03eb1ca2909d53d8053b042bec5676635e69f496452cd4349cecd150c7f5a48256
|
data/carray.gemspec
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
|
|
2
|
-
|
|
2
|
+
|
|
3
|
+
Gem::Specification::new do |s|
|
|
4
|
+
require_relative "./version"
|
|
5
|
+
|
|
6
|
+
version, date = carray_version()
|
|
7
|
+
|
|
8
|
+
files = Dir.glob("**/*") - [
|
|
3
9
|
Dir.glob("vendor"),
|
|
4
10
|
Dir.glob("ext/**/{Makefile,mkmf.log}"),
|
|
5
11
|
Dir.glob("**/*.{o,so,bundle}"),
|
|
@@ -7,11 +13,7 @@ files = Dir.glob("**/*") - [
|
|
|
7
13
|
Dir.glob("carray-*.gem"),
|
|
8
14
|
].flatten
|
|
9
15
|
|
|
10
|
-
Gem::
|
|
11
|
-
require "./version.rb"
|
|
12
|
-
version, date = carray_version()
|
|
13
|
-
|
|
14
|
-
s.platform = Gem::Platform::RUBY
|
|
16
|
+
s.platform = Gem::Platform::RUBY
|
|
15
17
|
s.name = "carray"
|
|
16
18
|
s.summary = "Multi-dimesional array class"
|
|
17
19
|
s.description = <<-HERE
|
|
@@ -25,6 +27,8 @@ Gem::Specification::new do |s|
|
|
|
25
27
|
s.email = ""
|
|
26
28
|
s.homepage = 'https://github.com/himotoyoshi/carray'
|
|
27
29
|
s.files = files
|
|
30
|
+
s.extensions = [ "extconf.rb" ] +
|
|
31
|
+
Dir["ext/*/extconf.rb"].select{|f| File.exist?(f) }
|
|
28
32
|
s.has_rdoc = true
|
|
29
33
|
s.rdoc_options = [
|
|
30
34
|
"--main=rdoc_main.rb",
|
|
@@ -34,6 +38,5 @@ Gem::Specification::new do |s|
|
|
|
34
38
|
"rdoc_stat.rb",
|
|
35
39
|
Dir.glob("lib/carray/**/*.rb")
|
|
36
40
|
].flatten
|
|
37
|
-
s.requirements << "C compiler supports C99 complex and "
|
|
38
41
|
s.required_ruby_version = ">= 1.8.1"
|
|
39
42
|
end
|
data/version.h
CHANGED
|
@@ -10,9 +10,9 @@
|
|
|
10
10
|
|
|
11
11
|
---------------------------------------------------------------------------- */
|
|
12
12
|
|
|
13
|
-
#define CA_VERSION "1.1.
|
|
14
|
-
#define CA_VERSION_CODE
|
|
13
|
+
#define CA_VERSION "1.1.6"
|
|
14
|
+
#define CA_VERSION_CODE 116
|
|
15
15
|
#define CA_VERSION_MAJOR 1
|
|
16
16
|
#define CA_VERSION_MINOR 1
|
|
17
|
-
#define CA_VERSION_TEENY
|
|
17
|
+
#define CA_VERSION_TEENY 6
|
|
18
18
|
#define CA_VERSION_DATE "2016/05/06"
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: carray
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.1.
|
|
4
|
+
version: 1.1.6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Hiroki Motoyoshi
|
|
@@ -17,7 +17,14 @@ description: |2
|
|
|
17
17
|
Element-wise masking and mathematical operations are natively supported.
|
|
18
18
|
email: ''
|
|
19
19
|
executables: []
|
|
20
|
-
extensions:
|
|
20
|
+
extensions:
|
|
21
|
+
- extconf.rb
|
|
22
|
+
- ext/calculus/extconf.rb
|
|
23
|
+
- ext/dataframe/extconf.rb
|
|
24
|
+
- ext/fortio/extconf.rb
|
|
25
|
+
- ext/imagemap/extconf.rb
|
|
26
|
+
- ext/mathfunc/extconf.rb
|
|
27
|
+
- ext/narray/extconf.rb
|
|
21
28
|
extra_rdoc_files: []
|
|
22
29
|
files:
|
|
23
30
|
- COPYING
|
|
@@ -312,8 +319,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
312
319
|
- - ">="
|
|
313
320
|
- !ruby/object:Gem::Version
|
|
314
321
|
version: '0'
|
|
315
|
-
requirements:
|
|
316
|
-
- 'C compiler supports C99 complex and '
|
|
322
|
+
requirements: []
|
|
317
323
|
rubyforge_project:
|
|
318
324
|
rubygems_version: 2.6.3
|
|
319
325
|
signing_key:
|