summaryrefslogtreecommitdiff
path: root/lib/rdoc
diff options
context:
space:
mode:
authordave <dave@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-03-25 14:19:22 +0000
committerdave <dave@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-03-25 14:19:22 +0000
commit4efc91fbfa9462787f1736b62564b7aca255543b (patch)
tree2ec3861ac48a711a589462f2be2aee7e93832014 /lib/rdoc
parentf8271aa3abfdf6617c595c649634aeead03ea9d0 (diff)
Add --version option to ri
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@6028 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/rdoc')
-rw-r--r--lib/rdoc/ri/ri_options.rb18
1 files changed, 16 insertions, 2 deletions
diff --git a/lib/rdoc/ri/ri_options.rb b/lib/rdoc/ri/ri_options.rb
index d9ece2067c..b9ee21f073 100644
--- a/lib/rdoc/ri/ri_options.rb
+++ b/lib/rdoc/ri/ri_options.rb
@@ -5,7 +5,8 @@ module RI
require 'rdoc/ri/ri_display'
- VERSION_STRING = "alpha 0.1"
+ VERSION_STRING = "beta1"
+ CVS_ID = "$Id$";
class Options
@@ -64,7 +65,11 @@ module RI
],
[ "--width", "-w", "output width",
- "set the width of the output" ],
+ "Set the width of the output" ],
+
+ [ "--version", "-v", nil,
+ "Display the version of ri"
+ ],
]
@@ -163,6 +168,14 @@ module RI
end
end
+ # Show the version and exit
+ def show_version
+ cvs_info = CVS_ID.split
+ puts "ri #{VERSION_STRING} (#{cvs_info[2]} #{cvs_info[3]})"
+ exit(0)
+ end
+
+
# Parse command line options.
def parse
@@ -186,6 +199,7 @@ module RI
go.each do |opt, arg|
case opt
when "--help" then OptionList.usage
+ when "--version" then show_version
when "--list-names" then @list_names = true
when "--no-pager" then @use_stdout = true
when "--classes" then @list_classes = true