@@ -16,9 +16,9 @@ Install perl (ex: 5.18.2) (and cpanm/carton/start_server)
1616
1717 xbuild/perl-install 5.18.2 ~/local/perl-5.18
1818
19- Install ruby (ex: 2.1.1 ) (and bundler)
19+ Install ruby (ex: 2.6.0 ) (and bundler)
2020
21- xbuild/ruby-install 2.1.1 ~/local/ruby-2.1
21+ xbuild/ruby-install 2.6.0 ~/local/ruby-2.6
2222
2323Install node.js (ex: v0.10.26)
2424
@@ -42,7 +42,7 @@ To update minor version, overwrite simply.
4242
4343 xbuild/node-install v0.10.25 ~/local/node-v0.10
4444 xbuild/node-install v0.10.26 ~/local/node-v0.10
45-
45+
4646 local/node-v0.10/bin/node -v #=> v0.10.26
4747 #
4848 # same for other languages as node.
@@ -51,15 +51,15 @@ Or, you can use `install` command simply.
5151
5252 # xbuild/install LANG VERSION PATH [OPTIONS]
5353 #
54- xbuild/install ruby 2.1.1 ~/local/ruby-2.1
54+ xbuild/install ruby 2.6.0 ~/local/ruby-2.6
5555
5656### Replayable installation
5757
5858` xbuild ` checks specified install path before actual installation, and skips it if specified version runtime already exists.
5959
6060For force re-install, use ` -f ` option.
6161
62- xbuild/ruby-install -f 2.1.1 ~/local/ruby-2.1
62+ xbuild/ruby-install -f 2.6.0 ~/local/ruby-2.6
6363
6464## How to use
6565
@@ -69,19 +69,19 @@ Include installed `bin/` to PATH:
6969 export PATH=$HOME/local/perl-5.18/bin:$PATH
7070 cpanm -Lextlib -n --installdeps .
7171 # or carton install (or ...)
72-
72+
7373 # ruby
74- export PATH=$HOME/local/ruby-2.1 /bin:$PATH
74+ export PATH=$HOME/local/ruby-2.6 /bin:$PATH
7575 bundle install --path vendor
76-
76+
7777 # node
7878 export PATH=$HOME/local/node-v0.10/bin:$PATH
7979 npm install
80-
80+
8181 # php
8282 export PATH=$HOME/local/php-5.5.10/bin:$PATH
8383 pear install
84-
84+
8585 # python
8686 export PATH=$HOME/local/python-2.7.6/bin:$PATH
8787 pip install -r requirements.txt
@@ -97,20 +97,20 @@ You should be install Docker.
9797
9898 $ docker build -t xbuild-try .
9999 $ docker run --rm -i -t xbuild-try /bin/bash
100- in docker > $ xbuild-install ruby 2.1.1 /usr/local/ruby-2.1.1
100+ in docker > $ xbuild-install ruby 2.6.0 /usr/local/ruby-2.6.0
101101
102102## Contributors
103103
104104* kentaro for PHP
105105 * https://github.com/kentaro
106106 * @kentaro on twitter
107107* yyuu for Python
108- * https://github.com/yyuu
108+ * https://github.com/yyuu
109109 * @_ yyuu on twitter
110110
111111## Copyright
112112
113- * Copyright (c) 2013 - TAGOMORI Satoshi (tagomoris)
113+ * Copyright (c) 2.63 - TAGOMORI Satoshi (tagomoris)
114114 * and contributors
115115* License
116116 * Apache License, Version 2.0 (see LICENSE)
0 commit comments