aboutsummaryrefslogtreecommitdiffstats
path: root/tool/rbinstall.rb
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-11-09 13:35:39 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-11-09 13:35:39 +0000
commit1ce82d510c60134cc8e2c53b41d15e19beeeced0 (patch)
tree52c06d5c463a9e25df4eaaf6834cffc8b0a31a24 /tool/rbinstall.rb
parentab60cf1a99607a0f679ed4aa44ad40d6af8fab19 (diff)
downloadruby-1ce82d510c60134cc8e2c53b41d15e19beeeced0.tar.gz
rbinstall.rb: spec date from VCS
* tool/rbinstall.rb (Gem::Specification.load): obtain spec date from VCS for the case using git, RUBY_RELEASE_DATE is the last resort. probably fixes [Bug #9085]. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@43617 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'tool/rbinstall.rb')
-rwxr-xr-xtool/rbinstall.rb18
1 files changed, 16 insertions, 2 deletions
diff --git a/tool/rbinstall.rb b/tool/rbinstall.rb
index 13bf274d88..1f2a6aebc0 100755
--- a/tool/rbinstall.rb
+++ b/tool/rbinstall.rb
@@ -19,10 +19,17 @@ require 'optparse'
require 'optparse/shellwords'
require 'ostruct'
require 'rubygems'
+require_relative 'vcs'
STDOUT.sync = true
File.umask(0)
+begin
+ $vcs = VCS.detect(File.expand_path('../..', __FILE__))
+rescue VCS::NotFoundError
+ $vcs = nil
+end
+
def parse_args(argv = ARGV)
$mantype = 'doc'
$destdir = nil
@@ -560,13 +567,20 @@ module Gem
super
yield(self) if defined?(yield)
self.executables ||= []
- self.date ||= RUBY_RELEASE_DATE
end
def self.load(path)
src = File.open(path, "rb") {|f| f.read}
src.sub!(/\A#.*/, '')
- eval(src, nil, path)
+ spec = eval(src, nil, path)
+ spec.date ||= last_date(path) || RUBY_RELEASE_DATE
+ spec
+ end
+
+ def self.last_date(path)
+ return unless $vcs
+ return unless time = $vcs.get_revisions(path)[2]
+ time.strftime("%Y-%m-%d")
end
def to_ruby