ruby-netcdf-updated 0.7.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.
data/test/type.rb ADDED
@@ -0,0 +1,13 @@
1
+ require 'numru/netcdf'
2
+ include NumRu
3
+ s = 'tmp.nc'
4
+ f = NetCDF.create(s)
5
+ d = f.def_dim('x',2)
6
+ v = f.def_var('x','sfloat',[d])
7
+ p v.vartype, v.ntype
8
+ v = f.def_var('x1','sint',[d])
9
+ p v.vartype, v.ntype
10
+ v = f.def_var('x2','byte',[d])
11
+ p v.vartype, v.ntype
12
+
13
+ f.close
metadata ADDED
@@ -0,0 +1,131 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: ruby-netcdf-updated
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.7.0
5
+ platform: ruby
6
+ authors:
7
+ - Takeshi Horinouchi
8
+ - Tsuyoshi Koshiro
9
+ - Shigenori Otsuka
10
+ - Seiya Nishizawa
11
+ - T Sakakima
12
+ - Edmund Highcock
13
+ autorequire:
14
+ bindir: bin
15
+ cert_chain: []
16
+ date: 2014-03-04 00:00:00.000000000 Z
17
+ dependencies:
18
+ - !ruby/object:Gem::Dependency
19
+ name: narray
20
+ requirement: !ruby/object:Gem::Requirement
21
+ requirements:
22
+ - - ">="
23
+ - !ruby/object:Gem::Version
24
+ version: '0'
25
+ type: :runtime
26
+ prerelease: false
27
+ version_requirements: !ruby/object:Gem::Requirement
28
+ requirements:
29
+ - - ">="
30
+ - !ruby/object:Gem::Version
31
+ version: '0'
32
+ - !ruby/object:Gem::Dependency
33
+ name: narray_miss
34
+ requirement: !ruby/object:Gem::Requirement
35
+ requirements:
36
+ - - ">="
37
+ - !ruby/object:Gem::Version
38
+ version: '0'
39
+ type: :runtime
40
+ prerelease: false
41
+ version_requirements: !ruby/object:Gem::Requirement
42
+ requirements:
43
+ - - ">="
44
+ - !ruby/object:Gem::Version
45
+ version: '0'
46
+ description: RubyNetCDF is the Ruby interface to the NetCDF library built on the NArray
47
+ library, which is an efficient multi-dimensional numeric array class for Ruby. This
48
+ is an updated version that works with Ruby 2.0. Contact cannot be established with
49
+ the original developers.
50
+ email:
51
+ - edmundhighcock@users.sourceforge.net
52
+ executables: []
53
+ extensions:
54
+ - extconf.rb
55
+ extra_rdoc_files: []
56
+ files:
57
+ - ChangeLog
58
+ - INSTALL
59
+ - LICENSE.txt
60
+ - README.md
61
+ - Rakefile
62
+ - Rakefile.orig
63
+ - ToDo
64
+ - demo/README
65
+ - demo/demo1-create-alt.rb
66
+ - demo/demo1-create.rb
67
+ - demo/demo2-graphic.rb
68
+ - demo/demo3-ncepclim.rb
69
+ - demo/demo4-copy.rb
70
+ - doc/README_JP.txt
71
+ - doc/Ref_man.html
72
+ - doc/Ref_man.rd
73
+ - doc/Ref_man_jp.html
74
+ - doc/Ref_man_jp.rd
75
+ - doc/to_html
76
+ - extconf.rb
77
+ - lib/netcdf.rb
78
+ - lib/netcdf_miss.rb
79
+ - netcdfraw.c
80
+ - netcdfraw.c.orig
81
+ - ruby-netcdf-0.6.6.1.gem
82
+ - ruby-netcdf-0.6.6.1.gemspec.orig
83
+ - ruby-netcdf.gemspec
84
+ - ruby-netcdf.gemspec.orig
85
+ - test/aref_aset.rb
86
+ - test/char_var.rb
87
+ - test/clone.rb
88
+ - test/create_tmp.rb
89
+ - test/def_var_with_dim.rb
90
+ - test/factor_offset.rb
91
+ - test/putatt.cdl
92
+ - test/putatt.rb
93
+ - test/test.cdl
94
+ - test/test.rb
95
+ - test/type.rb
96
+ homepage: http://www.gfd-dennou.org/arch/ruby/products/ruby-netcdf/
97
+ licenses:
98
+ - GFD Dennou Club
99
+ metadata: {}
100
+ post_install_message:
101
+ rdoc_options: []
102
+ require_paths:
103
+ - lib
104
+ required_ruby_version: !ruby/object:Gem::Requirement
105
+ requirements:
106
+ - - ">="
107
+ - !ruby/object:Gem::Version
108
+ version: '1.6'
109
+ required_rubygems_version: !ruby/object:Gem::Requirement
110
+ requirements:
111
+ - - ">="
112
+ - !ruby/object:Gem::Version
113
+ version: '0'
114
+ requirements: []
115
+ rubyforge_project:
116
+ rubygems_version: 2.2.1
117
+ signing_key:
118
+ specification_version: 4
119
+ summary: Ruby interface to NetCDF
120
+ test_files:
121
+ - test/putatt.rb
122
+ - test/putatt.cdl
123
+ - test/char_var.rb
124
+ - test/factor_offset.rb
125
+ - test/create_tmp.rb
126
+ - test/aref_aset.rb
127
+ - test/test.rb
128
+ - test/def_var_with_dim.rb
129
+ - test/type.rb
130
+ - test/test.cdl
131
+ - test/clone.rb