* man/erb.1: Fix grammar and copyright dates
* man/goruby.1: ditto * man/irb.1: ditto * man/rake.1: ditto * man/ri.1: ditto * man/ruby.1: ditto Patch by Arthur Gunn [Fixes Github #210] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@37658 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
81d71fee9b
commit
5457b86aaf
11
ChangeLog
11
ChangeLog
@ -1,3 +1,14 @@
|
|||||||
|
Thu Nov 15 13:20:00 2012 Zachary Scott <zachary@zacharyscott.net>
|
||||||
|
|
||||||
|
* man/erb.1: Fix grammar and copyright dates
|
||||||
|
* man/goruby.1: ditto
|
||||||
|
* man/irb.1: ditto
|
||||||
|
* man/rake.1: ditto
|
||||||
|
* man/ri.1: ditto
|
||||||
|
* man/ruby.1: ditto
|
||||||
|
Patch by Arthur Gunn
|
||||||
|
[Fixes Github #210]
|
||||||
|
|
||||||
Thu Nov 15 11:35:00 2012 Zachary Scott <zachary@zacharyscott.net>
|
Thu Nov 15 11:35:00 2012 Zachary Scott <zachary@zacharyscott.net>
|
||||||
|
|
||||||
* man/ruby.1: Grammar edits for man page
|
* man/ruby.1: Grammar edits for man page
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
.\"Ruby is copyrighted by Yukihiro Matsumoto <matz@netlab.jp>.
|
.\"Ruby is copyrighted by Yukihiro Matsumoto <matz@netlab.jp>.
|
||||||
.Dd December 27, 2008
|
.Dd November 7, 2012
|
||||||
.Dt ERB(1) "" "Ruby Programmers Reference Guide"
|
.Dt ERB(1) "" "Ruby Programmers Reference Guide"
|
||||||
.Os UNIX
|
.Os UNIX
|
||||||
.Sh NAME
|
.Sh NAME
|
||||||
@ -22,8 +22,8 @@ is a command line front-end for
|
|||||||
.Li "ERB"
|
.Li "ERB"
|
||||||
library, which is an implementation of eRuby.
|
library, which is an implementation of eRuby.
|
||||||
.Pp
|
.Pp
|
||||||
eRuby provides an easy to use but powerful templating system for Ruby.
|
ERB provides an easy to use but powerful templating system for Ruby.
|
||||||
Using eRuby, actual Ruby code can be added to any plain text document for the
|
Using ERB, actual Ruby code can be added to any plain text document for the
|
||||||
purposes of generating document information details and/or flow control.
|
purposes of generating document information details and/or flow control.
|
||||||
.Pp
|
.Pp
|
||||||
.Nm
|
.Nm
|
||||||
@ -146,7 +146,7 @@ class.
|
|||||||
.Li Security vulnerabilities should be reported via an email to
|
.Li Security vulnerabilities should be reported via an email to
|
||||||
.Aq security@ruby-lang.org Ns
|
.Aq security@ruby-lang.org Ns
|
||||||
.Li .
|
.Li .
|
||||||
Reported problems will be published after fixed.
|
Reported problems will be published after being fixed.
|
||||||
.Pp
|
.Pp
|
||||||
.Li And you can report other bugs and feature requests via the
|
.Li And you can report other bugs and feature requests via the
|
||||||
Ruby Issue Tracking System (http://bugs.ruby-lang.org).
|
Ruby Issue Tracking System (http://bugs.ruby-lang.org).
|
||||||
|
10
man/goruby.1
10
man/goruby.1
@ -1,10 +1,10 @@
|
|||||||
.\"Ruby is copyrighted by Yukihiro Matsumoto <matz@netlab.jp>.
|
.\"Ruby is copyrighted by Yukihiro Matsumoto <matz@netlab.jp>.
|
||||||
.Dd October 25, 2008
|
.Dd November 7, 2012
|
||||||
.Dt GORUBY(1) "" "Ruby Programmers Reference Guide"
|
.Dt GORUBY(1) "" "Ruby Programmers Reference Guide"
|
||||||
.Os UNIX
|
.Os UNIX
|
||||||
.Sh NAME
|
.Sh NAME
|
||||||
.Nm goruby
|
.Nm goruby
|
||||||
.Nd Code-golfer's best friend
|
.Nd A code-golfer's best friend
|
||||||
.Sh SYNOPSIS
|
.Sh SYNOPSIS
|
||||||
.Nm
|
.Nm
|
||||||
.Op options ...
|
.Op options ...
|
||||||
@ -14,12 +14,12 @@
|
|||||||
.Sh DESCRIPTION
|
.Sh DESCRIPTION
|
||||||
.Sy goruby
|
.Sy goruby
|
||||||
is a kind of Ruby language processor
|
is a kind of Ruby language processor
|
||||||
which recognizes extremely shorten programs as bellow;
|
which recognizes extremely shortened programs as below:
|
||||||
.Bd -literal -offset indent
|
.Bd -literal -offset indent
|
||||||
rq"date";s De.td
|
rq"date";s De.td
|
||||||
.Ed
|
.Ed
|
||||||
.Pp
|
.Pp
|
||||||
This means
|
Which means:
|
||||||
.Bd -literal -offset indent
|
.Bd -literal -offset indent
|
||||||
require"date";puts Date.today
|
require"date";puts Date.today
|
||||||
.Ed
|
.Ed
|
||||||
@ -35,5 +35,5 @@ The stiff version of Ruby interpreter.
|
|||||||
.El
|
.El
|
||||||
.Pp
|
.Pp
|
||||||
.Sh AUTHORS
|
.Sh AUTHORS
|
||||||
Originally written by Nobuyoshi Nakada and developed by
|
Originally written by Nobuyoshi Nakada and developed by the
|
||||||
Ruby core team.
|
Ruby core team.
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
.\"Ruby is copyrighted by Yukihiro Matsumoto <matz@netlab.jp>.
|
.\"Ruby is copyrighted by Yukihiro Matsumoto <matz@netlab.jp>.
|
||||||
.Dd October 25, 2008
|
.Dd November 7, 2012
|
||||||
.Dt IRB(1) "" "Ruby Programmers Reference Guide"
|
.Dt IRB(1) "" "Ruby Programmers Reference Guide"
|
||||||
.Os UNIX
|
.Os UNIX
|
||||||
.Sh NAME
|
.Sh NAME
|
||||||
@ -27,7 +27,7 @@
|
|||||||
.Pp
|
.Pp
|
||||||
.Sh DESCRIPTION
|
.Sh DESCRIPTION
|
||||||
.Nm
|
.Nm
|
||||||
is the REPL(read-eval&print loop) environment for Ruby programs.
|
is the REPL(read-eval-print loop) environment for Ruby programs.
|
||||||
.Pp
|
.Pp
|
||||||
.Sh OPTIONS
|
.Sh OPTIONS
|
||||||
.Bl -tag -width "1234567890123" -compact
|
.Bl -tag -width "1234567890123" -compact
|
||||||
@ -162,7 +162,7 @@ Personal irb initialization.
|
|||||||
.Li Security vulnerabilities should be reported via an email to
|
.Li Security vulnerabilities should be reported via an email to
|
||||||
.Aq security@ruby-lang.org Ns
|
.Aq security@ruby-lang.org Ns
|
||||||
.Li .
|
.Li .
|
||||||
Reported problems will be published after fixed.
|
Reported problems will be published after being fixed.
|
||||||
.Pp
|
.Pp
|
||||||
.Li And you can report other bugs and feature requests via the
|
.Li And you can report other bugs and feature requests via the
|
||||||
Ruby Issue Tracking System (http://bugs.ruby-lang.org).
|
Ruby Issue Tracking System (http://bugs.ruby-lang.org).
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
.Dd November 30, 2008
|
.Dd November 7, 2012
|
||||||
.Dt RAKE(1) "" "Ruby Programmers Reference Guide"
|
.Dt RAKE(1) "" "Ruby Programmers Reference Guide"
|
||||||
.Os UNIX
|
.Os UNIX
|
||||||
.Sh NAME
|
.Sh NAME
|
||||||
|
6
man/ri.1
6
man/ri.1
@ -1,5 +1,5 @@
|
|||||||
.\"Ruby is copyrighted by Yukihiro Matsumoto <matz@netlab.jp>.
|
.\"Ruby is copyrighted by Yukihiro Matsumoto <matz@netlab.jp>.
|
||||||
.Dd December 29, 2008
|
.Dd November 7, 2012
|
||||||
.Dt RI(1) "" "Ruby Programmers Reference Guide"
|
.Dt RI(1) "" "Ruby Programmers Reference Guide"
|
||||||
.Os UNIX
|
.Os UNIX
|
||||||
.Sh NAME
|
.Sh NAME
|
||||||
@ -18,7 +18,7 @@
|
|||||||
.Op Ar target ...
|
.Op Ar target ...
|
||||||
.Sh DESCRIPTION
|
.Sh DESCRIPTION
|
||||||
.Nm
|
.Nm
|
||||||
is a CUI front end for the Ruby API reference.
|
is a CLI front end for the Ruby API reference.
|
||||||
You can search and read API reference for classes and methods with
|
You can search and read API reference for classes and methods with
|
||||||
.Nm .
|
.Nm .
|
||||||
.Pp
|
.Pp
|
||||||
@ -168,7 +168,7 @@ Searches user-wide documents here.
|
|||||||
.Li Security vulnerabilities should be reported via an email to
|
.Li Security vulnerabilities should be reported via an email to
|
||||||
.Aq security@ruby-lang.org Ns
|
.Aq security@ruby-lang.org Ns
|
||||||
.Li .
|
.Li .
|
||||||
Reported problems will be published after fixed.
|
Reported problems will be published after being fixed.
|
||||||
.Pp
|
.Pp
|
||||||
.Li And you can report other bugs and feature requests via the
|
.Li And you can report other bugs and feature requests via the
|
||||||
Ruby Issue Tracking System (http://bugs.ruby-lang.org).
|
Ruby Issue Tracking System (http://bugs.ruby-lang.org).
|
||||||
|
11
man/ruby.1
11
man/ruby.1
@ -1,5 +1,5 @@
|
|||||||
.\"Ruby is copyrighted by Yukihiro Matsumoto <matz@netlab.jp>.
|
.\"Ruby is copyrighted by Yukihiro Matsumoto <matz@netlab.jp>.
|
||||||
.Dd October 25, 2008
|
.Dd November 7, 2012
|
||||||
.Dt RUBY(1) "" "Ruby Programmers Reference Guide"
|
.Dt RUBY(1) "" "Ruby Programmers Reference Guide"
|
||||||
.\".Dt RUBY 1
|
.\".Dt RUBY 1
|
||||||
.Os UNIX
|
.Os UNIX
|
||||||
@ -32,7 +32,7 @@
|
|||||||
.Sh DESCRIPTION
|
.Sh DESCRIPTION
|
||||||
Ruby is an interpreted scripting language for quick and easy
|
Ruby is an interpreted scripting language for quick and easy
|
||||||
object-oriented programming. It has many features to process text
|
object-oriented programming. It has many features to process text
|
||||||
files and to do system management tasks (as in Perl). It is simple,
|
files and to do system management tasks (like in Perl). It is simple,
|
||||||
straight-forward, and extensible.
|
straight-forward, and extensible.
|
||||||
.Pp
|
.Pp
|
||||||
If you want a language for easy object-oriented programming, or you
|
If you want a language for easy object-oriented programming, or you
|
||||||
@ -123,9 +123,8 @@ on-the-fly.
|
|||||||
Libraries called "builtin libraries" and "standard libraries" are bundled with Ruby.
|
Libraries called "builtin libraries" and "standard libraries" are bundled with Ruby.
|
||||||
And you can obtain more libraries via the package management system called `RubyGems'.
|
And you can obtain more libraries via the package management system called `RubyGems'.
|
||||||
.Pp
|
.Pp
|
||||||
Moreover there are thousands of Ruby projects in Rubyforge
|
Moreover there are thousands of Ruby projects on GitHub
|
||||||
.Pf ( "http://www.rubyforge.org" ) and RAA
|
.Pf <\fBhttps://github.com/languages/Ruby\fR> Ns .
|
||||||
.Pf ( "http://raa.ruby-lang.org" ) Ns .
|
|
||||||
.El
|
.El
|
||||||
.Pp
|
.Pp
|
||||||
.Sh OPTIONS
|
.Sh OPTIONS
|
||||||
@ -490,6 +489,8 @@ The official web site.
|
|||||||
hosting many open source ruby projects.
|
hosting many open source ruby projects.
|
||||||
.It http://raa.ruby-lang.org
|
.It http://raa.ruby-lang.org
|
||||||
Ruby Application Archive.
|
Ruby Application Archive.
|
||||||
|
.It https://github.com/languages/Ruby
|
||||||
|
Ruby projects on Github.
|
||||||
.El
|
.El
|
||||||
.Pp
|
.Pp
|
||||||
.Sh REPORTING BUGS
|
.Sh REPORTING BUGS
|
||||||
|
Loading…
x
Reference in New Issue
Block a user