ruby-changes:51395
From: hsbt <ko1@a...>
Date: Thu, 7 Jun 2018 21:10:29 +0900 (JST)
Subject: [ruby-changes:51395] hsbt:r63601 (trunk): Promote Matrix to default gems.
hsbt 2018-06-07 21:10:24 +0900 (Thu, 07 Jun 2018) New Revision: 63601 https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=63601 Log: Promote Matrix to default gems. The upstream repository is https://github.com/ruby/matrix. Added files: trunk/lib/matrix/matrix.gemspec Modified files: trunk/doc/maintainers.rdoc trunk/doc/standard_library.rdoc Index: doc/standard_library.rdoc =================================================================== --- doc/standard_library.rdoc (revision 63600) +++ doc/standard_library.rdoc (revision 63601) @@ -25,7 +25,6 @@ GetoptLong:: Parse command line options https://github.com/ruby/ruby/blob/trunk/doc/standard_library.rdoc#L25 IPAddr:: Provides methods to manipulate IPv4 and IPv6 IP addresses IRB:: Interactive Ruby command-line tool for REPL (Read Eval Print Loop) MakeMakefile:: Module used to generate a Makefile for C extensions -Matrix:: Represents a mathematical matrix. Monitor:: Provides an object or module to use safely by more than one thread Mutex_m:: Mixin to extend objects to be handled like a Mutex Net::FTP:: Support for the File Transfer Protocol Index: doc/maintainers.rdoc =================================================================== --- doc/maintainers.rdoc (revision 63600) +++ doc/maintainers.rdoc (revision 63601) @@ -68,8 +68,6 @@ Zachary Scott (zzak) https://github.com/ruby/ruby/blob/trunk/doc/maintainers.rdoc#L68 Akinori MUSHA (knu) [lib/irb.rb, lib/irb/*] Keiju ISHITSUKA (keiju) -[lib/matrix.rb] - Marc-Andre Lafortune (marcandre) [lib/mkmf.rb] _unmaintained_ [lib/monitor.rb] @@ -209,6 +207,8 @@ Zachary Scott (zzak) https://github.com/ruby/ruby/blob/trunk/doc/maintainers.rdoc#L207 https://github.com/ruby/fileutils [lib/logger.rb] Naotoshi Seo (sonots) +[lib/matrix.rb] + Marc-Andre Lafortune (marcandre) [lib/ostruct.rb] Marc-Andre Lafortune (marcandre) [lib/prime.rb] Index: lib/matrix/matrix.gemspec =================================================================== --- lib/matrix/matrix.gemspec (nonexistent) +++ lib/matrix/matrix.gemspec (revision 63601) @@ -0,0 +1,21 @@ https://github.com/ruby/ruby/blob/trunk/lib/matrix/matrix.gemspec#L1 +# frozen_string_literal: true + +Gem::Specification.new do |spec| + spec.name = "matrix" + spec.version = "0.1.0" + spec.authors = ["Marc-Andre Lafortune"] + spec.email = ["ruby-core@m..."] + + 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.license = "BSD-2-Clause" + + spec.files = [".gitignore", ".travis.yml", "Gemfile", "LICENSE.txt", "README.md", "Rakefile", "bin/console", "bin/setup", "lib/matrix.rb", "matrix.gemspec"] + spec.bindir = "exe" + spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } + spec.require_paths = ["lib"] + + spec.add_development_dependency "bundler" + spec.add_development_dependency "rake" +end -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/