ruby-fftw3 1.0.1 → 1.0.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 53f14d076520f6da6763f1896ab0fb2de37deeca
4
- data.tar.gz: 9b14e36f8124a163dbccacd456ad859e0fdb56c2
3
+ metadata.gz: 08197fc7a32a7b002897e01cfffb1f327873e78c
4
+ data.tar.gz: e5c1c37ec7018ca44a828bdaed9e617e58281a46
5
5
  SHA512:
6
- metadata.gz: f91d859252783140b6656b459cb69ee4532167bccecfe831e403b4caaceeddc27cf37f49863008a393a443ed0600990e142338e9b1c0f51fc0d6c8f019e2397e
7
- data.tar.gz: 992c9a1c7a7d980aa629575044f069f924a8426ba95c20eb50fac7af935c889a69bf61be74ae29cb60725eeaf6b026d31b764042097d0117b8b3a03994229269
6
+ metadata.gz: 3bdf31c24a8e560074ca9ac96474cb449d08130f4daef00007b067415eb0decd25126d016658806e55e7ecda47fe58e2d03ff0b488bee11954f0a541654d940c
7
+ data.tar.gz: a76668d447bf7de4e898964839783cbb2d5b687d8a67f9a84361fa4723e8eb13095757a674d4cc1ef223f7502f35b80731644f30bf01baf74fc62ed3a0a29856
data/ChangeLog CHANGED
@@ -1,4 +1,24 @@
1
- 2016-07-16 Takeshi Horinouchi (HEAD, master)
1
+ 2016-08-01 Takeshi Horinouchi (HEAD, origin/master, origin/HEAD, master)
2
+ fixed a bug reported by Yashiro-san [dennou-ruby:003983]
3
+
4
+ M ext/numru/fftw3/na_fftw3.c
5
+
6
+ 2016-07-16 Takeshi Horinouchi
7
+ Further update of description
8
+
9
+ M ruby-fftw3.gemspec
10
+
11
+ 2016-07-16 Takeshi Horinouchi
12
+ Updated the description
13
+
14
+ M ruby-fftw3.gemspec
15
+
16
+ 2016-07-16 Takeshi Horinouchi (tag: v1.0.1)
17
+ To release ver. 1.0.1
18
+
19
+ A ChangeLog
20
+
21
+ 2016-07-16 Takeshi Horinouchi
2
22
  Updated the numru/narray support
3
23
 
4
24
  M ext/numru/fftw3/na_fftw3.c
@@ -19,7 +39,7 @@ deleted old (unused) part related windows
19
39
 
20
40
  M ext/numru/fftw3/extconf.rb
21
41
 
22
- 2016-07-16 Takeshi Horinouchi (v1.0.0, origin/master, origin/HEAD)
42
+ 2016-07-16 Takeshi Horinouchi (tag: v1.0.0)
23
43
  Updated the year range
24
44
 
25
45
  M LICENSE.txt
@@ -90,7 +110,7 @@ M Rakefile
90
110
  M ext/numru/fftw3/extconf.rb
91
111
  A ruby-fftw3-bigmem.gemspec
92
112
 
93
- 2015-03-31 Eriko Nishimoto (origin/rubygems)
113
+ 2015-03-31 Eriko Nishimoto (origin/rubygems, rubygems)
94
114
  Modified git ignore list
95
115
 
96
116
  Added pkg and tmp folder
@@ -155,7 +175,7 @@ Registered files (patterns) to ignore in the repository
155
175
 
156
176
  A .gitignore
157
177
 
158
- 2011-04-19 Takeshi Horinouchi (ruby-fftw3-0_4)
178
+ 2011-04-19 Takeshi Horinouchi (tag: ruby-fftw3-0_4)
159
179
  * doc/ruby-fftw3.rd and doc/ruby-fftw3.html : updated
160
180
 
161
181
  M ChangeLog
@@ -192,7 +212,7 @@ Tue Apr 12 2011 T Horinouchi
192
212
  M ChangeLog
193
213
  M LICENSE.txt
194
214
 
195
- 2011-03-24 Takeshi Horinouchi (ruby-fftw3-0_3)
215
+ 2011-03-24 Takeshi Horinouchi (tag: ruby-fftw3-0_3)
196
216
  Thu Mar 24 2011 T Horinouchi
197
217
  * version 0.3 released (cvs tag ruby-fftw3-0_3)
198
218
  * LICENSE.txt: added
@@ -200,7 +220,7 @@ Thu Mar 24 2011 T Horinouchi
200
220
  M ChangeLog
201
221
  A LICENSE.txt
202
222
 
203
- 2004-06-07 Takeshi Horinouchi (ruby-fftw3-0_2)
223
+ 2004-06-07 Takeshi Horinouchi (tag: ruby-fftw3-0_2)
204
224
  *** empty log message ***
205
225
 
206
226
  D doc/fftw3.html
@@ -458,8 +458,8 @@ na_fftw3_r2r(int argc, VALUE *argv, VALUE self)
458
458
  return v2;
459
459
  }
460
460
 
461
- static VALUE
462
461
  #ifdef FFTW3_HAS_SINGLE_SUPPORT
462
+ static VALUE
463
463
  na_fftw3_r2r_float(int argc, VALUE *argv, VALUE self)
464
464
  /* to be called by na_fftw3_r2r */
465
465
  {
@@ -1,5 +1,5 @@
1
1
  module NumRu
2
2
  module FFTW3
3
- VERSION = "1.0.1"
3
+ VERSION = "1.0.2"
4
4
  end
5
5
  end
@@ -3,6 +3,9 @@ lib = File.expand_path('../lib', __FILE__)
3
3
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
4
  require 'numru/fftw3/version'
5
5
 
6
+ filelist = %w!ChangeLog .ChangeLog.until20110419 Gemfile LICENSE.txt Rakefile ruby-fftw3.gemspec!
7
+ filelist.concat(Dir::glob("ext/**/*.c\0ext/**/*.rb\0lib/**/*.rb\0test/**/*.rb"))
8
+
6
9
  Gem::Specification.new do |spec|
7
10
  spec.name = "ruby-fftw3"
8
11
  spec.version = NumRu::FFTW3::VERSION
@@ -10,11 +13,11 @@ Gem::Specification.new do |spec|
10
13
  spec.email = ['eriko@gfd-dennou.org']
11
14
 
12
15
  spec.summary = %q{The Ruby interface of the FFTW (ver 3) library}
13
- spec.description = %q{Fast Fourier Transforms by using FFTW Ver.3. This new version works with Ruby2.0.}
16
+ spec.description = %q{The Ruby interface of the FFTW3, Fast Fourier Transform library FFTW Ver.3. Since ver.1, ruby-fftw3 supports all kinds of FFTs in FFTW3. Works with NArray (or NumRu::NArray).}
14
17
  spec.homepage = 'http://www.gfd-dennou.org/arch/ruby/products/ruby-fftw3/'
15
18
  spec.licenses = ["BSD-2-Clause"]
16
19
 
17
- spec.files = `git ls-files -z`.split("\x0")
20
+ spec.files = filelist
18
21
  spec.test_files = spec.files.grep(%r{^test/})
19
22
  spec.require_paths = ["ext","lib"]
20
23
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruby-fftw3
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Takeshi Horinouchi
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-07-16 00:00:00.000000000 Z
11
+ date: 2016-08-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: narray
@@ -24,8 +24,9 @@ dependencies:
24
24
  - - ">="
25
25
  - !ruby/object:Gem::Version
26
26
  version: '0'
27
- description: Fast Fourier Transforms by using FFTW Ver.3. This new version works with
28
- Ruby2.0.
27
+ description: The Ruby interface of the FFTW3, Fast Fourier Transform library FFTW
28
+ Ver.3. Since ver.1, ruby-fftw3 supports all kinds of FFTs in FFTW3. Works with NArray
29
+ (or NumRu::NArray).
29
30
  email:
30
31
  - eriko@gfd-dennou.org
31
32
  executables: []
@@ -34,17 +35,14 @@ extensions:
34
35
  extra_rdoc_files: []
35
36
  files:
36
37
  - ".ChangeLog.until20110419"
37
- - ".gitignore"
38
38
  - ChangeLog
39
39
  - Gemfile
40
40
  - LICENSE.txt
41
41
  - Rakefile
42
- - ToDo
43
42
  - ext/numru/fftw3/extconf.rb
44
43
  - ext/numru/fftw3/na_fftw3.c
45
44
  - lib/numru/fftw3.rb
46
45
  - lib/numru/fftw3/version.rb
47
- - ruby-fftw3-bigmem.gemspec
48
46
  - ruby-fftw3.gemspec
49
47
  - test/complexFFT.rb
50
48
  - test/r2rFFT.rb
@@ -69,7 +67,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
69
67
  version: '0'
70
68
  requirements: []
71
69
  rubyforge_project:
72
- rubygems_version: 2.5.1
70
+ rubygems_version: 2.2.2
73
71
  signing_key:
74
72
  specification_version: 4
75
73
  summary: The Ruby interface of the FFTW (ver 3) library
data/.gitignore DELETED
@@ -1,6 +0,0 @@
1
- *.[oa]
2
- *~
3
- *.so
4
- Makefile
5
- /pkg/
6
- /tmp/
data/ToDo DELETED
@@ -1,4 +0,0 @@
1
- 2003/11/18
2
- * enable users to choose FFTW_MEASURE etc
3
- * support real-to-real tranforms (esp. sine and cosine transforms)
4
-
@@ -1,25 +0,0 @@
1
- # coding: utf-8
2
- lib = File.expand_path('../lib', __FILE__)
3
- $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
- require 'numru/fftw3/version'
5
-
6
- Gem::Specification.new do |spec|
7
- spec.name = "ruby-fftw3-bigmem"
8
- spec.version = NumRu::FFTW3::VERSION
9
- spec.authors = ["Takeshi Horinouchi"]
10
- spec.email = ['eriko@gfd-dennou.org']
11
-
12
- spec.summary = %q{The Ruby interface of the FFTW (ver 3) library}
13
- spec.description = %q{Fast Fourier Transforms by using FFTW Ver.3. This new version works with Ruby2.0.}
14
- spec.homepage = 'http://www.gfd-dennou.org/arch/ruby/products/ruby-fftw3/'
15
- spec.licenses = ["BSD-2-Clause"]
16
-
17
- spec.files = `git ls-files -z`.split("\x0")
18
- spec.test_files = spec.files.grep(%r{^test/})
19
- spec.require_paths = ["ext","lib"]
20
-
21
- spec.required_ruby_version = Gem::Requirement.new(">= 1.8")
22
- spec.add_runtime_dependency(%q<narray-bigmem>, [">= 0"])
23
-
24
- spec.extensions << "ext/numru/fftw3/extconf.rb"
25
- end