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-06 04:51:17 -05:00
|
|
|
Gem::Specification.new do |s|
|
|
|
|
s.name = "fileutils"
|
2017-05-19 19:39:58 -04:00
|
|
|
s.version = '0.7.2'
|
2017-02-06 04:51:17 -05:00
|
|
|
s.date = '2017-02-06'
|
|
|
|
s.summary = "Several file utility methods for copying, moving, removing, etc."
|
|
|
|
s.description = "Several file utility methods for copying, moving, removing, etc."
|
|
|
|
|
|
|
|
s.require_path = %w{lib}
|
2017-04-12 04:12:53 -04:00
|
|
|
s.files = [".gitignore", ".travis.yml", "Gemfile", "LICENSE.txt", "README.md", "Rakefile", "bin/console", "bin/setup", "fileutils.gemspec", "lib/fileutils.rb"]
|
2017-02-07 02:14:22 -05:00
|
|
|
s.required_ruby_version = ">= 2.5.0dev"
|
2017-02-06 04:51:17 -05:00
|
|
|
|
|
|
|
s.authors = ["Minero Aoki"]
|
|
|
|
s.email = [nil]
|
2017-05-19 19:39:58 -04:00
|
|
|
s.homepage = "https://github.com/ruby/fileutils"
|
2017-02-06 04:51:17 -05:00
|
|
|
s.license = "BSD-2-Clause"
|
2017-04-12 04:12:53 -04:00
|
|
|
|
|
|
|
s.add_development_dependency 'rake'
|
2017-02-06 04:51:17 -05:00
|
|
|
end
|