[前][次][番号順一覧][スレッド一覧]

ruby-changes:41350

From: nobu <ko1@a...>
Date: Mon, 4 Jan 2016 00:24:04 +0900 (JST)
Subject: [ruby-changes:41350] nobu:r53422 (trunk): contributing.rdoc: update [ci skip]

nobu	2016-01-04 00:24:10 +0900 (Mon, 04 Jan 2016)

  New Revision: 53422

  https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=53422

  Log:
    contributing.rdoc: update [ci skip]
    
    * doc/contributing.rdoc: mention some make targets, check, up, and
      love.

  Modified files:
    trunk/doc/contributing.rdoc
Index: doc/contributing.rdoc
===================================================================
--- doc/contributing.rdoc	(revision 53421)
+++ doc/contributing.rdoc	(revision 53422)
@@ -296,7 +296,7 @@ Now let's build CRuby: https://github.com/ruby/ruby/blob/trunk/doc/contributing.rdoc#L296
     mkdir build && cd build # its good practice to build outside of source dir
     mkdir ~/.rubies # we will install to .rubies/ruby-trunk in our home dir
     ../configure --prefix="${HOME}/.rubies/ruby-trunk"
-    make && make install
+    make up && make install
 
 After adding Ruby to your PATH, you should be ready to run the test suite:
 
@@ -311,12 +311,24 @@ This is also how you can run a specific https://github.com/ruby/ruby/blob/trunk/doc/contributing.rdoc#L311
 
     make test-all TESTS=drb/test_drb.rb
 
+You can run +test+ and +test-all+ at once by +check+ .
+
+    make check
+
 For older versions of Ruby you will need to run the build setup again after
 checking out the associated branch in git, for example if you wanted to
 checkout 1.9.3:
 
     git clone git://github.com/ruby/ruby.git --branch ruby_1_9_3
 
+Once you checked out the source code, you can update the local copy by:
+
+    make up
+
+Or, update, build, install and check, by just:
+
+    make love
+
 == Contributing Documentation
 
 If you're interested in contributing documentation directly to CRuby there is

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]