2017-09-13 22:01:36 -04:00
# coding: utf-8
Make string literal to frozen object on gemspec of defulte gems.
Added following gemspecs.
* extensions: date, dbm, etc, fiddle, gdbm, sdbm, stringio, strscan, zlib
* pure ruby libraries: cmath, csv, fileutils, scanf, webrick
psych and rdoc is out of scope of this commit. I will merge after
upstream was change to `frozen_string_literal: true`.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@59115 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2017-06-19 09:03:06 -04:00
# frozen_string_literal: true
2017-02-02 02:49:19 -05:00
2017-09-13 22:01:36 -04:00
Gem :: Specification . new do | spec |
spec . name = " cmath "
2017-12-10 22:27:47 -05:00
spec . version = " 1.0.0 "
spec . date = '2017-12-11'
2017-09-13 22:01:36 -04:00
spec . authors = [ " Tadayoshi Funaba " ]
spec . email = [ nil ]
2017-02-02 02:49:19 -05:00
2017-09-13 22:01:36 -04:00
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 " ]
2017-12-10 22:27:47 -05:00
spec . required_ruby_version = " >= 2.3.0 "
2017-09-13 22:01:36 -04:00
spec . add_development_dependency " bundler "
spec . add_development_dependency " rake "
2017-02-02 02:49:19 -05:00
end