carray-calculus 1.0.0 → 1.0.1
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-calculus.gemspec +2 -2
- data/ext/Makefile +41 -32
- data/ext/carray_calculus.c +3 -3
- data/ext/carray_interp.c +2 -2
- data/ext/mkmf.log +3 -4
- metadata +7 -10
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 36f30af2075398a1f329bc295772f3f450ee92fdc8220a7c19887fdf1acbdde0
|
|
4
|
+
data.tar.gz: 73f774fecba7d721177a85c9dcfe49a8721186df0397ffd3bf00ed05ef3b919b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 38ddcc89326484b1a3b3ec16f0ddb5fc260f438a77432386b3d3c37ed97e13bf6e7c7d8492ce84a29326da7f3cc77e537db526667944985fd0c4444240926847
|
|
7
|
+
data.tar.gz: 112470a3aca153b5a362a67b6de5d758a2160b812f21962a6c1f5ded153fc6a3ae5dd1b493e8441a828d218469a6dd0ecc3bebf6d9683e3cadd24811ea2524be
|
data/carray-calculus.gemspec
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
Gem::Specification::new do |s|
|
|
2
|
-
version = "1.0.
|
|
2
|
+
version = "1.0.1"
|
|
3
3
|
files = Dir.glob("**/*") - [
|
|
4
4
|
Dir.glob("carray-calculus-*.gem"),
|
|
5
5
|
Dir.glob("test/**/*"),
|
|
@@ -20,6 +20,6 @@ Gem::Specification::new do |s|
|
|
|
20
20
|
s.files = files
|
|
21
21
|
s.extensions = [ "ext/extconf.rb" ]
|
|
22
22
|
s.required_ruby_version = ">= 2.4.0"
|
|
23
|
-
s.add_runtime_dependency 'carray', '~>
|
|
23
|
+
s.add_runtime_dependency 'carray', '~> 2.0', '>= 2.0.0'
|
|
24
24
|
end
|
|
25
25
|
|
data/ext/Makefile
CHANGED
|
@@ -3,6 +3,7 @@ SHELL = /bin/sh
|
|
|
3
3
|
|
|
4
4
|
# V=0 quiet, V=1 verbose. other values don't work.
|
|
5
5
|
V = 0
|
|
6
|
+
V0 = $(V:0=)
|
|
6
7
|
Q1 = $(V:1=)
|
|
7
8
|
Q = $(Q1:0=@)
|
|
8
9
|
ECHO1 = $(V:1=@ :)
|
|
@@ -12,12 +13,12 @@ NULLCMD = :
|
|
|
12
13
|
#### Start of system configuration section. ####
|
|
13
14
|
|
|
14
15
|
srcdir = .
|
|
15
|
-
topdir = /Users/himotoyoshi/.rbenv/versions/
|
|
16
|
+
topdir = /Users/himotoyoshi/.rbenv/versions/3.4.1/include/ruby-3.4.0
|
|
16
17
|
hdrdir = $(topdir)
|
|
17
|
-
arch_hdrdir = /Users/himotoyoshi/.rbenv/versions/
|
|
18
|
+
arch_hdrdir = /Users/himotoyoshi/.rbenv/versions/3.4.1/include/ruby-3.4.0/arm64-darwin24
|
|
18
19
|
PATH_SEPARATOR = :
|
|
19
20
|
VPATH = $(srcdir):$(arch_hdrdir)/ruby:$(hdrdir)/ruby
|
|
20
|
-
prefix = $(DESTDIR)/Users/himotoyoshi/.rbenv/versions/
|
|
21
|
+
prefix = $(DESTDIR)/Users/himotoyoshi/.rbenv/versions/3.4.1
|
|
21
22
|
rubysitearchprefix = $(rubylibprefix)/$(sitearch)
|
|
22
23
|
rubyarchprefix = $(rubylibprefix)/$(arch)
|
|
23
24
|
rubylibprefix = $(libdir)/$(RUBY_BASE_NAME)
|
|
@@ -41,6 +42,7 @@ archincludedir = $(includedir)/$(arch)
|
|
|
41
42
|
sitearchlibdir = $(libdir)/$(sitearch)
|
|
42
43
|
archlibdir = $(libdir)/$(arch)
|
|
43
44
|
ridir = $(datarootdir)/$(RI_BASE_NAME)
|
|
45
|
+
modular_gc_dir = $(DESTDIR)
|
|
44
46
|
mandir = $(datarootdir)/man
|
|
45
47
|
localedir = $(datarootdir)/locale
|
|
46
48
|
libdir = $(exec_prefix)/lib
|
|
@@ -50,8 +52,9 @@ dvidir = $(docdir)
|
|
|
50
52
|
htmldir = $(docdir)
|
|
51
53
|
infodir = $(datarootdir)/info
|
|
52
54
|
docdir = $(datarootdir)/doc/$(PACKAGE)
|
|
53
|
-
oldincludedir = $(
|
|
54
|
-
includedir = $(prefix)/include
|
|
55
|
+
oldincludedir = $(DESTDIR)/usr/include
|
|
56
|
+
includedir = $(SDKROOT)$(prefix)/include
|
|
57
|
+
runstatedir = $(localstatedir)/run
|
|
55
58
|
localstatedir = $(prefix)/var
|
|
56
59
|
sharedstatedir = $(prefix)/com
|
|
57
60
|
sysconfdir = $(prefix)/etc
|
|
@@ -63,54 +66,59 @@ bindir = $(exec_prefix)/bin
|
|
|
63
66
|
archdir = $(rubyarchdir)
|
|
64
67
|
|
|
65
68
|
|
|
69
|
+
CC_WRAPPER =
|
|
66
70
|
CC = clang
|
|
67
|
-
CXX = clang++
|
|
68
|
-
LIBRUBY = $(
|
|
71
|
+
CXX = clang++ -std=gnu++11
|
|
72
|
+
LIBRUBY = $(LIBRUBY_SO)
|
|
69
73
|
LIBRUBY_A = lib$(RUBY_SO_NAME)-static.a
|
|
70
|
-
LIBRUBYARG_SHARED =
|
|
71
|
-
LIBRUBYARG_STATIC = -l$(RUBY_SO_NAME)-static -framework CoreFoundation
|
|
74
|
+
LIBRUBYARG_SHARED = -l$(RUBY_SO_NAME)
|
|
75
|
+
LIBRUBYARG_STATIC = -l$(RUBY_SO_NAME)-static -framework CoreFoundation $(MAINLIBS)
|
|
72
76
|
empty =
|
|
73
77
|
OUTFLAG = -o $(empty)
|
|
74
78
|
COUTFLAG = -o $(empty)
|
|
75
79
|
CSRCFLAG = $(empty)
|
|
76
80
|
|
|
77
81
|
RUBY_EXTCONF_H =
|
|
78
|
-
cflags = $(optflags) $(debugflags) $(warnflags)
|
|
79
|
-
cxxflags =
|
|
82
|
+
cflags = $(hardenflags) -fdeclspec $(optflags) $(debugflags) $(warnflags)
|
|
83
|
+
cxxflags =
|
|
80
84
|
optflags = -O3 -fno-fast-math
|
|
81
85
|
debugflags = -ggdb3
|
|
82
|
-
warnflags = -Wall -Wextra -
|
|
86
|
+
warnflags = -Wall -Wextra -Wextra-tokens -Wdeprecated-declarations -Wdivision-by-zero -Wdiv-by-zero -Wimplicit-function-declaration -Wimplicit-int -Wpointer-arith -Wshorten-64-to-32 -Wwrite-strings -Wold-style-definition -Wmissing-noreturn -Wno-cast-function-type -Wno-constant-logical-operand -Wno-long-long -Wno-missing-field-initializers -Wno-overlength-strings -Wno-parentheses-equality -Wno-self-assign -Wno-tautological-compare -Wno-unused-parameter -Wno-unused-value -Wunused-variable -Wmisleading-indentation -Wundef
|
|
87
|
+
cppflags =
|
|
83
88
|
CCDLFLAGS = -fno-common
|
|
84
|
-
CFLAGS = $(CCDLFLAGS) $(cflags)
|
|
89
|
+
CFLAGS = $(CCDLFLAGS) $(cflags) -fno-common -pipe $(ARCH_FLAG)
|
|
85
90
|
INCFLAGS = -I. -I$(arch_hdrdir) -I$(hdrdir)/ruby/backward -I$(hdrdir) -I$(srcdir)
|
|
86
91
|
DEFS =
|
|
87
|
-
CPPFLAGS = -DHAVE_CARRAY_H -I/Users/himotoyoshi/.rbenv/versions/
|
|
88
|
-
CXXFLAGS = $(CCDLFLAGS)
|
|
89
|
-
ldflags = -L. -
|
|
90
|
-
dldflags = -L/
|
|
91
|
-
ARCH_FLAG =
|
|
92
|
+
CPPFLAGS = -DHAVE_CARRAY_H -I/Users/himotoyoshi/.rbenv/versions/3.4.1/lib/ruby/gems/3.4.0/gems/carray-2.0.0/lib -D_XOPEN_SOURCE -D_DARWIN_C_SOURCE -D_DARWIN_UNLIMITED_SELECT -D_REENTRANT $(DEFS) $(cppflags)
|
|
93
|
+
CXXFLAGS = $(CCDLFLAGS) -fdeclspec $(ARCH_FLAG)
|
|
94
|
+
ldflags = -L. -fstack-protector-strong -L/opt/homebrew/Cellar/gmp/6.3.0/lib
|
|
95
|
+
dldflags = -L/opt/homebrew/Cellar/gmp/6.3.0/lib -Wl,-undefined,dynamic_lookup
|
|
96
|
+
ARCH_FLAG = -arch arm64
|
|
92
97
|
DLDFLAGS = $(ldflags) $(dldflags) $(ARCH_FLAG)
|
|
93
98
|
LDSHARED = $(CC) -dynamic -bundle
|
|
94
99
|
LDSHAREDXX = $(CXX) -dynamic -bundle
|
|
100
|
+
POSTLINK = dsymutil $@ 2>/dev/null; { test -z '$(RUBY_CODESIGN)' || codesign -s '$(RUBY_CODESIGN)' $@; }
|
|
95
101
|
AR = ar
|
|
102
|
+
LD = ld
|
|
96
103
|
EXEEXT =
|
|
97
104
|
|
|
98
105
|
RUBY_INSTALL_NAME = $(RUBY_BASE_NAME)
|
|
99
|
-
RUBY_SO_NAME = ruby
|
|
106
|
+
RUBY_SO_NAME = ruby.3.4
|
|
100
107
|
RUBYW_INSTALL_NAME =
|
|
101
108
|
RUBY_VERSION_NAME = $(RUBY_BASE_NAME)-$(ruby_version)
|
|
102
109
|
RUBYW_BASE_NAME = rubyw
|
|
103
110
|
RUBY_BASE_NAME = ruby
|
|
104
111
|
|
|
105
|
-
arch =
|
|
112
|
+
arch = arm64-darwin24
|
|
106
113
|
sitearch = $(arch)
|
|
107
|
-
ruby_version =
|
|
114
|
+
ruby_version = 3.4.0
|
|
108
115
|
ruby = $(bindir)/$(RUBY_BASE_NAME)
|
|
109
116
|
RUBY = $(ruby)
|
|
117
|
+
BUILTRUBY = $(bindir)/$(RUBY_BASE_NAME)
|
|
110
118
|
ruby_headers = $(hdrdir)/ruby.h $(hdrdir)/ruby/backward.h $(hdrdir)/ruby/ruby.h $(hdrdir)/ruby/defines.h $(hdrdir)/ruby/missing.h $(hdrdir)/ruby/intern.h $(hdrdir)/ruby/st.h $(hdrdir)/ruby/subst.h $(arch_hdrdir)/ruby/config.h
|
|
111
119
|
|
|
112
120
|
RM = rm -f
|
|
113
|
-
RM_RF =
|
|
121
|
+
RM_RF = rm -fr
|
|
114
122
|
RMDIRS = rmdir -p
|
|
115
123
|
MAKEDIRS = mkdir -p
|
|
116
124
|
INSTALL = /usr/bin/install -c
|
|
@@ -122,8 +130,8 @@ TOUCH = exit >
|
|
|
122
130
|
#### End of system configuration section. ####
|
|
123
131
|
|
|
124
132
|
preload =
|
|
125
|
-
libpath = . $(libdir) /Users/himotoyoshi/.rbenv/versions/
|
|
126
|
-
LIBPATH =
|
|
133
|
+
libpath = . $(libdir) /Users/himotoyoshi/.rbenv/versions/3.4.1/lib/ruby/gems/3.4.0/gems/carray-2.0.0/lib
|
|
134
|
+
LIBPATH = -L. -L$(libdir) -L/Users/himotoyoshi/.rbenv/versions/3.4.1/lib/ruby/gems/3.4.0/gems/carray-2.0.0/lib
|
|
127
135
|
DEFFILE =
|
|
128
136
|
|
|
129
137
|
CLEANFILES = mkmf.log
|
|
@@ -134,7 +142,7 @@ extout =
|
|
|
134
142
|
extout_prefix =
|
|
135
143
|
target_prefix =
|
|
136
144
|
LOCAL_LIBS =
|
|
137
|
-
LIBS =
|
|
145
|
+
LIBS = $(LIBRUBYARG_SHARED) -lpthread
|
|
138
146
|
ORIG_SRCS = carray_calculus.c carray_interp.c
|
|
139
147
|
SRCS = $(ORIG_SRCS)
|
|
140
148
|
OBJS = carray_calculus.o carray_interp.o
|
|
@@ -152,12 +160,13 @@ BINDIR = $(bindir)
|
|
|
152
160
|
RUBYCOMMONDIR = $(sitedir)$(target_prefix)
|
|
153
161
|
RUBYLIBDIR = $(sitelibdir)$(target_prefix)
|
|
154
162
|
RUBYARCHDIR = $(sitearchdir)$(target_prefix)
|
|
155
|
-
HDRDIR = $(
|
|
156
|
-
ARCHHDRDIR = $(
|
|
163
|
+
HDRDIR = $(sitehdrdir)$(target_prefix)
|
|
164
|
+
ARCHHDRDIR = $(sitearchhdrdir)$(target_prefix)
|
|
157
165
|
TARGET_SO_DIR =
|
|
158
166
|
TARGET_SO = $(TARGET_SO_DIR)$(DLLIB)
|
|
159
|
-
CLEANLIBS = $(TARGET_SO)
|
|
160
|
-
CLEANOBJS = *.
|
|
167
|
+
CLEANLIBS = $(TARGET_SO) $(TARGET_SO:=.dSYM)
|
|
168
|
+
CLEANOBJS = $(OBJS) *.bak
|
|
169
|
+
TARGET_SO_DIR_TIMESTAMP = $(TIMESTAMP_DIR)/.sitearchdir.time
|
|
161
170
|
|
|
162
171
|
all: $(DLLIB)
|
|
163
172
|
static: $(STATIC_LIB)
|
|
@@ -169,7 +178,7 @@ clean-rb-default::
|
|
|
169
178
|
clean-rb::
|
|
170
179
|
clean-so::
|
|
171
180
|
clean: clean-so clean-static clean-rb-default clean-rb
|
|
172
|
-
-$(Q)$(
|
|
181
|
+
-$(Q)$(RM_RF) $(CLEANLIBS) $(CLEANOBJS) $(CLEANFILES) .*.time
|
|
173
182
|
|
|
174
183
|
distclean-rb-default::
|
|
175
184
|
distclean-rb::
|
|
@@ -183,7 +192,7 @@ distclean: clean distclean-so distclean-static distclean-rb-default distclean-rb
|
|
|
183
192
|
realclean: distclean
|
|
184
193
|
install: install-so install-rb
|
|
185
194
|
|
|
186
|
-
install-so: $(DLLIB) $(
|
|
195
|
+
install-so: $(DLLIB) $(TARGET_SO_DIR_TIMESTAMP)
|
|
187
196
|
$(INSTALL_PROG) $(DLLIB) $(RUBYARCHDIR)
|
|
188
197
|
clean-static::
|
|
189
198
|
-$(Q)$(RM) $(STATIC_LIB)
|
|
@@ -195,7 +204,7 @@ do-install-rb:
|
|
|
195
204
|
do-install-rb-default:
|
|
196
205
|
pre-install-rb-default:
|
|
197
206
|
@$(NULLCMD)
|
|
198
|
-
$(
|
|
207
|
+
$(TARGET_SO_DIR_TIMESTAMP):
|
|
199
208
|
$(Q) $(MAKEDIRS) $(@D) $(RUBYARCHDIR)
|
|
200
209
|
$(Q) $(TOUCH) $@
|
|
201
210
|
|
data/ext/carray_calculus.c
CHANGED
|
@@ -601,9 +601,9 @@ rb_ca_interpolate (int argc, VALUE *argv, VALUE self)
|
|
|
601
601
|
double *px, *po;
|
|
602
602
|
ca_size_t i;
|
|
603
603
|
|
|
604
|
-
|
|
604
|
+
TypedData_Get_Struct(self, CArray, &carray_data_type, ca);
|
|
605
605
|
|
|
606
|
-
rb_scan_args(argc, argv, "21", &vsc, &vx, &ropt);
|
|
606
|
+
rb_scan_args(argc, argv, "21", (VALUE *)&vsc, (VALUE *)&vx, (VALUE *)&ropt);
|
|
607
607
|
rb_scan_options(ropt, "type", &rtype);
|
|
608
608
|
|
|
609
609
|
if ( ! NIL_P(rtype) ) {
|
|
@@ -789,7 +789,7 @@ rb_ca_differentiate (volatile VALUE self,
|
|
|
789
789
|
double *px, *po;
|
|
790
790
|
ca_size_t i;
|
|
791
791
|
|
|
792
|
-
|
|
792
|
+
TypedData_Get_Struct(self, CArray, &carray_data_type, ca);
|
|
793
793
|
|
|
794
794
|
sc = ca_wrap_readonly(vsc, CA_DOUBLE);
|
|
795
795
|
|
data/ext/carray_interp.c
CHANGED
|
@@ -244,7 +244,7 @@ rb_ca_interpolate_bilinear (int argc, VALUE *argv, volatile VALUE self)
|
|
|
244
244
|
ca_size_t out_dim[CA_RANK_MAX];
|
|
245
245
|
int i;
|
|
246
246
|
|
|
247
|
-
rb_scan_args(argc, argv, "2", &vscales, &vvalues);
|
|
247
|
+
rb_scan_args(argc, argv, "2", (VALUE *)&vscales, (VALUE *)&vvalues);
|
|
248
248
|
|
|
249
249
|
Check_Type(vscales, T_ARRAY);
|
|
250
250
|
Check_Type(vvalues, T_ARRAY);
|
|
@@ -296,7 +296,7 @@ rb_ca_interpolate_bilinear (int argc, VALUE *argv, volatile VALUE self)
|
|
|
296
296
|
out = rb_carray_new(CA_DOUBLE, out_ndim, out_dim, 0, NULL);
|
|
297
297
|
}
|
|
298
298
|
|
|
299
|
-
|
|
299
|
+
TypedData_Get_Struct(out, CArray, &carray_data_type, co);
|
|
300
300
|
|
|
301
301
|
for (i=0; i<ca->ndim; i++) {
|
|
302
302
|
if ( values[i] ) {
|
data/ext/mkmf.log
CHANGED
|
@@ -1,18 +1,17 @@
|
|
|
1
1
|
have_header: checking for carray.h... -------------------- yes
|
|
2
2
|
|
|
3
|
-
"clang -o conftest -I/Users/himotoyoshi/.rbenv/versions/
|
|
4
|
-
ld: warning: directory not found for option '-L/usr/local/opt/qt/lib:'
|
|
3
|
+
DYLD_LIBRARY_PATH=.:/Users/himotoyoshi/.rbenv/versions/3.4.1/lib ASAN_OPTIONS=detect_leaks=0 "clang -o conftest -I/Users/himotoyoshi/.rbenv/versions/3.4.1/include/ruby-3.4.0/arm64-darwin24 -I/Users/himotoyoshi/.rbenv/versions/3.4.1/include/ruby-3.4.0/ruby/backward -I/Users/himotoyoshi/.rbenv/versions/3.4.1/include/ruby-3.4.0 -I. -I/Users/himotoyoshi/.rbenv/versions/3.4.1/lib/ruby/gems/3.4.0/gems/carray-2.0.0/lib -D_XOPEN_SOURCE -D_DARWIN_C_SOURCE -D_DARWIN_UNLIMITED_SELECT -D_REENTRANT -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -fdeclspec -O3 -fno-fast-math -ggdb3 -Wall -Wextra -Wextra-tokens -Wdeprecated-declarations -Wdivision-by-zero -Wdiv-by-zero -Wimplicit-function-declaration -Wimplicit-int -Wpointer-arith -Wshorten-64-to-32 -Wwrite-strings -Wold-style-definition -Wmissing-noreturn -Wno-cast-function-type -Wno-constant-logical-operand -Wno-long-long -Wno-missing-field-initializers -Wno-overlength-strings -Wno-parentheses-equality -Wno-self-assign -Wno-tautological-compare -Wno-unused-parameter -Wno-unused-value -Wunused-variable -Wmisleading-indentation -Wundef -fno-common -pipe conftest.c -L. -L/Users/himotoyoshi/.rbenv/versions/3.4.1/lib -L/Users/himotoyoshi/.rbenv/versions/3.4.1/lib/ruby/gems/3.4.0/gems/carray-2.0.0/lib -L. -fstack-protector-strong -L/opt/homebrew/Cellar/gmp/6.3.0/lib -arch arm64 -lruby.3.4 -lpthread "
|
|
5
4
|
checked program was:
|
|
6
5
|
/* begin */
|
|
7
6
|
1: #include "ruby.h"
|
|
8
7
|
2:
|
|
9
8
|
3: int main(int argc, char **argv)
|
|
10
9
|
4: {
|
|
11
|
-
5: return
|
|
10
|
+
5: return !!argv[argc];
|
|
12
11
|
6: }
|
|
13
12
|
/* end */
|
|
14
13
|
|
|
15
|
-
"clang -
|
|
14
|
+
DYLD_LIBRARY_PATH=.:/Users/himotoyoshi/.rbenv/versions/3.4.1/lib ASAN_OPTIONS=detect_leaks=0 "clang -I/Users/himotoyoshi/.rbenv/versions/3.4.1/include/ruby-3.4.0/arm64-darwin24 -I/Users/himotoyoshi/.rbenv/versions/3.4.1/include/ruby-3.4.0/ruby/backward -I/Users/himotoyoshi/.rbenv/versions/3.4.1/include/ruby-3.4.0 -I. -I/Users/himotoyoshi/.rbenv/versions/3.4.1/lib/ruby/gems/3.4.0/gems/carray-2.0.0/lib -D_XOPEN_SOURCE -D_DARWIN_C_SOURCE -D_DARWIN_UNLIMITED_SELECT -D_REENTRANT -fstack-protector-strong -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -fdeclspec -O3 -fno-fast-math -ggdb3 -Wall -Wextra -Wextra-tokens -Wdeprecated-declarations -Wdivision-by-zero -Wdiv-by-zero -Wimplicit-function-declaration -Wimplicit-int -Wpointer-arith -Wshorten-64-to-32 -Wwrite-strings -Wold-style-definition -Wmissing-noreturn -Wno-cast-function-type -Wno-constant-logical-operand -Wno-long-long -Wno-missing-field-initializers -Wno-overlength-strings -Wno-parentheses-equality -Wno-self-assign -Wno-tautological-compare -Wno-unused-parameter -Wno-unused-value -Wunused-variable -Wmisleading-indentation -Wundef -fno-common -pipe -arch arm64 -c conftest.c"
|
|
16
15
|
checked program was:
|
|
17
16
|
/* begin */
|
|
18
17
|
1: #include "ruby.h"
|
metadata
CHANGED
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: carray-calculus
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Hiroki Motoyoshi
|
|
8
|
-
autorequire:
|
|
9
8
|
bindir: bin
|
|
10
9
|
cert_chain: []
|
|
11
|
-
date:
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
12
11
|
dependencies:
|
|
13
12
|
- !ruby/object:Gem::Dependency
|
|
14
13
|
name: carray
|
|
@@ -16,20 +15,20 @@ dependencies:
|
|
|
16
15
|
requirements:
|
|
17
16
|
- - "~>"
|
|
18
17
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: '
|
|
18
|
+
version: '2.0'
|
|
20
19
|
- - ">="
|
|
21
20
|
- !ruby/object:Gem::Version
|
|
22
|
-
version:
|
|
21
|
+
version: 2.0.0
|
|
23
22
|
type: :runtime
|
|
24
23
|
prerelease: false
|
|
25
24
|
version_requirements: !ruby/object:Gem::Requirement
|
|
26
25
|
requirements:
|
|
27
26
|
- - "~>"
|
|
28
27
|
- !ruby/object:Gem::Version
|
|
29
|
-
version: '
|
|
28
|
+
version: '2.0'
|
|
30
29
|
- - ">="
|
|
31
30
|
- !ruby/object:Gem::Version
|
|
32
|
-
version:
|
|
31
|
+
version: 2.0.0
|
|
33
32
|
description: " CArray methods on basic calculus\n"
|
|
34
33
|
email: ''
|
|
35
34
|
executables: []
|
|
@@ -50,7 +49,6 @@ homepage: https://github.com/himotoyoshi/carray-calculus
|
|
|
50
49
|
licenses:
|
|
51
50
|
- MIT
|
|
52
51
|
metadata: {}
|
|
53
|
-
post_install_message:
|
|
54
52
|
rdoc_options: []
|
|
55
53
|
require_paths:
|
|
56
54
|
- lib
|
|
@@ -65,8 +63,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
65
63
|
- !ruby/object:Gem::Version
|
|
66
64
|
version: '0'
|
|
67
65
|
requirements: []
|
|
68
|
-
rubygems_version:
|
|
69
|
-
signing_key:
|
|
66
|
+
rubygems_version: 4.0.7
|
|
70
67
|
specification_version: 4
|
|
71
68
|
summary: CArray methods on basic calculus
|
|
72
69
|
test_files: []
|