Skip to content

Commit 5ea4d7a

Browse files
committed
Preparing for release of 0.2.4.
1 parent 68adec0 commit 5ea4d7a

File tree

7 files changed

+30
-87
lines changed

7 files changed

+30
-87
lines changed

Manifest.txt

Lines changed: 26 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,16 @@ travis.sh
1313
.travis.yml
1414
lib/nmatrix.rb
1515
lib/nmatrix/atlas.rb
16+
lib/nmatrix/blas.rb
17+
lib/nmatrix/enumerate.rb
18+
lib/nmatrix/homogeneous.rb
19+
lib/nmatrix/math.rb
20+
lib/nmatrix/mkmf.rb
21+
lib/nmatrix/monkeys.rb
22+
lib/nmatrix/nmatrix.rb
23+
lib/nmatrix/shortcuts.rb
24+
lib/nmatrix/version.rb
25+
lib/nmatrix/yale_functions.rb
1626
lib/nmatrix/fftw.rb
1727
lib/nmatrix/lapack_core.rb
1828
lib/nmatrix/lapack_ext_common.rb
@@ -25,17 +35,14 @@ lib/nmatrix/io/mat_reader.rb
2535
lib/nmatrix/io/point_cloud.rb
2636
lib/nmatrix/io/fortran_format.rb
2737
lib/nmatrix/io/harwell_boeing.rb
28-
lib/nmatrix/blas.rb
29-
lib/nmatrix/enumerate.rb
30-
lib/nmatrix/homogeneous.rb
31-
lib/nmatrix/math.rb
32-
lib/nmatrix/mkmf.rb
33-
lib/nmatrix/monkeys.rb
34-
lib/nmatrix/nmatrix.rb
35-
lib/nmatrix/rspec.rb
36-
lib/nmatrix/shortcuts.rb
37-
lib/nmatrix/version.rb
38-
lib/nmatrix/yale_functions.rb
38+
lib/nmatrix/cruby/math.rb
39+
lib/nmatrix/jruby/decomposition.rb
40+
lib/nmatrix/jruby/enumerable.rb
41+
lib/nmatrix/jruby/error.rb
42+
lib/nmatrix/jruby/math.rb
43+
lib/nmatrix/jruby/nmatrix_java.rb
44+
lib/nmatrix/jruby/operators.rb
45+
lib/nmatrix/jruby/slice.rb
3946
ext/nmatrix/math/cblas_enums.h
4047
ext/nmatrix/math/cblas_templates_core.h
4148
ext/nmatrix/math/util.h
@@ -49,6 +56,14 @@ ext/nmatrix_atlas/math_atlas/gesdd.h
4956
ext/nmatrix_atlas/math_atlas/gesvd.h
5057
ext/nmatrix_atlas/math_atlas/inc.h
5158
ext/nmatrix_atlas/nmatrix_atlas.cpp
59+
ext/nmatrix_java/nmatrix/data/Complex.java
60+
ext/nmatrix_java/nmatrix/math/MathHelper.java
61+
ext/nmatrix_java/nmatrix/storage/dense/ArrayComparator.java
62+
ext/nmatrix_java/nmatrix/util/ArrayGenerator.java
63+
ext/nmatrix_java/nmatrix/util/MatrixGenerator.java
64+
ext/nmatrix_java/nmatrix/util/WrapperType.java
65+
ext/nmatrix_java/test/AssertTests.java
66+
ext/nmatrix_java/test/TestRunner.java
5267
ext/nmatrix_lapacke/extconf.rb
5368
ext/nmatrix_lapacke/lapacke.cpp
5469
ext/nmatrix_lapacke/lapacke/include/lapacke.h

Rakefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ task :check_manifest do |task|
240240
manifest_files = File.read("Manifest.txt").split
241241

242242
git_files = `git ls-files |grep -v 'spec/'`.split
243-
ignore_files = %w{.gitignore .rspec ext/nmatrix/binary_format.txt ext/nmatrix/ttable_helper.rb scripts/mac-brew-gcc.sh}
243+
ignore_files = %w{.gitignore .rspec ext/nmatrix/binary_format.txt scripts/ttable_helper.rb}
244244

245245
possible_files = git_files - ignore_files
246246

ext/nmatrix_java/README.md

Whitespace-only changes.

nmatrix.gemspec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ Gem::Specification.new do |gem|
2424
***********************************************************
2525
Welcome to SciRuby: Tools for Scientific Computing in Ruby!
2626
27-
NMatrix requires a C compiler, and has been tested only
28-
with GCC 4.6+. We are happy to accept contributions
29-
which improve the portability of this project.
27+
NMatrix requires a C/C++ compiler. Clang and GCC are
28+
recommended. JRuby support is experimental, and requires
29+
Java.
3030
3131
If you are upgrading from NMatrix 0.1.0 and rely on
3232
ATLAS features, please check the README.

scripts/mac-brew-gcc.sh

Lines changed: 0 additions & 50 deletions
This file was deleted.

scripts/mac-mavericks-brew-gcc.sh

Lines changed: 0 additions & 22 deletions
This file was deleted.
File renamed without changes.

0 commit comments

Comments
 (0)