matrix 0.0.1 → 0.1.0
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 +5 -5
- data/.gitignore +9 -17
- data/.travis.yml +4 -0
- data/Gemfile +3 -1
- data/LICENSE.txt +20 -20
- data/README.md +19 -7
- data/Rakefile +9 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/lib/matrix.rb +2372 -3
- data/matrix.gemspec +13 -15
- metadata +22 -20
- data/lib/matrix/version.rb +0 -3
data/matrix.gemspec
CHANGED
@@ -1,23 +1,21 @@
|
|
1
|
-
#
|
2
|
-
lib = File.expand_path('../lib', __FILE__)
|
3
|
-
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
-
require 'matrix/version'
|
1
|
+
# frozen_string_literal: true
|
5
2
|
|
6
3
|
Gem::Specification.new do |spec|
|
7
4
|
spec.name = "matrix"
|
8
|
-
spec.version =
|
9
|
-
spec.authors = ["
|
10
|
-
spec.email = ["
|
11
|
-
spec.description = %q{This gem is under construction.}
|
12
|
-
spec.summary = %q{This gem is under construction.}
|
13
|
-
spec.homepage = ""
|
14
|
-
spec.license = "MIT"
|
5
|
+
spec.version = "0.1.0"
|
6
|
+
spec.authors = ["Marc-Andre Lafortune"]
|
7
|
+
spec.email = ["ruby-core@marc-andre.ca"]
|
15
8
|
|
16
|
-
spec.
|
17
|
-
spec.
|
18
|
-
spec.
|
9
|
+
spec.summary = %q{An implementation of Matrix and Vector classes.}
|
10
|
+
spec.description = %q{An implementation of Matrix and Vector classes.}
|
11
|
+
spec.homepage = "https://github.com/ruby/matrix"
|
12
|
+
spec.license = "BSD-2-Clause"
|
13
|
+
|
14
|
+
spec.files = [".gitignore", ".travis.yml", "Gemfile", "LICENSE.txt", "README.md", "Rakefile", "bin/console", "bin/setup", "lib/matrix.rb", "matrix.gemspec"]
|
15
|
+
spec.bindir = "exe"
|
16
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
19
17
|
spec.require_paths = ["lib"]
|
20
18
|
|
21
|
-
spec.add_development_dependency "bundler"
|
19
|
+
spec.add_development_dependency "bundler"
|
22
20
|
spec.add_development_dependency "rake"
|
23
21
|
end
|
metadata
CHANGED
@@ -1,61 +1,63 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: matrix
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0
|
4
|
+
version: 0.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
|
-
-
|
7
|
+
- Marc-Andre Lafortune
|
8
8
|
autorequire:
|
9
|
-
bindir:
|
9
|
+
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2018-12-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- -
|
17
|
+
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '
|
19
|
+
version: '0'
|
20
20
|
type: :development
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
|
-
- -
|
24
|
+
- - ">="
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: '
|
26
|
+
version: '0'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: rake
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
|
-
- -
|
31
|
+
- - ">="
|
32
32
|
- !ruby/object:Gem::Version
|
33
33
|
version: '0'
|
34
34
|
type: :development
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
|
-
- -
|
38
|
+
- - ">="
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: '0'
|
41
|
-
description:
|
41
|
+
description: An implementation of Matrix and Vector classes.
|
42
42
|
email:
|
43
|
-
-
|
43
|
+
- ruby-core@marc-andre.ca
|
44
44
|
executables: []
|
45
45
|
extensions: []
|
46
46
|
extra_rdoc_files: []
|
47
47
|
files:
|
48
|
-
- .gitignore
|
48
|
+
- ".gitignore"
|
49
|
+
- ".travis.yml"
|
49
50
|
- Gemfile
|
50
51
|
- LICENSE.txt
|
51
52
|
- README.md
|
52
53
|
- Rakefile
|
54
|
+
- bin/console
|
55
|
+
- bin/setup
|
53
56
|
- lib/matrix.rb
|
54
|
-
- lib/matrix/version.rb
|
55
57
|
- matrix.gemspec
|
56
|
-
homepage:
|
58
|
+
homepage: https://github.com/ruby/matrix
|
57
59
|
licenses:
|
58
|
-
-
|
60
|
+
- BSD-2-Clause
|
59
61
|
metadata: {}
|
60
62
|
post_install_message:
|
61
63
|
rdoc_options: []
|
@@ -63,18 +65,18 @@ require_paths:
|
|
63
65
|
- lib
|
64
66
|
required_ruby_version: !ruby/object:Gem::Requirement
|
65
67
|
requirements:
|
66
|
-
- -
|
68
|
+
- - ">="
|
67
69
|
- !ruby/object:Gem::Version
|
68
70
|
version: '0'
|
69
71
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
70
72
|
requirements:
|
71
|
-
- -
|
73
|
+
- - ">="
|
72
74
|
- !ruby/object:Gem::Version
|
73
75
|
version: '0'
|
74
76
|
requirements: []
|
75
77
|
rubyforge_project:
|
76
|
-
rubygems_version: 2.
|
78
|
+
rubygems_version: 2.7.6
|
77
79
|
signing_key:
|
78
80
|
specification_version: 4
|
79
|
-
summary:
|
81
|
+
summary: An implementation of Matrix and Vector classes.
|
80
82
|
test_files: []
|
data/lib/matrix/version.rb
DELETED