numo 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (7) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +43 -0
  3. data/README.md +29 -0
  4. data/Rakefile +13 -0
  5. data/lib/numo/version.rb +3 -0
  6. data/numo.gemspec +22 -0
  7. metadata +147 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 26eebea9d7b2dfcd47338f7b8e208f7b9f9565e1
4
+ data.tar.gz: 50961f372e8be4c490a6604b152e7f1133f63d26
5
+ SHA512:
6
+ metadata.gz: 75151a739f7e299d9dec9b68fb2fa081dc98d4c7e158b25c143654300a96e048d971841ebd4239c58e172e7aa3aa9311c6d97a22c8fb0414acbe0c66e53ecf6f
7
+ data.tar.gz: 2002ad8559f80a1220ecc19c0f602072a974dab5d2e3a3c7d39b950fb281e4f3cefbf85fd0d05c1f868ca7520d4ff51fbffb1afe3a7dbd4dcebb51e45c6c52c5
data/.gitignore ADDED
@@ -0,0 +1,43 @@
1
+ *.gem
2
+ *.rbc
3
+ /.config
4
+ /coverage/
5
+ /InstalledFiles
6
+ /pkg/
7
+ /spec/reports/
8
+ /spec/examples.txt
9
+ /test/tmp/
10
+ /test/version_tmp/
11
+ tmp/
12
+
13
+ ## Specific to RubyMotion:
14
+ .dat*
15
+ .repl_history
16
+ build/
17
+
18
+ ## Documentation cache and generated files:
19
+ .yardoc/
20
+ _yardoc/
21
+ doc/
22
+ rdoc/
23
+ yard/
24
+
25
+ ## Environment normalization:
26
+ /.bundle/
27
+ /vendor/bundle
28
+ /lib/bundler/man/
29
+
30
+ # for a library or gem, you might want to ignore these files since the code is
31
+ # intended to run in multiple environments; otherwise, check them in:
32
+ Gemfile.lock
33
+ .ruby-version
34
+ .ruby-gemset
35
+
36
+ # unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
37
+ .rvmrc
38
+
39
+ # Build files for extension
40
+ *~
41
+ *.o
42
+ *.so
43
+ TAGS
data/README.md ADDED
@@ -0,0 +1,29 @@
1
+ # Ruby/Numo (NUmerical MOdules)
2
+
3
+ !!! under development !!!
4
+
5
+ This project aimes at the development of
6
+ **NArray** (Ruby equivalent of Numpy) and
7
+ data analysis environment based on NArray.
8
+
9
+ ## Projects under Ruby/Numo
10
+
11
+ * [Numo::NArray](https://github.com/ruby-numo/narray) --
12
+ NArray is the performance-oriented, n-dimensional numerical array for Ruby.
13
+ Numo::NArray is new version of NArray which is the successor of
14
+ [the former version of NArray](https://github.com/masa16/narray).
15
+
16
+ * [Numo::Linalg](https://github.com/ruby-numo/linalg) --
17
+ Linear Algebra library with [BLAS](http://www.netlib.org/blas/)/[LAPACK](http://www.netlib.org/lapack/).
18
+
19
+ * [Numo::GSL](https://github.com/ruby-numo/gsl) --
20
+ Ruby/Numo interface to [GSL (GNU Scientific Library)](http://www.gnu.org/software/gsl/).
21
+
22
+ * [Numo::FFTW](https://github.com/ruby-numo/fftw) --
23
+ Ruby/Numo interface to [FFTW (A Discrete Fourier Transform library](http://www.fftw.org/).
24
+
25
+ * [Numo::FFTE](https://github.com/ruby-numo/ffte) --
26
+ Ruby/Numo interface to [FFTE (A Fast Fourier Transform library with radix-2,3,5)](http://www.ffte.jp/).
27
+
28
+ * [Numo::Gnuplot](https://github.com/ruby-numo/gnuplot) --
29
+ Ruby interface to [Gnuplot](http://www.gnuplot.info/)
data/Rakefile ADDED
@@ -0,0 +1,13 @@
1
+ require "bundler/gem_tasks"
2
+
3
+ task :doc do
4
+ dir = "ext/numo/fftw"
5
+ src = %w[fftw.c]
6
+ path = src.map{|s| File.join(dir,s)}
7
+ sh "cd #{dir}; ruby extconf.rb; make #{src.join(' ')}"
8
+ sh "rm -rf yard .yardoc; yard doc -o yard -m markdown -r README.md #{path.join(' ')}"
9
+ end
10
+
11
+ task :cleandoc do
12
+ rm_rf %w[yard .yardoc]
13
+ end
@@ -0,0 +1,3 @@
1
+ module Numo
2
+ VERSION = "0.1.0"
3
+ end
data/numo.gemspec ADDED
@@ -0,0 +1,22 @@
1
+ require_relative "lib/numo/version.rb"
2
+
3
+ Gem::Specification.new do |spec|
4
+ spec.name = "numo"
5
+ spec.version = Numo::VERSION
6
+ spec.authors = ["Masahiro TANAKA"]
7
+ spec.email = ["masa16.tanaka@gmail.com"]
8
+ spec.description = %q{Ruby/Numo - a collection of libraries for numerical computing in Ruby.}
9
+ spec.summary = %q{Ruby/Numo - a collection of libraries for numerical computing in Ruby}
10
+ spec.homepage = "https://github.com/ruby-numo/numo"
11
+ spec.licenses = ["GPL3"]
12
+
13
+ spec.files = `git ls-files`.split($/)
14
+
15
+ spec.add_development_dependency "bundler", "~> 1.3"
16
+ spec.add_development_dependency "rake", "~> 0"
17
+ spec.add_runtime_dependency "numo-narray", "~> 0.9.0.8"
18
+ spec.add_runtime_dependency "numo-linalg", "~> 0.0.1"
19
+ spec.add_runtime_dependency "numo-gsl", "~> 0.1.0"
20
+ spec.add_runtime_dependency "numo-fftw", "~> 0.1.0"
21
+ spec.add_runtime_dependency "numo-gnuplot", "~> 0.2.4"
22
+ end
metadata ADDED
@@ -0,0 +1,147 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: numo
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Masahiro TANAKA
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2017-09-15 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.3'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.3'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: numo-narray
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: 0.9.0.8
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: 0.9.0.8
55
+ - !ruby/object:Gem::Dependency
56
+ name: numo-linalg
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: 0.0.1
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: 0.0.1
69
+ - !ruby/object:Gem::Dependency
70
+ name: numo-gsl
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: 0.1.0
76
+ type: :runtime
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: 0.1.0
83
+ - !ruby/object:Gem::Dependency
84
+ name: numo-fftw
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - "~>"
88
+ - !ruby/object:Gem::Version
89
+ version: 0.1.0
90
+ type: :runtime
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - "~>"
95
+ - !ruby/object:Gem::Version
96
+ version: 0.1.0
97
+ - !ruby/object:Gem::Dependency
98
+ name: numo-gnuplot
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - "~>"
102
+ - !ruby/object:Gem::Version
103
+ version: 0.2.4
104
+ type: :runtime
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - "~>"
109
+ - !ruby/object:Gem::Version
110
+ version: 0.2.4
111
+ description: Ruby/Numo - a collection of libraries for numerical computing in Ruby.
112
+ email:
113
+ - masa16.tanaka@gmail.com
114
+ executables: []
115
+ extensions: []
116
+ extra_rdoc_files: []
117
+ files:
118
+ - ".gitignore"
119
+ - README.md
120
+ - Rakefile
121
+ - lib/numo/version.rb
122
+ - numo.gemspec
123
+ homepage: https://github.com/ruby-numo/numo
124
+ licenses:
125
+ - GPL3
126
+ metadata: {}
127
+ post_install_message:
128
+ rdoc_options: []
129
+ require_paths:
130
+ - lib
131
+ required_ruby_version: !ruby/object:Gem::Requirement
132
+ requirements:
133
+ - - ">="
134
+ - !ruby/object:Gem::Version
135
+ version: '0'
136
+ required_rubygems_version: !ruby/object:Gem::Requirement
137
+ requirements:
138
+ - - ">="
139
+ - !ruby/object:Gem::Version
140
+ version: '0'
141
+ requirements: []
142
+ rubyforge_project:
143
+ rubygems_version: 2.6.11
144
+ signing_key:
145
+ specification_version: 4
146
+ summary: Ruby/Numo - a collection of libraries for numerical computing in Ruby
147
+ test_files: []