multiarray 1.0.1 → 1.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. data/Rakefile +4 -1
  2. metadata +90 -99
data/Rakefile CHANGED
@@ -6,7 +6,7 @@ require 'rake/packagetask'
6
6
  require 'rbconfig'
7
7
 
8
8
  PKG_NAME = 'multiarray'
9
- PKG_VERSION = '1.0.1'
9
+ PKG_VERSION = '1.0.2'
10
10
  RB_FILES = FileList[ 'lib/**/*.rb' ]
11
11
  TC_FILES = FileList[ 'test/tc_*.rb' ]
12
12
  TS_FILES = FileList[ 'test/ts_*.rb' ]
@@ -16,6 +16,7 @@ BIN_FILES = [ 'README.md', 'COPYING', '.document' ] +
16
16
  RB_FILES + TS_FILES + TC_FILES
17
17
  SUMMARY = %q{Multi-dimensional and uniform Ruby arrays}
18
18
  DESCRIPTION = %q{This Ruby-extension defines Hornetseye::MultiArray and other native datatypes. Hornetseye::MultiArray provides multi-dimensional Ruby arrays with elements of same type. The extension is designed to be mostly compatible with Masahiro Tanaka's NArray. However it allows the definition of custom element types and operations on them. This work was also inspired by Ronald Garcia's boost::multi_array and by Todd Veldhuizen's Blitz++.}
19
+ LICENSE = 'GPL-3+'
19
20
  AUTHOR = %q{Jan Wedekind}
20
21
  EMAIL = %q{jan@wedesoft.de}
21
22
  HOMEPAGE = %q{http://wedesoft.github.com/multiarray/}
@@ -76,6 +77,7 @@ begin
76
77
  s.date = Date.today.to_s
77
78
  s.summary = SUMMARY
78
79
  s.description = DESCRIPTION
80
+ s.license = LICENSE
79
81
  s.author = AUTHOR
80
82
  s.email = EMAIL
81
83
  s.homepage = HOMEPAGE
@@ -98,6 +100,7 @@ begin
98
100
  s.date = Date.today.to_s
99
101
  s.summary = SUMMARY
100
102
  s.description = DESCRIPTION
103
+ s.license = LICENSE
101
104
  s.author = AUTHOR
102
105
  s.email = EMAIL
103
106
  s.homepage = HOMEPAGE
metadata CHANGED
@@ -1,156 +1,147 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: multiarray
3
- version: !ruby/object:Gem::Version
4
- hash: 21
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.2
5
5
  prerelease:
6
- segments:
7
- - 1
8
- - 0
9
- - 1
10
- version: 1.0.1
11
6
  platform: ruby
12
- authors:
7
+ authors:
13
8
  - Jan Wedekind
14
9
  autorequire:
15
10
  bindir: bin
16
11
  cert_chain: []
17
-
18
- date: 2012-07-04 00:00:00 +01:00
19
- default_executable:
20
- dependencies:
21
- - !ruby/object:Gem::Dependency
22
- version_requirements: &id001 !ruby/object:Gem::Requirement
12
+ date: 2013-09-30 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: malloc
16
+ requirement: !ruby/object:Gem::Requirement
23
17
  none: false
24
- requirements:
18
+ requirements:
25
19
  - - ~>
26
- - !ruby/object:Gem::Version
27
- hash: 13
28
- segments:
29
- - 1
30
- - 1
31
- version: "1.1"
32
- requirement: *id001
20
+ - !ruby/object:Gem::Version
21
+ version: '1.1'
33
22
  type: :runtime
34
23
  prerelease: false
35
- name: malloc
36
- - !ruby/object:Gem::Dependency
37
- version_requirements: &id002 !ruby/object:Gem::Requirement
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ~>
28
+ - !ruby/object:Gem::Version
29
+ version: '1.1'
30
+ - !ruby/object:Gem::Dependency
31
+ name: rake
32
+ requirement: !ruby/object:Gem::Requirement
38
33
  none: false
39
- requirements:
40
- - - ">="
41
- - !ruby/object:Gem::Version
42
- hash: 3
43
- segments:
44
- - 0
45
- version: "0"
46
- requirement: *id002
34
+ requirements:
35
+ - - ! '>='
36
+ - !ruby/object:Gem::Version
37
+ version: '0'
47
38
  type: :development
48
39
  prerelease: false
49
- name: rake
50
- description: This Ruby-extension defines Hornetseye::MultiArray and other native datatypes. Hornetseye::MultiArray provides multi-dimensional Ruby arrays with elements of same type. The extension is designed to be mostly compatible with Masahiro Tanaka's NArray. However it allows the definition of custom element types and operations on them. This work was also inspired by Ronald Garcia's boost::multi_array and by Todd Veldhuizen's Blitz++.
40
+ version_requirements: !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ! '>='
44
+ - !ruby/object:Gem::Version
45
+ version: '0'
46
+ description: This Ruby-extension defines Hornetseye::MultiArray and other native datatypes.
47
+ Hornetseye::MultiArray provides multi-dimensional Ruby arrays with elements of same
48
+ type. The extension is designed to be mostly compatible with Masahiro Tanaka's NArray.
49
+ However it allows the definition of custom element types and operations on them.
50
+ This work was also inspired by Ronald Garcia's boost::multi_array and by Todd Veldhuizen's
51
+ Blitz++.
51
52
  email: jan@wedesoft.de
52
53
  executables: []
53
-
54
- extensions:
54
+ extensions:
55
55
  - Rakefile
56
56
  extra_rdoc_files: []
57
-
58
- files:
57
+ files:
59
58
  - Rakefile
60
59
  - README.md
61
60
  - COPYING
62
61
  - .document
63
- - lib/multiarray/argument.rb
64
62
  - lib/multiarray/bool.rb
65
- - lib/multiarray/complex.rb
63
+ - lib/multiarray/multiarray.rb
64
+ - lib/multiarray/node.rb
65
+ - lib/multiarray/gccvalue.rb
66
+ - lib/multiarray/rgb.rb
67
+ - lib/multiarray/object.rb
68
+ - lib/multiarray/gcccontext.rb
69
+ - lib/multiarray/unmask.rb
70
+ - lib/multiarray/elementwise.rb
66
71
  - lib/multiarray/components.rb
67
- - lib/multiarray/composite.rb
68
72
  - lib/multiarray/diagonal.rb
73
+ - lib/multiarray/index.rb
74
+ - lib/multiarray/variable.rb
75
+ - lib/multiarray/lambda.rb
76
+ - lib/multiarray/integral.rb
77
+ - lib/multiarray/pointer.rb
69
78
  - lib/multiarray/element.rb
70
- - lib/multiarray/elementwise.rb
79
+ - lib/multiarray/composite.rb
80
+ - lib/multiarray/argument.rb
81
+ - lib/multiarray/lookup.rb
82
+ - lib/multiarray/sequence.rb
83
+ - lib/multiarray/gcctype.rb
71
84
  - lib/multiarray/field.rb
72
- - lib/multiarray/float.rb
85
+ - lib/multiarray/shortcuts.rb
86
+ - lib/multiarray/complex.rb
87
+ - lib/multiarray/mask.rb
88
+ - lib/multiarray/malloc.rb
89
+ - lib/multiarray/lut.rb
90
+ - lib/multiarray/int.rb
73
91
  - lib/multiarray/gcccache.rb
74
- - lib/multiarray/gcccontext.rb
75
- - lib/multiarray/gccfunction.rb
76
- - lib/multiarray/gcctype.rb
77
- - lib/multiarray/gccvalue.rb
78
- - lib/multiarray/histogram.rb
79
- - lib/multiarray/index.rb
80
92
  - lib/multiarray/inject.rb
81
- - lib/multiarray/int.rb
82
- - lib/multiarray/integral.rb
83
- - lib/multiarray/lambda.rb
84
93
  - lib/multiarray/list.rb
85
- - lib/multiarray/lookup.rb
86
- - lib/multiarray/lut.rb
87
- - lib/multiarray/malloc.rb
88
- - lib/multiarray/mask.rb
89
- - lib/multiarray/methods.rb
90
- - lib/multiarray/multiarray.rb
91
- - lib/multiarray/node.rb
92
- - lib/multiarray/object.rb
93
- - lib/multiarray/operations.rb
94
- - lib/multiarray/pointer.rb
94
+ - lib/multiarray/gccfunction.rb
95
+ - lib/multiarray/histogram.rb
96
+ - lib/multiarray/float.rb
95
97
  - lib/multiarray/random.rb
96
- - lib/multiarray/rgb.rb
97
- - lib/multiarray/sequence.rb
98
- - lib/multiarray/shortcuts.rb
98
+ - lib/multiarray/operations.rb
99
99
  - lib/multiarray/store.rb
100
- - lib/multiarray/unmask.rb
101
- - lib/multiarray/variable.rb
100
+ - lib/multiarray/methods.rb
102
101
  - lib/multiarray.rb
103
102
  - test/ts_multiarray.rb
104
- - test/tc_bool.rb
103
+ - test/tc_int.rb
105
104
  - test/tc_compile.rb
105
+ - test/tc_object.rb
106
106
  - test/tc_float.rb
107
- - test/tc_int.rb
108
107
  - test/tc_lazy.rb
109
108
  - test/tc_multiarray.rb
110
- - test/tc_object.rb
109
+ - test/tc_bool.rb
111
110
  - test/tc_rgb.rb
112
111
  - test/tc_sequence.rb
113
- has_rdoc: true
114
112
  homepage: http://wedesoft.github.com/multiarray/
115
- licenses: []
116
-
113
+ licenses:
114
+ - GPL-3+
117
115
  post_install_message:
118
- rdoc_options:
116
+ rdoc_options:
119
117
  - --no-private
120
- require_paths:
118
+ require_paths:
121
119
  - lib
122
- required_ruby_version: !ruby/object:Gem::Requirement
120
+ required_ruby_version: !ruby/object:Gem::Requirement
123
121
  none: false
124
- requirements:
125
- - - ">="
126
- - !ruby/object:Gem::Version
127
- hash: 3
128
- segments:
129
- - 0
130
- version: "0"
131
- required_rubygems_version: !ruby/object:Gem::Requirement
122
+ requirements:
123
+ - - ! '>='
124
+ - !ruby/object:Gem::Version
125
+ version: '0'
126
+ required_rubygems_version: !ruby/object:Gem::Requirement
132
127
  none: false
133
- requirements:
134
- - - ">="
135
- - !ruby/object:Gem::Version
136
- hash: 3
137
- segments:
138
- - 0
139
- version: "0"
128
+ requirements:
129
+ - - ! '>='
130
+ - !ruby/object:Gem::Version
131
+ version: '0'
140
132
  requirements: []
141
-
142
133
  rubyforge_project: hornetseye
143
- rubygems_version: 1.6.2
134
+ rubygems_version: 1.8.23
144
135
  signing_key:
145
136
  specification_version: 3
146
137
  summary: Multi-dimensional and uniform Ruby arrays
147
- test_files:
148
- - test/tc_bool.rb
138
+ test_files:
139
+ - test/tc_int.rb
149
140
  - test/tc_compile.rb
141
+ - test/tc_object.rb
150
142
  - test/tc_float.rb
151
- - test/tc_int.rb
152
143
  - test/tc_lazy.rb
153
144
  - test/tc_multiarray.rb
154
- - test/tc_object.rb
145
+ - test/tc_bool.rb
155
146
  - test/tc_rgb.rb
156
147
  - test/tc_sequence.rb