aboutsummaryrefslogtreecommitdiffstats
path: root/lib/cmath.gemspec
diff options
context:
space:
mode:
authorHiroshi SHIBATA <hsbt@ruby-lang.org>2019-09-20 12:12:37 +0900
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2019-09-20 12:31:37 +0900
commita3b85016149f4f73f08c739626b2f02badd5ad17 (patch)
tree598bd558e1c7a70f29fb8ecfeb4ef0a79f8b99f9 /lib/cmath.gemspec
parent422ae594d97e803e829e65716e85483f5942e0c3 (diff)
downloadruby-a3b85016149f4f73f08c739626b2f02badd5ad17.tar.gz
Removed CMath from the ruby repository.
Diffstat (limited to 'lib/cmath.gemspec')
-rw-r--r--lib/cmath.gemspec23
1 files changed, 0 insertions, 23 deletions
diff --git a/lib/cmath.gemspec b/lib/cmath.gemspec
deleted file mode 100644
index 953cfe04c4..0000000000
--- a/lib/cmath.gemspec
+++ /dev/null
@@ -1,23 +0,0 @@
-# coding: utf-8
-# frozen_string_literal: true
-
-Gem::Specification.new do |spec|
- spec.name = "cmath"
- spec.version = "1.0.0"
- spec.authors = ["Tadayoshi Funaba"]
- spec.email = [nil]
-
- spec.summary = "Provides Trigonometric and Transcendental functions for complex numbers"
- spec.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."
- spec.homepage = "https://github.com/ruby/cmath"
- spec.license = "BSD-2-Clause"
-
- spec.files = "lib/cmath.rb"
- spec.bindir = "exe"
- spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
- spec.require_paths = ["lib"]
- spec.required_ruby_version = ">= 2.3.0"
-
- spec.add_development_dependency "bundler"
- spec.add_development_dependency "rake"
-end