narray 0.6.1.1 → 0.6.1.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: bc84e07d3c12ee40beb2e740a8ff2757ab81c8eb
4
- data.tar.gz: fd3071c8c7072c92b5d048689ded0eac62156196
3
+ metadata.gz: 56512ecca2cd8933d1f14cea31ad13a4b57fe781
4
+ data.tar.gz: 7e2a85b5042b0910fdbc97735199c8fcefe5849e
5
5
  SHA512:
6
- metadata.gz: 96702352e0b774fe269762f95a2522589b63b728af5cafd6e90cb023d1a07ac009d3c63b76ab8c46c4dfd325625fe36751012d97ae6adf753aa196cd05cf5903
7
- data.tar.gz: 53e96375a5b51819cc02805a850eed4e73b3019446f17bde794d8f52802ecca77ef68843b31b3220db9655e151e2b79161abf0f83189af64b50cdf7149126c68
6
+ metadata.gz: 270efc65da9d44842b2cc652a24386f7d66f62b8b585cffb475eb143b5aaba6bb11545af13b197597b1762ce9472e5c8424e1eb8e872e848e04720ae08aaaf6a
7
+ data.tar.gz: b23c2117a3625d58f6d07165ec450d98cf878e0211ccf335d8e18e1ca617e14f837bc507c8232416fa9ad773471f5e98e1c5e5a984811e522de73a8469e5bd9d
data/ChangeLog CHANGED
@@ -1,3 +1,8 @@
1
+ 2016-02-11 Masahiro TANAKA <masa16.tanaka@gmail.com>
2
+
3
+ * nmatrix.rb, narray_ext.rb: moved from lib/ to lib/narray/
4
+ * ver 0.6.1.2
5
+
1
6
  2013-03-16 Masahiro TANAKA <masa16.tanaka@gmail.com>
2
7
 
3
8
  * narray.c (Init_narray): add map, map!
data/MANIFEST CHANGED
@@ -18,8 +18,8 @@ narray.c
18
18
  narray.def
19
19
  narray.h
20
20
  narray_local.h
21
- lib/narray_ext.rb
22
- lib/nmatrix.rb
21
+ lib/narray/narray_ext.rb
22
+ lib/narray/nmatrix.rb
23
23
  test/statistics.rb
24
24
  test/testarray.rb
25
25
  test/testbit.rb
@@ -47,7 +47,7 @@ class NArray
47
47
 
48
48
  def ==(other)
49
49
  other.kind_of?(NArray) &&
50
- shape == other.shape &&
50
+ shape == other.shape &&
51
51
  eq(other).all?
52
52
  end
53
53
 
@@ -359,4 +359,4 @@ module FFTW
359
359
  module_function :convol
360
360
  end
361
361
 
362
- require 'nmatrix'
362
+ require 'narray/nmatrix'
@@ -1319,5 +1319,5 @@ void
1319
1319
  Init_na_linalg();
1320
1320
 
1321
1321
  /* NArray extention script */
1322
- rb_require("narray_ext.rb");
1322
+ rb_require("narray/narray_ext");
1323
1323
  }
@@ -23,8 +23,8 @@
23
23
  # include <sys/types.h>
24
24
  #endif
25
25
 
26
- #define NARRAY_VERSION "0.6.1.1"
27
- #define NARRAY_VERSION_CODE 611
26
+ #define NARRAY_VERSION "0.6.1.2"
27
+ #define NARRAY_VERSION_CODE 612
28
28
 
29
29
  /*
30
30
  Data types used in NArray :
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: narray
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.1.1
4
+ version: 0.6.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Masahiro Tanaka
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-01-01 00:00:00.000000000 Z
11
+ date: 2016-02-11 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Numerical N-dimensional Array class
14
14
  email: masa16.tanaka@gmail.com
@@ -25,8 +25,8 @@ files:
25
25
  - SPEC.ja.txt
26
26
  - src/depend
27
27
  - src/extconf.rb
28
- - src/lib/narray_ext.rb
29
- - src/lib/nmatrix.rb
28
+ - src/lib/narray/narray_ext.rb
29
+ - src/lib/narray/nmatrix.rb
30
30
  - src/mkmath.rb
31
31
  - src/mknafunc.rb
32
32
  - src/mkop.rb
@@ -77,7 +77,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
77
77
  version: '0'
78
78
  requirements: []
79
79
  rubyforge_project:
80
- rubygems_version: 2.2.2
80
+ rubygems_version: 2.5.1
81
81
  signing_key:
82
82
  specification_version: 2
83
83
  summary: N-dimensional Numerical Array class for Ruby