ruby-netcdf 0.7.2 → 0.8.0
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 +5 -5
- data/.gitignore +0 -1
- data/ChangeLog +456 -0
- data/LICENSE.txt +32 -57
- data/ext/numru/netcdfraw.c +287 -321
- data/lib/numru/netcdf/version.rb +1 -1
- data/lib/numru/netcdf.rb +634 -638
- data/ruby-netcdf-bigmem.gemspec +1 -0
- data/ruby-netcdf.gemspec +1 -0
- data/test/aref_aset.rb +63 -33
- data/test/char_var.rb +32 -21
- data/test/clone.rb +46 -51
- data/test/create_tmp.rb +17 -13
- data/test/def_var_with_dim.rb +29 -11
- data/test/factor_offset.rb +77 -46
- data/test/putatt.rb +71 -49
- data/test/test.rb +197 -190
- data/test/type.rb +27 -11
- metadata +18 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: b3ac5fbb186a99861d7c2f689fa0b94e39e62e561afa28e38aebd24409582146
|
4
|
+
data.tar.gz: 2937a996154966b367bb8e428c40b770b97618d32b545cfac3eb885d83e6df45
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5bbbd6e7ee5ac57d8d37c4eb5a853a0dd15a1990a532abaac7b04f697896bf7e74c8130633b3aea91487261061b0f7ec510c81b6319cd8eaffa206b31c60ec88
|
7
|
+
data.tar.gz: 366f5f7d15ba8d3900dcbd738ee8a88eb3697549380efecf26194daac54f320ff0ebc6ed425bb6973caac3bde684201e2911c053cfc18a32733824f4b0795368
|
data/.gitignore
CHANGED
data/ChangeLog
ADDED
@@ -0,0 +1,456 @@
|
|
1
|
+
2022-03-21 Takeshi Horinouchi (HEAD -> master)
|
2
|
+
version number updated to 0.8.0
|
3
|
+
|
4
|
+
M lib/numru/netcdf/version.rb
|
5
|
+
|
6
|
+
2022-03-21 Takeshi Horinouchi
|
7
|
+
LICENSE text updated
|
8
|
+
|
9
|
+
M LICENSE.txt
|
10
|
+
|
11
|
+
2022-03-21 Takeshi Horinouchi
|
12
|
+
Merge remote-tracking branch 'origin/rewrite_test_use_unit-test'
|
13
|
+
|
14
|
+
2022-03-21 Takeshi Horinouchi
|
15
|
+
Merge remote-tracking branch 'origin/Fix_Obsolete_rb_secure'
|
16
|
+
|
17
|
+
2022-03-21 Takeshi Horinouchi
|
18
|
+
Revert "Fixnum -> Integer"
|
19
|
+
|
20
|
+
This reverts commit 2c2fd995df1865e6f521679aeca746385203a42f.
|
21
|
+
|
22
|
+
M lib/numru/netcdf.rb
|
23
|
+
|
24
|
+
2021-05-22 Takeshi Horinouchi (origin/master, origin/HEAD)
|
25
|
+
Fixnum -> Integer
|
26
|
+
|
27
|
+
M lib/numru/netcdf.rb
|
28
|
+
|
29
|
+
2020-05-21 Youhei SASAKI (origin/rewrite_test_use_unit-test)
|
30
|
+
Rewrite test: use Test::Unit
|
31
|
+
|
32
|
+
Rewrite test using Test::Unit
|
33
|
+
|
34
|
+
Signed-off-by: Youhei SASAKI <uwabami@gfd-dennou.org>
|
35
|
+
|
36
|
+
M ruby-netcdf-bigmem.gemspec
|
37
|
+
M ruby-netcdf.gemspec
|
38
|
+
M test/aref_aset.rb
|
39
|
+
M test/char_var.rb
|
40
|
+
M test/clone.rb
|
41
|
+
M test/create_tmp.rb
|
42
|
+
M test/def_var_with_dim.rb
|
43
|
+
M test/factor_offset.rb
|
44
|
+
M test/putatt.rb
|
45
|
+
M test/test.rb
|
46
|
+
M test/type.rb
|
47
|
+
|
48
|
+
2020-05-21 Youhei SASAKI (origin/Fix_Obsolete_rb_secure, Fix_Obsolete_rb_secure)
|
49
|
+
Drop obsolete rb_secure, rb_safe_level
|
50
|
+
|
51
|
+
Ref.
|
52
|
+
- https://tmtms.hatenablog.com/entry/201912/ruby27-misc2
|
53
|
+
- https://bugs.ruby-lang.org/issues/15344
|
54
|
+
|
55
|
+
Signed-off-by: Youhei SASAKI <uwabami@gfd-dennou.org>
|
56
|
+
|
57
|
+
M ext/numru/netcdfraw.c
|
58
|
+
M lib/numru/netcdf.rb
|
59
|
+
|
60
|
+
2016-09-27 Takeshi Horinouchi (tag: v0.7.2)
|
61
|
+
Commented out the gemspec file for the bibmem version
|
62
|
+
|
63
|
+
M Rakefile
|
64
|
+
|
65
|
+
2015-06-09 Takeshi Horinouchi
|
66
|
+
corrected the previous commit
|
67
|
+
|
68
|
+
M lib/numru/netcdf.rb
|
69
|
+
|
70
|
+
2015-06-09 Takeshi Horinouchi
|
71
|
+
Increased the supprted argument value by NetCDF.creation_format (NC_FORMAT_*)
|
72
|
+
|
73
|
+
M lib/numru/netcdf.rb
|
74
|
+
|
75
|
+
2015-06-09 Takeshi Horinouchi
|
76
|
+
Added a method NetCDF#format (for NetCDF-4) and related constants NC_FORMAT_CLASSIC etc
|
77
|
+
|
78
|
+
M ext/numru/netcdfraw.c
|
79
|
+
|
80
|
+
2015-05-21 Takeshi Horinouchi
|
81
|
+
Deleted ".alpha" from VERSION (since gem did not solve the dependency when I tried to install gphys)
|
82
|
+
|
83
|
+
M lib/numru/netcdf/version.rb
|
84
|
+
|
85
|
+
2015-05-21 Takeshi Horinouchi
|
86
|
+
Created a gemspec to depend on narray-bigmem
|
87
|
+
|
88
|
+
M Rakefile
|
89
|
+
M ext/numru/extconf.rb
|
90
|
+
A ruby-netcdf-bigmem.gemspec
|
91
|
+
|
92
|
+
2015-04-02 Takeshi Horinouchi (origin/rubygems, rubygems)
|
93
|
+
changed to require 'numru/netcdf/version'
|
94
|
+
|
95
|
+
M Rakefile
|
96
|
+
M ruby-netcdf.gemspec
|
97
|
+
|
98
|
+
2015-04-02 Takeshi Horinouchi
|
99
|
+
changed to require 'numru/netcdf/version'
|
100
|
+
|
101
|
+
M lib/numru/netcdf.rb
|
102
|
+
|
103
|
+
2015-04-02 Takeshi Horinouchi
|
104
|
+
Created the version.rb file
|
105
|
+
|
106
|
+
A lib/numru/netcdf/version.rb
|
107
|
+
|
108
|
+
2015-03-30 Eriko Nishimoto
|
109
|
+
Modified test.rb
|
110
|
+
|
111
|
+
Corrected require libraries
|
112
|
+
|
113
|
+
M test/test.rb
|
114
|
+
|
115
|
+
2015-03-30 Eriko Nishimoto
|
116
|
+
Corrected require_paths
|
117
|
+
|
118
|
+
M ruby-netcdf.gemspec
|
119
|
+
|
120
|
+
2015-03-30 Eriko Nishimoto
|
121
|
+
Modified git ignore list
|
122
|
+
|
123
|
+
Added "tmp" and "pkg" folders to the list
|
124
|
+
|
125
|
+
M .gitignore
|
126
|
+
|
127
|
+
2015-03-30 Eriko Nishimoto
|
128
|
+
Corrected typo
|
129
|
+
|
130
|
+
M Rakefile
|
131
|
+
M ruby-netcdf.gemspec
|
132
|
+
|
133
|
+
2015-03-30 Eriko Nishimoto
|
134
|
+
Added VERSION number
|
135
|
+
|
136
|
+
M lib/numru/netcdf.rb
|
137
|
+
|
138
|
+
2015-03-30 Eriko Nishimoto
|
139
|
+
Changed folder structure under lib
|
140
|
+
|
141
|
+
R100 lib/netcdf.rb lib/numru/netcdf.rb
|
142
|
+
R100 lib/netcdf_miss.rb lib/numru/netcdf_miss.rb
|
143
|
+
|
144
|
+
2015-03-30 Eriko Nishimoto
|
145
|
+
Moved extentional files to ext/numru
|
146
|
+
|
147
|
+
R100 extconf.rb ext/numru/extconf.rb
|
148
|
+
R100 netcdfraw.c ext/numru/netcdfraw.c
|
149
|
+
|
150
|
+
2015-03-30 Eriko Nishimoto
|
151
|
+
Added setting files for rubygems
|
152
|
+
|
153
|
+
A Gemfile
|
154
|
+
A Rakefile
|
155
|
+
A ruby-netcdf.gemspec
|
156
|
+
|
157
|
+
2015-03-30 Takeshi Horinouchi
|
158
|
+
Renamed the current ChangeLog to back up.
|
159
|
+
|
160
|
+
R100 ChangeLog .ChangeLog.until20150117
|
161
|
+
|
162
|
+
2015-03-30 Takeshi Horinouchi
|
163
|
+
Registered files (patterns) to ignore in the repository
|
164
|
+
|
165
|
+
A .gitignore
|
166
|
+
|
167
|
+
2015-01-27 Takeshi Horinouchi (tag: ruby-netcdf-0_7_1)
|
168
|
+
Updated. ruby-netcdf-0.7.1 to be released.
|
169
|
+
|
170
|
+
M ChangeLog
|
171
|
+
|
172
|
+
2015-01-27 Takeshi Horinouchi
|
173
|
+
* doc/ updated
|
174
|
+
|
175
|
+
M doc/Ref_man.html
|
176
|
+
M doc/Ref_man.rd
|
177
|
+
M doc/Ref_man_jp.html
|
178
|
+
M doc/Ref_man_jp.rd
|
179
|
+
M doc/to_html
|
180
|
+
|
181
|
+
2015-01-27 Takeshi Horinouchi
|
182
|
+
* demo/demo5-netcdf4.rb: created
|
183
|
+
|
184
|
+
A demo/demo5-netcdf4.rb
|
185
|
+
|
186
|
+
2015-01-27 Takeshi Horinouchi
|
187
|
+
Tue Jan 27 2015 T Horinouchi
|
188
|
+
* netcdfraw.c:
|
189
|
+
* added new NetCDF-4 methods:
|
190
|
+
* NetCDFVar::deflate : to set compression
|
191
|
+
* NetCDFVar::deflate_params : returns current values of
|
192
|
+
compression parameters
|
193
|
+
* NetCDFVar::endian= : set (change) the endian
|
194
|
+
* NetCDFVar::endian : returns the current endian setting
|
195
|
+
* added new constants: NC_ENDIAN_NATIVE (=0),
|
196
|
+
NC_ENDIAN_LITTLE (=1), NC_ENDIAN_BIG (=2)
|
197
|
+
* updated the safe-level condition, which was missed in the
|
198
|
+
change on Jan 22.
|
199
|
+
|
200
|
+
M netcdfraw.c
|
201
|
+
|
202
|
+
2015-01-23 Takeshi Horinouchi
|
203
|
+
corrected the charset setting
|
204
|
+
|
205
|
+
M doc/Ref_man_jp.html
|
206
|
+
|
207
|
+
2015-01-23 Takeshi Horinouchi
|
208
|
+
further updated (a little)
|
209
|
+
|
210
|
+
M doc/Ref_man.html
|
211
|
+
M doc/Ref_man.rd
|
212
|
+
M doc/Ref_man_jp.html
|
213
|
+
M doc/Ref_man_jp.rd
|
214
|
+
|
215
|
+
2015-01-23 Takeshi Horinouchi
|
216
|
+
Updated the reference manuals
|
217
|
+
|
218
|
+
M doc/Ref_man.html
|
219
|
+
M doc/Ref_man.rd
|
220
|
+
M doc/Ref_man_jp.html
|
221
|
+
M doc/Ref_man_jp.rd
|
222
|
+
M doc/to_html
|
223
|
+
|
224
|
+
2015-01-22 Takeshi Horinouchi (tag: ruby-netcdf-0_7_0)
|
225
|
+
ChangeLog updated to release ruby-netcdf-0.7.0 (relase tag: ruby-netcdf-0_7_0)
|
226
|
+
|
227
|
+
M ChangeLog
|
228
|
+
|
229
|
+
2015-01-22 Takeshi Horinouchi
|
230
|
+
extconf.rb: supported to configure gem-installed narray.
|
231
|
+
(also reverted the previous commit.)
|
232
|
+
|
233
|
+
M extconf.rb
|
234
|
+
|
235
|
+
2015-01-22 Takeshi Horinouchi
|
236
|
+
* extconf.rb: deleted a reference to "/usr/local"
|
237
|
+
|
238
|
+
M ChangeLog
|
239
|
+
M extconf.rb
|
240
|
+
|
241
|
+
2015-01-22 Takeshi Horinouchi
|
242
|
+
* lib/netcdf.rb: revised along the patch [dennou-ruby:003705].
|
243
|
+
|
244
|
+
M lib/netcdf.rb
|
245
|
+
|
246
|
+
2015-01-22 Takeshi Horinouchi
|
247
|
+
Deleted an unused variable (nc_tlen) in many methods
|
248
|
+
|
249
|
+
M netcdfraw.c
|
250
|
+
|
251
|
+
2015-01-22 Takeshi Horinouchi
|
252
|
+
* netcdfraw.c: further type update to na_shape_t (not covered
|
253
|
+
by the patch)
|
254
|
+
|
255
|
+
M netcdfraw.c
|
256
|
+
|
257
|
+
2015-01-22 Takeshi Horinouchi
|
258
|
+
Thu Jan 22 2015 T Horinouchi
|
259
|
+
* netcdfraw.c: changed rb_secure(4) to rb_secure(3), since security
|
260
|
+
level 4 is abolished in ruby 2.
|
261
|
+
|
262
|
+
M netcdfraw.c
|
263
|
+
|
264
|
+
2015-01-22 Takeshi Horinouchi
|
265
|
+
Thu Jan 22 2015 T Horinouchi
|
266
|
+
* netcdfraw.c: revised based on the patch posted by seiya with
|
267
|
+
[dennou-ruby:003705] but adopted the typedef in the latest
|
268
|
+
narray-bigmem (namely, used na_shape_t).
|
269
|
+
|
270
|
+
M netcdfraw.c
|
271
|
+
|
272
|
+
2014-09-08 Takeshi Horinouchi
|
273
|
+
Mon Sep 8 2014 T Horinouchi
|
274
|
+
* lib/netcdf.rb: Tentative treatment of the very slow netcdf-4's
|
275
|
+
strided reading.
|
276
|
+
|
277
|
+
M ChangeLog
|
278
|
+
M lib/netcdf.rb
|
279
|
+
|
280
|
+
2014-09-06 Takeshi Horinouchi
|
281
|
+
|
282
|
+
minor update
|
283
|
+
|
284
|
+
M extconf.rb
|
285
|
+
|
286
|
+
2014-09-06 Takeshi Horinouchi
|
287
|
+
* lib/netcdf.rb: Refactoring of NetCDF#simple_get.
|
288
|
+
|
289
|
+
M ChangeLog
|
290
|
+
M lib/netcdf.rb
|
291
|
+
|
292
|
+
2014-09-06 Takeshi Horinouchi
|
293
|
+
Sat Sep 6 2014 T Horinouchi
|
294
|
+
* netcdfraw.c: Added constants such as NC_NETCDF4;
|
295
|
+
This enables one to individually specify the creation format by
|
296
|
+
using the low level interface NetCDF.nc_create
|
297
|
+
* lib/netcdf.rb: Supported the "default" file creation format
|
298
|
+
by adding NetCDF.creation_format= and NetCDF.creation_format
|
299
|
+
|
300
|
+
M ChangeLog
|
301
|
+
M lib/netcdf.rb
|
302
|
+
M netcdfraw.c
|
303
|
+
|
304
|
+
2014-09-06 Takeshi Horinouchi
|
305
|
+
Sat Sep 6 2014 T Horinouchi
|
306
|
+
* extconf.rb
|
307
|
+
* introduced the macro NCVER
|
308
|
+
* changed to give a higer priority to NetCDF 4;
|
309
|
+
* added $vendorarchdir to dir_config
|
310
|
+
* netcdfraw.c: Added the class method NetCDF.libvers (<- nc_inq_libvers)
|
311
|
+
* lib/netcdf.rb: Added the class constant NCVERSION (<- NetCDF.libvers)
|
312
|
+
|
313
|
+
M ChangeLog
|
314
|
+
M extconf.rb
|
315
|
+
M lib/netcdf.rb
|
316
|
+
M netcdfraw.c
|
317
|
+
|
318
|
+
2014-08-25 Takeshi Horinouchi
|
319
|
+
Mon Aug 25 2014 T Horinouchi
|
320
|
+
* netcdfraw.c: to avoid a compile error when -Werror=format-security
|
321
|
+
|
322
|
+
M ChangeLog
|
323
|
+
M netcdfraw.c
|
324
|
+
|
325
|
+
2012-02-19 Takeshi Horinouchi (tag: ruby-netcdf-0_6_6)
|
326
|
+
Sun Feb 19 2011 T Horinouchi
|
327
|
+
* ruby-netcdf-0.6.6 released (relase tag: ruby-netcdf-0_6_6)
|
328
|
+
|
329
|
+
M ChangeLog
|
330
|
+
|
331
|
+
2012-02-19 Takeshi Horinouchi
|
332
|
+
Sun Feb 19 2011 T Horinouchi
|
333
|
+
* lib/netcdf.rb: method pack: debug of enbug made
|
334
|
+
when 1.1 -> 1.2 (cvs tag) commited in Jan 2010.
|
335
|
+
* netcdfraw.c: Added macro NC_RAISE2. Enhanced error
|
336
|
+
messaging in NetCDF_open and NetCDF_create to show file name.
|
337
|
+
|
338
|
+
M ChangeLog
|
339
|
+
M lib/netcdf.rb
|
340
|
+
M netcdfraw.c
|
341
|
+
|
342
|
+
2011-02-17 Takeshi Horinouchi (tag: ruby-netcdf-0_6_5)
|
343
|
+
Thu Feb 17 2011 T Horinouchi
|
344
|
+
* ruby-netcdf-0.6.5 released (relase tag: ruby-netcdf-0_6_5)
|
345
|
+
|
346
|
+
M ChangeLog
|
347
|
+
|
348
|
+
2011-02-17 Takeshi Horinouchi
|
349
|
+
Thu Feb 17 2011 T Horinouchi
|
350
|
+
* extconf.rb: Debug to have the --disable-opendap option really work
|
351
|
+
|
352
|
+
M ChangeLog
|
353
|
+
M extconf.rb
|
354
|
+
|
355
|
+
2011-02-12 Takeshi Horinouchi
|
356
|
+
* ruby-netcdf-0.6.5 preview release.
|
357
|
+
|
358
|
+
M ChangeLog
|
359
|
+
|
360
|
+
2010-12-22 Tsuyoshi Koshiro
|
361
|
+
Thu Dec 23 2010 T Koshiro
|
362
|
+
* test/aref_aset.rb : updated for Ruby 1.9.2
|
363
|
+
* lib/netcdf.rb: NetCDF.clean_tmpfile : lambda -> proc
|
364
|
+
* verified that all test programs work fine with Ruby 1.9.2.
|
365
|
+
|
366
|
+
M ChangeLog
|
367
|
+
M lib/netcdf.rb
|
368
|
+
M test/aref_aset.rb
|
369
|
+
|
370
|
+
2010-12-14 Tsuyoshi Koshiro
|
371
|
+
Tue Dec 14 2010 T Koshiro
|
372
|
+
* netcdfraw.c : nctype2natype : char* -> const char*
|
373
|
+
* test/aref_aset.rb, test/factor_offset.rb : bug fix.
|
374
|
+
|
375
|
+
M ChangeLog
|
376
|
+
M netcdfraw.c
|
377
|
+
M test/aref_aset.rb
|
378
|
+
M test/factor_offset.rb
|
379
|
+
|
380
|
+
2010-12-13 Tsuyoshi Koshiro
|
381
|
+
Mon Dec 13 2010 T Koshiro
|
382
|
+
* netcdfraw.c : patch for Ruby 1.9.2
|
383
|
+
- by S Kouketsu (dennou-ruby:003191)
|
384
|
+
- by T Koshiro (dennou-ruby:003226)
|
385
|
+
|
386
|
+
M ChangeLog
|
387
|
+
M netcdfraw.c
|
388
|
+
|
389
|
+
2010-03-15 Takeshi Horinouchi (tag: ruby-netcdf-0_6_4)
|
390
|
+
Mon Mar 15 2010 T Horinouchi
|
391
|
+
* ruby-netcdf-0.6.4 released (relase tag: ruby-netcdf-0_6_4)
|
392
|
+
|
393
|
+
M ChangeLog
|
394
|
+
|
395
|
+
2010-01-14 Takeshi Horinouchi
|
396
|
+
Thu Jan 14 2010 T Horinouchi < T Koshiro
|
397
|
+
* netcdfraw.c : patch for Ruby 1.9.1 (dennou-ruby:003138)
|
398
|
+
* extconf.rb : patch for NetCDF-4.1-beta2 (dcdvlop Nov 20, 2009)
|
399
|
+
|
400
|
+
M ChangeLog
|
401
|
+
M extconf.rb
|
402
|
+
M netcdfraw.c
|
403
|
+
|
404
|
+
2010-01-14 Takeshi Horinouchi
|
405
|
+
Fri Aug 15 2008 T Horinouchi
|
406
|
+
* lib/netcdf_miss.rb: in __interpret_missing_params,
|
407
|
+
changed just to warn, not to raise an exception,
|
408
|
+
if the missing value or fill value is within the
|
409
|
+
valid range (warning can be suppressed by $VERBOSE = nil)
|
410
|
+
Thu Jul 17 2008 T Horinouchi
|
411
|
+
* lib/netcdf.rb: NetCDFVar's private method pack : to take
|
412
|
+
round if the type of self is integer.
|
413
|
+
* lib/netcdf_miss.rb: debug in the handling of missing data
|
414
|
+
specification using the external data type.
|
415
|
+
Wed Jul 16 2008 T Horinouchi < M Otsuka
|
416
|
+
* netcdfraw.c : patch for Ruby 1.9
|
417
|
+
|
418
|
+
M ChangeLog
|
419
|
+
M lib/netcdf.rb
|
420
|
+
M lib/netcdf_miss.rb
|
421
|
+
M netcdfraw.c
|
422
|
+
|
423
|
+
2010-01-14 Takeshi Horinouchi
|
424
|
+
Initial revision
|
425
|
+
|
426
|
+
A ChangeLog
|
427
|
+
A INSTALL
|
428
|
+
A LICENSE.txt
|
429
|
+
A ToDo
|
430
|
+
A demo/README
|
431
|
+
A demo/demo1-create-alt.rb
|
432
|
+
A demo/demo1-create.rb
|
433
|
+
A demo/demo2-graphic.rb
|
434
|
+
A demo/demo3-ncepclim.rb
|
435
|
+
A demo/demo4-copy.rb
|
436
|
+
A doc/README_JP.txt
|
437
|
+
A doc/Ref_man.html
|
438
|
+
A doc/Ref_man.rd
|
439
|
+
A doc/Ref_man_jp.html
|
440
|
+
A doc/Ref_man_jp.rd
|
441
|
+
A doc/to_html
|
442
|
+
A extconf.rb
|
443
|
+
A lib/netcdf.rb
|
444
|
+
A lib/netcdf_miss.rb
|
445
|
+
A netcdfraw.c
|
446
|
+
A test/aref_aset.rb
|
447
|
+
A test/char_var.rb
|
448
|
+
A test/clone.rb
|
449
|
+
A test/create_tmp.rb
|
450
|
+
A test/def_var_with_dim.rb
|
451
|
+
A test/factor_offset.rb
|
452
|
+
A test/putatt.cdl
|
453
|
+
A test/putatt.rb
|
454
|
+
A test/test.cdl
|
455
|
+
A test/test.rb
|
456
|
+
A test/type.rb
|
data/LICENSE.txt
CHANGED
@@ -1,59 +1,34 @@
|
|
1
|
-
Ruby/NetCDF is copyrighted free software by Takeshi Horinouchi and
|
1
|
+
Ruby/NetCDF is copyrighted free software by Takeshi Horinouchi and
|
2
2
|
GFD Dennou Club.
|
3
|
-
You can redistribute it and/or modify it under either the terms of the
|
4
|
-
GPL, or the conditions below, which is idential to Ruby's license
|
5
|
-
(http://www.ruby-lang.org/en/LICENSE.txt):
|
6
3
|
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
instructions on where to get the original software distribution.
|
39
|
-
|
40
|
-
d) make other distribution arrangements with the author.
|
41
|
-
|
42
|
-
4. You may modify and include the part of the software into any other
|
43
|
-
software (possibly commercial). But some files in the distribution
|
44
|
-
are not written by the author, so that they are not under this terms.
|
45
|
-
|
46
|
-
They are gc.c(partly), utils.c(partly), regex.[ch], st.[ch] and some
|
47
|
-
files under the ./missing directory. See each file for the copying
|
48
|
-
condition.
|
49
|
-
|
50
|
-
5. The scripts and library files supplied as input to or produced as
|
51
|
-
output from the software do not automatically fall under the
|
52
|
-
copyright of the software, but belong to whomever generated them,
|
53
|
-
and may be sold commercially, and may be aggregated with this
|
54
|
-
software.
|
55
|
-
|
56
|
-
6. THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR
|
57
|
-
IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
|
58
|
-
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
59
|
-
PURPOSE.
|
4
|
+
Copyright 2003-2022 (C) GFD Dennou Club
|
5
|
+
(http://www.gfd-dennou.org/) All rights reserved.
|
6
|
+
|
7
|
+
Redistribution and use in source and binary forms, with or without
|
8
|
+
modification, are permitted provided that the following conditions are
|
9
|
+
met:
|
10
|
+
|
11
|
+
1. Redistributions of source code must retain the above copyright
|
12
|
+
notice, this list of conditions and the following disclaimer.
|
13
|
+
|
14
|
+
2. Redistributions in binary form must reproduce the above copyright
|
15
|
+
notice, this list of conditions and the following disclaimer in
|
16
|
+
the documentation and/or other materials provided with the
|
17
|
+
distribution.
|
18
|
+
|
19
|
+
THIS SOFTWARE IS PROVIDED BY GFD DENNOU CLUB AND CONTRIBUTORS ``AS IS''
|
20
|
+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
|
21
|
+
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
22
|
+
PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GFD DENNOU CLUB OR
|
23
|
+
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
24
|
+
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
25
|
+
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
26
|
+
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
27
|
+
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
28
|
+
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
29
|
+
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
30
|
+
|
31
|
+
The views and conclusions contained in the software and documentation
|
32
|
+
are those of the authors and should not be interpreted as representing
|
33
|
+
official policies, either expressed or implied, of Takeshi Horinouchi
|
34
|
+
and GFD Dennou Club.
|