about summary refs log tree commit homepage
path: root/GIT-VERSION-GEN
diff options
context:
space:
mode:
Diffstat (limited to 'GIT-VERSION-GEN')
-rwxr-xr-xGIT-VERSION-GEN2
1 files changed, 1 insertions, 1 deletions
diff --git a/GIT-VERSION-GEN b/GIT-VERSION-GEN
index f690dcd..140828f 100755
--- a/GIT-VERSION-GEN
+++ b/GIT-VERSION-GEN
@@ -25,6 +25,6 @@ vn = vn.sub!(/\Av/, "")
 new_ruby_version = "#{CONSTANT} = '#{vn}'\n"
 cur_ruby_version = File.read(RVF) rescue nil
 if new_ruby_version != cur_ruby_version
-  File.open(RVF, "w") { |fp| fp.write(new_ruby_version) }
+  File.open(RVF, "w") { |fp| fp.write("# :enddoc:\n#{new_ruby_version}") }
 end
 puts vn if $0 == __FILE__