File: cmath.gemspec

package info (click to toggle)
ruby-cmath 1.0.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 252 kB
  • sloc: ruby: 3,415; sh: 4; makefile: 4
file content (24 lines) | stat: -rw-r--r-- 972 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# coding: utf-8
# frozen_string_literal: true

Gem::Specification.new do |spec|
  spec.name          = "cmath"
  spec.version       = "1.0.0"
  spec.date          = '2017-12-11'
  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