# XSD4R - Generating comment definition code # Copyright (C) 2004 NAKAMURA, Hiroshi . # This program is copyrighted free software by NAKAMURA, Hiroshi. You can # redistribute it and/or modify it under the same terms of Ruby's license; # either the dual license version in 2003, or any later version. require 'xsd/codegen/gensupport' module XSD module CodeGen module CommentDef include GenSupport attr_accessor :comment private def dump_comment if /^#/ =~ @comment format(@comment) else format(@comment).gsub(/^/, "# ") end end end end end 25c176980e'/> The Ruby Programming Language
summaryrefslogtreecommitdiff
path: root/tool/file2lastrev.rb
AgeCommit message (Expand)Author
2019-09-07Exit gently if no VCS found but --suppress_not_found is givenNobuyoshi Nakada
2019-09-07Removed no longer used variableNobuyoshi Nakada
2019-09-07Assign to vcs in new_vcs block not to use rescue resultNobuyoshi Nakada
2019-09-07Fixed wrong method at 71f7b0421acNobuyoshi Nakada
2019-09-07Refined file2lastrev.rb optionsNobuyoshi Nakada
2019-07-15Put vcs .rb to under the lib direcotory.Hiroshi SHIBATA
2019-07-07Git branch name can contain `#{}` tooNobuyoshi Nakada
2019-07-07Unescape #{} in the last commit titleNobuyoshi Nakada
2019-06-21Revert RUBY_RELEASE_DATE to date onlyNobuyoshi Nakada
2019-06-10Use UTC for file2lastrev timezoneTakashi Kokubun
2019-06-10Make file2lastrev timezone consistent with git logTakashi Kokubun
2019-06-08Make RUBY_RELEASE_DATE full on developmentNobuyoshi Nakada
2019-06-03Default GIT external encoding to UTF-8 🤷‍♂️Nobuyoshi Nakada
2019-05-31Add --limit option and default it to 20Nobuyoshi Nakada
2019-05-31Define RUBY_FULL_REVISIONNobuyoshi Nakada
2019-05-22Make RUBY_REVISION full lengthNobuyoshi Nakada
2019-05-22Fix revision nameNobuyoshi Nakada
2019-04-22Migrate RUBY_VERSION/RUBY_DESCRIPTION to GitTakashi Kokubun