-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcmath.gemspec
More file actions
21 lines (18 loc) · 943 Bytes
/
cmath.gemspec
File metadata and controls
21 lines (18 loc) · 943 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# coding: utf-8
# frozen_string_literal: true
version = File.read("#{__dir__}/lib/cmath.rb")[/^\s*VERSION\s*=\s*"([^"]*)"/, 1]
Gem::Specification.new do |spec|
spec.name = "cmath"
spec.version = version
spec.authors = ["Tadayoshi Funaba"]
spec.email = ["tadf@dotrb.org"]
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 = %w[.document .rdoc_options LICENSE.txt README.md lib/cmath.rb]
spec.bindir = "exe"
spec.executables = []
spec.require_paths = ["lib"]
spec.required_ruby_version = ">= 2.5.0"
end