diff options
Diffstat (limited to 'tool')
-rwxr-xr-x | tool/rbinstall.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tool/rbinstall.rb b/tool/rbinstall.rb index 29866dfffd..b47b6e15fe 100755 --- a/tool/rbinstall.rb +++ b/tool/rbinstall.rb @@ -560,6 +560,7 @@ module Gem super yield(self) if defined?(yield) self.executables ||= [] + self.date ||= RUBY_RELEASE_DATE end def self.load(path) @@ -573,6 +574,7 @@ module Gem Gem::Specification.new do |s| s.name = #{name.dump} s.version = #{version.dump} + s.date = #{date.dump} s.summary = #{summary.dump} s.description = #{description.dump} s.homepage = #{homepage.dump} |