-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathmatrix.gemspec
More file actions
28 lines (23 loc) · 992 Bytes
/
matrix.gemspec
File metadata and controls
28 lines (23 loc) · 992 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# frozen_string_literal: true
begin
require_relative "lib/matrix/version"
rescue LoadError
# for Ruby core repository
require_relative "version"
end
Gem::Specification.new do |spec|
spec.name = "matrix"
spec.version = Matrix::VERSION
spec.authors = ["Marc-Andre Lafortune"]
spec.email = ["ruby-core@marc-andre.ca"]
spec.summary = %q{An implementation of Matrix and Vector classes.}
spec.description = %q{An implementation of Matrix and Vector classes.}
spec.homepage = "https://github.com/ruby/matrix"
spec.licenses = ["Ruby", "BSD-2-Clause"]
spec.required_ruby_version = ">= 2.5.0"
spec.metadata["changelog_uri"] = "#{spec.homepage}/releases"
spec.files = ["COPYING", "BSDL", "lib/matrix.rb", "lib/matrix/eigenvalue_decomposition.rb", "lib/matrix/lup_decomposition.rb", "lib/matrix/version.rb", "matrix.gemspec"]
spec.bindir = "exe"
spec.executables = []
spec.require_paths = ["lib"]
end