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-14 06:12:52 -05:00
|
|
|
|
2017-09-13 22:01:36 -04:00
|
|
|
Gem::Specification.new do |spec|
|
|
|
|
spec.name = "scanf"
|
2017-12-11 03:18:01 -05:00
|
|
|
spec.version = "1.0.0"
|
|
|
|
spec.date = '2017-12-11'
|
2017-09-13 22:01:36 -04:00
|
|
|
spec.authors = ["David Alan Black"]
|
|
|
|
spec.email = ['dblack@superlink.net']
|
2017-02-14 06:12:52 -05:00
|
|
|
|
2017-09-13 22:01:36 -04:00
|
|
|
spec.summary = "scanf is an implementation of the C function scanf(3)."
|
|
|
|
spec.description = "scanf is an implementation of the C function scanf(3)."
|
|
|
|
spec.homepage = "https://github.com/ruby/scanf"
|
|
|
|
spec.license = "BSD-2-Clause"
|
|
|
|
|
|
|
|
spec.files = ["lib/scanf.rb"]
|
|
|
|
spec.bindir = "exe"
|
|
|
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
|
|
|
spec.require_paths = ["lib"]
|
2017-12-11 03:18:01 -05:00
|
|
|
spec.required_ruby_version = ">= 2.3.0"
|
2017-09-13 22:01:36 -04:00
|
|
|
|
|
|
|
spec.add_development_dependency "bundler", "~> 1.14"
|
|
|
|
spec.add_development_dependency "rake", "~> 10.0"
|
|
|
|
spec.add_development_dependency "test-unit"
|
2017-02-14 06:12:52 -05:00
|
|
|
end
|