ruby-changes:45477
From: hsbt <ko1@a...>
Date: Mon, 6 Feb 2017 18:51:27 +0900 (JST)
Subject: [ruby-changes:45477] hsbt:r57550 (trunk): Added initial gemspec for FileUtils module.
hsbt 2017-02-06 18:51:17 +0900 (Mon, 06 Feb 2017) New Revision: 57550 https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=57550 Log: Added initial gemspec for FileUtils module. [Feature #13197] Added files: trunk/lib/fileutils.gemspec Index: lib/fileutils.gemspec =================================================================== --- lib/fileutils.gemspec (revision 0) +++ lib/fileutils.gemspec (revision 57550) @@ -0,0 +1,16 @@ https://github.com/ruby/ruby/blob/trunk/lib/fileutils.gemspec#L1 +Gem::Specification.new do |s| + s.name = "fileutils" + s.version = '0.0.1' + 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} + s.files = %w{fileutils.rb} + s.required_ruby_version = ">= 2.5.0" + + s.authors = ["Minero Aoki"] + s.email = [nil] + s.homepage = "https://www.ruby-lang.org" + s.license = "BSD-2-Clause" +end -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/