[前][次][番号順一覧][スレッド一覧]

ruby-changes:45427

From: hsbt <ko1@a...>
Date: Thu, 2 Feb 2017 16:49:30 +0900 (JST)
Subject: [ruby-changes:45427] hsbt:r57500 (trunk): Added initial gemspec for CMath module.

hsbt	2017-02-02 16:49:19 +0900 (Thu, 02 Feb 2017)

  New Revision: 57500

  https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=57500

  Log:
    Added initial gemspec for CMath module.
    
      [Feature #13182]

  Added files:
    trunk/lib/cmath.gemspec
Index: lib/cmath.gemspec
===================================================================
--- lib/cmath.gemspec	(revision 0)
+++ lib/cmath.gemspec	(revision 57500)
@@ -0,0 +1,16 @@ https://github.com/ruby/ruby/blob/trunk/lib/cmath.gemspec#L1
+Gem::Specification.new do |s|
+  s.name = "cmath"
+  s.version = '0.0.1'
+  s.date = '2017-02-02'
+  s.summary = "Provides Trigonometric and Transcendental functions for complex numbers"
+  s.description = "CMath is a library that provides trigonometric and transcendental functions for complex numbers. The functions in this module accept integers, floating-point numbers or complex numbers as arguments."
+
+  s.require_path = %w{lib}
+  s.files = %w{cmath.rb}
+  s.required_ruby_version = ">= 2.5.0"
+
+  s.authors = ["Tadayoshi Funaba"]
+  s.email = [nil]
+  s.homepage = "https://www.ruby-lang.org"
+  s.license = "BSD-2-Clause"
+end

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]