[前][次][番号順一覧][スレッド一覧]

ruby-changes:49293

From: hsbt <ko1@a...>
Date: Fri, 22 Dec 2017 17:00:15 +0900 (JST)
Subject: [ruby-changes:49293] hsbt:r61410 (trunk): Bump up fileutils-1.0.2

hsbt	2017-12-22 17:00:10 +0900 (Fri, 22 Dec 2017)

  New Revision: 61410

  https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=61410

  Log:
    Bump up fileutils-1.0.2
    
      Added `FileUtils::VERSION` const variable.

  Modified files:
    trunk/lib/fileutils.gemspec
    trunk/lib/fileutils.rb
Index: lib/fileutils.gemspec
===================================================================
--- lib/fileutils.gemspec	(revision 61409)
+++ lib/fileutils.gemspec	(revision 61410)
@@ -1,8 +1,8 @@ https://github.com/ruby/ruby/blob/trunk/lib/fileutils.gemspec#L1
 # frozen_string_literal: true
 Gem::Specification.new do |s|
   s.name = "fileutils"
-  s.version = '1.0.1'
-  s.date = '2017-12-12'
+  s.version = '1.0.2'
+  s.date = '2017-12-22'
   s.summary = "Several file utility methods for copying, moving, removing, etc."
   s.description = "Several file utility methods for copying, moving, removing, etc."
 
Index: lib/fileutils.rb
===================================================================
--- lib/fileutils.rb	(revision 61409)
+++ lib/fileutils.rb	(revision 61410)
@@ -87,6 +87,8 @@ https://github.com/ruby/ruby/blob/trunk/lib/fileutils.rb#L87
 
 module FileUtils
 
+  VERSION = "1.0.2"
+
   def self.private_module_function(name)   #:nodoc:
     module_function name
     private_class_method name

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]