From 66596daf05e2a90d60c0723a96d092ae1b03ca7b Mon Sep 17 00:00:00 2001 From: Fatih Sarhan Date: Thu, 27 Dec 2018 14:19:41 +0000 Subject: Fix #55740: Use --no-document option instead of deprecated options in simple .gitlab-ci.yml file --- doc/ci/quick_start/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doc') diff --git a/doc/ci/quick_start/README.md b/doc/ci/quick_start/README.md index bdc593493ea..1ec8a8c89c9 100644 --- a/doc/ci/quick_start/README.md +++ b/doc/ci/quick_start/README.md @@ -77,7 +77,7 @@ before_script: - apt-get update -qq && apt-get install -y -qq sqlite3 libsqlite3-dev nodejs - ruby -v - which ruby - - gem install bundler --no-ri --no-rdoc + - gem install bundler --no-document - bundle install --jobs $(nproc) "${FLAGS[@]}" rspec: -- cgit v1.2.3 From e25991811e5edb8dfdb9b521211c529e1febada2 Mon Sep 17 00:00:00 2001 From: Fatih Sarhan Date: Mon, 31 Dec 2018 21:56:17 +0000 Subject: Update gitlab_ci_ymls.md --- doc/api/templates/gitlab_ci_ymls.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doc') diff --git a/doc/api/templates/gitlab_ci_ymls.md b/doc/api/templates/gitlab_ci_ymls.md index cecfc8cd9b9..8481323994b 100644 --- a/doc/api/templates/gitlab_ci_ymls.md +++ b/doc/api/templates/gitlab_ci_ymls.md @@ -120,6 +120,6 @@ Example response: ```json { "name": "Ruby", - "content": "# This file is a template, and might need editing before it works on your project.\n# Official language image. Look for the different tagged releases at:\n# https://hub.docker.com/r/library/ruby/tags/\nimage: \"ruby:2.3\"\n\n# Pick zero or more services to be used on all builds.\n# Only needed when using a docker container to run your tests in.\n# Check out: http://docs.gitlab.com/ce/ci/docker/using_docker_images.html#what-is-service\nservices:\n - mysql:latest\n - redis:latest\n - postgres:latest\n\nvariables:\n POSTGRES_DB: database_name\n\n# Cache gems in between builds\ncache:\n paths:\n - vendor/ruby\n\n# This is a basic example for a gem or script which doesn't use\n# services such as redis or postgres\nbefore_script:\n - ruby -v # Print out ruby version for debugging\n # Uncomment next line if your rails app needs a JS runtime:\n # - apt-get update -q && apt-get install nodejs -yqq\n - gem install bundler --no-ri --no-rdoc # Bundler is not installed with the image\n - bundle install -j $(nproc) --path vendor # Install dependencies into ./vendor/ruby\n\n# Optional - Delete if not using `rubocop`\nrubocop:\n script:\n - rubocop\n\nrspec:\n script:\n - rspec spec\n\nrails:\n variables:\n DATABASE_URL: \"postgresql://postgres:postgres@postgres:5432/$POSTGRES_DB\"\n script:\n - bundle exec rake db:migrate\n - bundle exec rake db:seed\n - bundle exec rake test\n" + "content": "# This file is a template, and might need editing before it works on your project.\n# Official language image. Look for the different tagged releases at:\n# https://hub.docker.com/r/library/ruby/tags/\nimage: \"ruby:2.3\"\n\n# Pick zero or more services to be used on all builds.\n# Only needed when using a docker container to run your tests in.\n# Check out: http://docs.gitlab.com/ce/ci/docker/using_docker_images.html#what-is-service\nservices:\n - mysql:latest\n - redis:latest\n - postgres:latest\n\nvariables:\n POSTGRES_DB: database_name\n\n# Cache gems in between builds\ncache:\n paths:\n - vendor/ruby\n\n# This is a basic example for a gem or script which doesn't use\n# services such as redis or postgres\nbefore_script:\n - ruby -v # Print out ruby version for debugging\n # Uncomment next line if your rails app needs a JS runtime:\n # - apt-get update -q && apt-get install nodejs -yqq\n - gem install bundler --no-document # Bundler is not installed with the image\n - bundle install -j $(nproc) --path vendor # Install dependencies into ./vendor/ruby\n\n# Optional - Delete if not using `rubocop`\nrubocop:\n script:\n - rubocop\n\nrspec:\n script:\n - rspec spec\n\nrails:\n variables:\n DATABASE_URL: \"postgresql://postgres:postgres@postgres:5432/$POSTGRES_DB\"\n script:\n - bundle exec rake db:migrate\n - bundle exec rake db:seed\n - bundle exec rake test\n" } ``` -- cgit v1.2.3 From 10879664ccce11b4f4fdde6e734cf0c99af12a66 Mon Sep 17 00:00:00 2001 From: Fatih Sarhan Date: Mon, 31 Dec 2018 21:58:07 +0000 Subject: Update doc/ci/caching/index.md file --- doc/ci/caching/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doc') diff --git a/doc/ci/caching/index.md b/doc/ci/caching/index.md index f93ccc4e3c1..4626ccfe93d 100644 --- a/doc/ci/caching/index.md +++ b/doc/ci/caching/index.md @@ -300,7 +300,7 @@ cache: before_script: - ruby -v # Print out ruby version for debugging - - gem install bundler --no-ri --no-rdoc # Bundler is not installed with the image + - gem install bundler --no-document # Bundler is not installed with the image - bundle install -j $(nproc) --path vendor # Install dependencies into ./vendor/ruby rspec: -- cgit v1.2.3 From e73af7252a00f5a9306fa202f5db350503fbe3fd Mon Sep 17 00:00:00 2001 From: Fatih Sarhan Date: Mon, 31 Dec 2018 21:59:46 +0000 Subject: Update doc/ci/yaml/README.md --- doc/ci/yaml/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doc') diff --git a/doc/ci/yaml/README.md b/doc/ci/yaml/README.md index 440254e58bd..c74f5e5b3f9 100644 --- a/doc/ci/yaml/README.md +++ b/doc/ci/yaml/README.md @@ -1660,7 +1660,7 @@ automatically fetched and evaluated along with the content of `.gitlab-ci.yml`: before_script: - apt-get update -qq && apt-get install -y -qq sqlite3 libsqlite3-dev nodejs - - gem install bundler --no-ri --no-rdoc + - gem install bundler --no-document - bundle install --jobs $(nproc) "${FLAGS[@]}" ``` -- cgit v1.2.3 From 06cf5fbe40e69c610bd2e2b6422d1ba20ead24db Mon Sep 17 00:00:00 2001 From: Fatih Sarhan Date: Mon, 31 Dec 2018 22:00:27 +0000 Subject: Update doc/install/installation.md --- doc/install/installation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doc') diff --git a/doc/install/installation.md b/doc/install/installation.md index d041bfa863a..b7781dea384 100644 --- a/doc/install/installation.md +++ b/doc/install/installation.md @@ -142,7 +142,7 @@ Download Ruby and compile it: Then install the Bundler Gem: - sudo gem install bundler --no-ri --no-rdoc + sudo gem install bundler --no-document ## 3. Go -- cgit v1.2.3 From df6ef1375ac6ba3371a65aad6e44d0dda27bb95b Mon Sep 17 00:00:00 2001 From: Fatih Sarhan Date: Mon, 31 Dec 2018 22:14:19 +0000 Subject: Update doc/update/10.1-to-10.2.md --- doc/update/10.1-to-10.2.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doc') diff --git a/doc/update/10.1-to-10.2.md b/doc/update/10.1-to-10.2.md index 632e8befa74..20895a05567 100644 --- a/doc/update/10.1-to-10.2.md +++ b/doc/update/10.1-to-10.2.md @@ -49,7 +49,7 @@ sudo make install Install Bundler: ```bash -sudo gem install bundler --no-ri --no-rdoc +sudo gem install bundler --no-document ``` ### 4. Update Node -- cgit v1.2.3 From ba11da34ffaf91427031eda06b3a64447a03d21f Mon Sep 17 00:00:00 2001 From: Fatih Sarhan Date: Mon, 31 Dec 2018 22:15:05 +0000 Subject: Update doc/update/10.0-to-10.1.md --- doc/update/10.0-to-10.1.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doc') diff --git a/doc/update/10.0-to-10.1.md b/doc/update/10.0-to-10.1.md index af815d26a74..10cf02a984f 100644 --- a/doc/update/10.0-to-10.1.md +++ b/doc/update/10.0-to-10.1.md @@ -49,7 +49,7 @@ sudo make install Install Bundler: ```bash -sudo gem install bundler --no-ri --no-rdoc +sudo gem install bundler --no-document ``` ### 4. Update Node -- cgit v1.2.3 From 412e0dec70b39d3b0c7dd7e6c0c783071a623fdd Mon Sep 17 00:00:00 2001 From: Fatih Sarhan Date: Mon, 31 Dec 2018 22:15:26 +0000 Subject: Update doc/update/10.2-to-10.3.md --- doc/update/10.2-to-10.3.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doc') diff --git a/doc/update/10.2-to-10.3.md b/doc/update/10.2-to-10.3.md index f8fe4a4b6bf..441a241d053 100644 --- a/doc/update/10.2-to-10.3.md +++ b/doc/update/10.2-to-10.3.md @@ -49,7 +49,7 @@ sudo make install Install Bundler: ```bash -sudo gem install bundler --no-ri --no-rdoc +sudo gem install bundler --no-document ``` ### 4. Update Node -- cgit v1.2.3 From e7cb292f4aa51a6c2abbda4bf93a32e9f0bddecf Mon Sep 17 00:00:00 2001 From: Fatih Sarhan Date: Mon, 31 Dec 2018 22:15:46 +0000 Subject: Update doc/update/10.3-to-10.4.md --- doc/update/10.3-to-10.4.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doc') diff --git a/doc/update/10.3-to-10.4.md b/doc/update/10.3-to-10.4.md index 083f6090a8a..9f3efdd790e 100644 --- a/doc/update/10.3-to-10.4.md +++ b/doc/update/10.3-to-10.4.md @@ -51,7 +51,7 @@ sudo make install Install Bundler: ```bash -sudo gem install bundler --no-ri --no-rdoc +sudo gem install bundler --no-document ``` ### 4. Update Node -- cgit v1.2.3 From 61ea35814e490311307a46f5305296667e42ea00 Mon Sep 17 00:00:00 2001 From: Fatih Sarhan Date: Mon, 31 Dec 2018 22:16:37 +0000 Subject: Update doc/update/10.4-to-10.5.md --- doc/update/10.4-to-10.5.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doc') diff --git a/doc/update/10.4-to-10.5.md b/doc/update/10.4-to-10.5.md index 313419ed13d..3766645a141 100644 --- a/doc/update/10.4-to-10.5.md +++ b/doc/update/10.4-to-10.5.md @@ -51,7 +51,7 @@ sudo make install Install Bundler: ```bash -sudo gem install bundler --no-ri --no-rdoc +sudo gem install bundler --no-document ``` ### 4. Update Node -- cgit v1.2.3 From 0902c44cc889c0e81b777428c62a69d01d11d0e5 Mon Sep 17 00:00:00 2001 From: Fatih Sarhan Date: Mon, 31 Dec 2018 22:16:49 +0000 Subject: Update 10.5-to-10.6.md --- doc/update/10.5-to-10.6.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doc') diff --git a/doc/update/10.5-to-10.6.md b/doc/update/10.5-to-10.6.md index 2f90fb62c4a..986ecbf5ef0 100644 --- a/doc/update/10.5-to-10.6.md +++ b/doc/update/10.5-to-10.6.md @@ -51,7 +51,7 @@ sudo make install Install Bundler: ```bash -sudo gem install bundler --no-ri --no-rdoc +sudo gem install bundler --no-document ``` ### 4. Update Node -- cgit v1.2.3 From 136a445c887f376d80226f92828d720af6e3125b Mon Sep 17 00:00:00 2001 From: Fatih Sarhan Date: Mon, 31 Dec 2018 22:17:05 +0000 Subject: Update doc/update/10.6-to-10.7.md --- doc/update/10.6-to-10.7.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doc') diff --git a/doc/update/10.6-to-10.7.md b/doc/update/10.6-to-10.7.md index b9c14395a3a..10d29837bfb 100644 --- a/doc/update/10.6-to-10.7.md +++ b/doc/update/10.6-to-10.7.md @@ -51,7 +51,7 @@ sudo make install Install Bundler: ```bash -sudo gem install bundler --no-ri --no-rdoc +sudo gem install bundler --no-document ``` ### 4. Update Node -- cgit v1.2.3 From 6b5747d82d96390a647a123c15ee7c13b1d360da Mon Sep 17 00:00:00 2001 From: Fatih Sarhan Date: Mon, 31 Dec 2018 22:17:18 +0000 Subject: Update doc/update/10.7-to-10.8.md --- doc/update/10.7-to-10.8.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doc') diff --git a/doc/update/10.7-to-10.8.md b/doc/update/10.7-to-10.8.md index 7bb628f9740..0cc46fc5aa9 100644 --- a/doc/update/10.7-to-10.8.md +++ b/doc/update/10.7-to-10.8.md @@ -52,7 +52,7 @@ sudo make install Install Bundler: ```bash -sudo gem install bundler --no-ri --no-rdoc +sudo gem install bundler --no-document ``` ### 4. Update Node -- cgit v1.2.3 From 73d3dbd7535809ddb539f7e3f44377b311665ebf Mon Sep 17 00:00:00 2001 From: Fatih Sarhan Date: Mon, 31 Dec 2018 22:17:32 +0000 Subject: Update doc/update/10.8-to-11.0.md --- doc/update/10.8-to-11.0.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doc') diff --git a/doc/update/10.8-to-11.0.md b/doc/update/10.8-to-11.0.md index 22a0c9f950c..ad3305d8ebd 100644 --- a/doc/update/10.8-to-11.0.md +++ b/doc/update/10.8-to-11.0.md @@ -51,7 +51,7 @@ sudo make install Install Bundler: ```bash -sudo gem install bundler --no-ri --no-rdoc +sudo gem install bundler --no-document ``` ### 4. Update Node -- cgit v1.2.3 From 0041457fbc5126a9d87ae4e8dd17d5f1b9687f9a Mon Sep 17 00:00:00 2001 From: Fatih Sarhan Date: Mon, 31 Dec 2018 22:18:19 +0000 Subject: Update doc/update/11.0-to-11.1.md --- doc/update/11.0-to-11.1.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doc') diff --git a/doc/update/11.0-to-11.1.md b/doc/update/11.0-to-11.1.md index 3f10a7edb8a..5b2dd48a744 100644 --- a/doc/update/11.0-to-11.1.md +++ b/doc/update/11.0-to-11.1.md @@ -51,7 +51,7 @@ sudo make install Install Bundler: ```bash -sudo gem install bundler --no-ri --no-rdoc +sudo gem install bundler --no-document ``` ### 4. Update Node -- cgit v1.2.3 From e3ce2f65cf012e5bbad376e043cdcd5651d67e57 Mon Sep 17 00:00:00 2001 From: Fatih Sarhan Date: Mon, 31 Dec 2018 22:18:30 +0000 Subject: Update 11.1-to-11.2.md --- doc/update/11.1-to-11.2.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doc') diff --git a/doc/update/11.1-to-11.2.md b/doc/update/11.1-to-11.2.md index 3edc7e6923e..cb09d0a2505 100644 --- a/doc/update/11.1-to-11.2.md +++ b/doc/update/11.1-to-11.2.md @@ -51,7 +51,7 @@ sudo make install Install Bundler: ```bash -sudo gem install bundler --no-ri --no-rdoc +sudo gem install bundler --no-document ``` ### 4. Update Node -- cgit v1.2.3 From 177bdf125ae8c5e8da0c3be9b6affc7e487ce018 Mon Sep 17 00:00:00 2001 From: Fatih Sarhan Date: Mon, 31 Dec 2018 22:18:42 +0000 Subject: Update 11.2-to-11.3.md --- doc/update/11.2-to-11.3.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doc') diff --git a/doc/update/11.2-to-11.3.md b/doc/update/11.2-to-11.3.md index f2b8efc3e6e..228ff6cb70e 100644 --- a/doc/update/11.2-to-11.3.md +++ b/doc/update/11.2-to-11.3.md @@ -51,7 +51,7 @@ sudo make install Install Bundler: ```bash -sudo gem install bundler --no-ri --no-rdoc +sudo gem install bundler --no-document ``` ### 4. Update Node -- cgit v1.2.3 From 344498461a500a5b1ba33a91f5140284ac311a5e Mon Sep 17 00:00:00 2001 From: Fatih Sarhan Date: Mon, 31 Dec 2018 22:19:04 +0000 Subject: Update doc/update/11.3-to-11.4.md --- doc/update/11.3-to-11.4.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doc') diff --git a/doc/update/11.3-to-11.4.md b/doc/update/11.3-to-11.4.md index fddec45e57a..5f64bf81127 100644 --- a/doc/update/11.3-to-11.4.md +++ b/doc/update/11.3-to-11.4.md @@ -51,7 +51,7 @@ sudo make install Install Bundler: ```bash -sudo gem install bundler --no-ri --no-rdoc +sudo gem install bundler --no-document ``` ### 4. Update Node -- cgit v1.2.3 From 4d433f0f247bc0d7969ed2d3f7f8a87377bdc68d Mon Sep 17 00:00:00 2001 From: Fatih Sarhan Date: Mon, 31 Dec 2018 22:19:19 +0000 Subject: Update 11.4-to-11.5.md --- doc/update/11.4-to-11.5.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doc') diff --git a/doc/update/11.4-to-11.5.md b/doc/update/11.4-to-11.5.md index 44105348d14..fd7a8e5c2ae 100644 --- a/doc/update/11.4-to-11.5.md +++ b/doc/update/11.4-to-11.5.md @@ -51,7 +51,7 @@ sudo make install Install Bundler: ```bash -sudo gem install bundler --no-ri --no-rdoc +sudo gem install bundler --no-document ``` ### 4. Update Node -- cgit v1.2.3 From fb36a2b989fdc4a6e30123d9ed9a33b71e44ece3 Mon Sep 17 00:00:00 2001 From: Fatih Sarhan Date: Mon, 31 Dec 2018 22:19:43 +0000 Subject: Update 11.5-to-11.6.md --- doc/update/11.5-to-11.6.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doc') diff --git a/doc/update/11.5-to-11.6.md b/doc/update/11.5-to-11.6.md index 031abc434ca..2e9ec5d71de 100644 --- a/doc/update/11.5-to-11.6.md +++ b/doc/update/11.5-to-11.6.md @@ -51,7 +51,7 @@ sudo make install Install Bundler: ```bash -sudo gem install bundler --no-ri --no-rdoc +sudo gem install bundler --no-document ``` ### 4. Update Node -- cgit v1.2.3 From 28764ff11bdac4ba8aeecb7bd32a810338bd02d4 Mon Sep 17 00:00:00 2001 From: Fatih Sarhan Date: Mon, 31 Dec 2018 22:23:14 +0000 Subject: Update doc/update/6.9-to-7.0.md --- doc/update/6.9-to-7.0.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doc') diff --git a/doc/update/6.9-to-7.0.md b/doc/update/6.9-to-7.0.md index 27063948028..781c90e4198 100644 --- a/doc/update/6.9-to-7.0.md +++ b/doc/update/6.9-to-7.0.md @@ -47,7 +47,7 @@ sudo make install Install Bundler: ```bash -sudo gem install bundler --no-ri --no-rdoc +sudo gem install bundler --no-document ``` ### 3. Get latest code -- cgit v1.2.3 From ab7dd47ef35a96fdaaded1f1f6461f362023c53b Mon Sep 17 00:00:00 2001 From: Fatih Sarhan Date: Mon, 31 Dec 2018 22:23:29 +0000 Subject: Update doc/update/6.x-or-7.x-to-7.14.md --- doc/update/6.x-or-7.x-to-7.14.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doc') diff --git a/doc/update/6.x-or-7.x-to-7.14.md b/doc/update/6.x-or-7.x-to-7.14.md index 61854b91aa2..6fcec5b7974 100644 --- a/doc/update/6.x-or-7.x-to-7.14.md +++ b/doc/update/6.x-or-7.x-to-7.14.md @@ -67,7 +67,7 @@ sudo make install Install Bundler: ```bash -sudo gem install bundler --no-ri --no-rdoc +sudo gem install bundler --no-document ``` ## 3. Get latest code -- cgit v1.2.3 From 7424069941300ae3734f9ec8cc194c10ab010d4a Mon Sep 17 00:00:00 2001 From: Fatih Sarhan Date: Mon, 31 Dec 2018 22:23:43 +0000 Subject: Update doc/update/7.0-to-7.1.md --- doc/update/7.0-to-7.1.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doc') diff --git a/doc/update/7.0-to-7.1.md b/doc/update/7.0-to-7.1.md index 308e8aeb985..fb4710faad5 100644 --- a/doc/update/7.0-to-7.1.md +++ b/doc/update/7.0-to-7.1.md @@ -47,7 +47,7 @@ sudo make install Install Bundler: ```bash -sudo gem install bundler --no-ri --no-rdoc +sudo gem install bundler --no-document ``` ### 3. Get latest code -- cgit v1.2.3 From 12694c89321040ac5fc49ac386378a4e23d1ade5 Mon Sep 17 00:00:00 2001 From: Fatih Sarhan Date: Mon, 31 Dec 2018 22:25:48 +0000 Subject: Update doc/update/8.10-to-8.11.md --- doc/update/8.10-to-8.11.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doc') diff --git a/doc/update/8.10-to-8.11.md b/doc/update/8.10-to-8.11.md index df3e34f5cc6..12a465e1602 100644 --- a/doc/update/8.10-to-8.11.md +++ b/doc/update/8.10-to-8.11.md @@ -47,7 +47,7 @@ sudo make install Install Bundler: ```bash -sudo gem install bundler --no-ri --no-rdoc +sudo gem install bundler --no-document ``` ### 4. Get latest code -- cgit v1.2.3 From 4e44fb43602c94e012f705e1db81678bdb77835b Mon Sep 17 00:00:00 2001 From: Fatih Sarhan Date: Mon, 31 Dec 2018 22:26:08 +0000 Subject: Update doc/update/8.11-to-8.12.md --- doc/update/8.11-to-8.12.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doc') diff --git a/doc/update/8.11-to-8.12.md b/doc/update/8.11-to-8.12.md index 9d6a1f42375..b9a7986d5ba 100644 --- a/doc/update/8.11-to-8.12.md +++ b/doc/update/8.11-to-8.12.md @@ -47,7 +47,7 @@ sudo make install Install Bundler: ```bash -sudo gem install bundler --no-ri --no-rdoc +sudo gem install bundler --no-document ``` ### 4. Get latest code -- cgit v1.2.3 From f34b0d17aed8434a266839a50dadcd878e4fb3bc Mon Sep 17 00:00:00 2001 From: Fatih Sarhan Date: Mon, 31 Dec 2018 22:26:28 +0000 Subject: Update doc/update/8.12-to-8.13.md --- doc/update/8.12-to-8.13.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doc') diff --git a/doc/update/8.12-to-8.13.md b/doc/update/8.12-to-8.13.md index 6225dee9802..37e61794e7e 100644 --- a/doc/update/8.12-to-8.13.md +++ b/doc/update/8.12-to-8.13.md @@ -47,7 +47,7 @@ sudo make install Install Bundler: ```bash -sudo gem install bundler --no-ri --no-rdoc +sudo gem install bundler --no-document ``` ### 4. Get latest code -- cgit v1.2.3 From 6243b5eab8f19281f0675dfa39d16768ce639481 Mon Sep 17 00:00:00 2001 From: Fatih Sarhan Date: Mon, 31 Dec 2018 22:26:52 +0000 Subject: Update doc/update/8.13-to-8.14.md --- doc/update/8.13-to-8.14.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doc') diff --git a/doc/update/8.13-to-8.14.md b/doc/update/8.13-to-8.14.md index d2508e3f980..927f453b9bf 100644 --- a/doc/update/8.13-to-8.14.md +++ b/doc/update/8.13-to-8.14.md @@ -47,7 +47,7 @@ sudo make install Install Bundler: ```bash -sudo gem install bundler --no-ri --no-rdoc +sudo gem install bundler --no-document ``` ### 4. Get latest code -- cgit v1.2.3 From c566a2a42345461277d4bbc97efb05bec547a4c7 Mon Sep 17 00:00:00 2001 From: Fatih Sarhan Date: Mon, 31 Dec 2018 22:27:12 +0000 Subject: Update doc/update/8.14-to-8.15.md --- doc/update/8.14-to-8.15.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doc') diff --git a/doc/update/8.14-to-8.15.md b/doc/update/8.14-to-8.15.md index daf8d0f2ca6..d98a60d31c8 100644 --- a/doc/update/8.14-to-8.15.md +++ b/doc/update/8.14-to-8.15.md @@ -50,7 +50,7 @@ sudo make install Install Bundler: ```bash -sudo gem install bundler --no-ri --no-rdoc +sudo gem install bundler --no-document ``` ### 4. Get latest code -- cgit v1.2.3 From 4a398f7585fbc19f32b4d61570b150db7f4f51af Mon Sep 17 00:00:00 2001 From: Fatih Sarhan Date: Mon, 31 Dec 2018 22:27:33 +0000 Subject: Update doc/update/8.15-to-8.16.md --- doc/update/8.15-to-8.16.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doc') diff --git a/doc/update/8.15-to-8.16.md b/doc/update/8.15-to-8.16.md index 3668142edd2..94b0102ed48 100644 --- a/doc/update/8.15-to-8.16.md +++ b/doc/update/8.15-to-8.16.md @@ -50,7 +50,7 @@ sudo make install Install Bundler: ```bash -sudo gem install bundler --no-ri --no-rdoc +sudo gem install bundler --no-document ``` ### 4. Get latest code -- cgit v1.2.3 From e8f1d1b52e0865b5bf17e4e776802dc3a613690b Mon Sep 17 00:00:00 2001 From: Fatih Sarhan Date: Mon, 31 Dec 2018 22:27:53 +0000 Subject: Update doc/update/8.16-to-8.17.md --- doc/update/8.16-to-8.17.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doc') diff --git a/doc/update/8.16-to-8.17.md b/doc/update/8.16-to-8.17.md index ee2e31c2aec..5a4f620a164 100644 --- a/doc/update/8.16-to-8.17.md +++ b/doc/update/8.16-to-8.17.md @@ -50,7 +50,7 @@ sudo make install Install Bundler: ```bash -sudo gem install bundler --no-ri --no-rdoc +sudo gem install bundler --no-document ``` ### 4. Update Node -- cgit v1.2.3 From 65ec7e12d50d6d31c4a70b917e1a615fc9c977d3 Mon Sep 17 00:00:00 2001 From: Fatih Sarhan Date: Mon, 31 Dec 2018 22:28:18 +0000 Subject: Update doc/update/8.17-to-9.0.md --- doc/update/8.17-to-9.0.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doc') diff --git a/doc/update/8.17-to-9.0.md b/doc/update/8.17-to-9.0.md index 3c73bc573a6..38f7d22437a 100644 --- a/doc/update/8.17-to-9.0.md +++ b/doc/update/8.17-to-9.0.md @@ -49,7 +49,7 @@ sudo make install Install Bundler: ```bash -sudo gem install bundler --no-ri --no-rdoc +sudo gem install bundler --no-document ``` ### 4. Update Node -- cgit v1.2.3 From 401a807bfe233bb93583d8bbc4e4eef88bb80bb9 Mon Sep 17 00:00:00 2001 From: Fatih Sarhan Date: Mon, 31 Dec 2018 22:29:17 +0000 Subject: Update doc/update/9.0-to-9.1.md --- doc/update/9.0-to-9.1.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doc') diff --git a/doc/update/9.0-to-9.1.md b/doc/update/9.0-to-9.1.md index 7c9dacc9b90..a4d2e7be23c 100644 --- a/doc/update/9.0-to-9.1.md +++ b/doc/update/9.0-to-9.1.md @@ -49,7 +49,7 @@ sudo make install Install Bundler: ```bash -sudo gem install bundler --no-ri --no-rdoc +sudo gem install bundler --no-document ``` ### 4. Update Node -- cgit v1.2.3 From 7f07f4f6c12f1c63d94db8dc5e5e2f477becd6e8 Mon Sep 17 00:00:00 2001 From: Fatih Sarhan Date: Mon, 31 Dec 2018 22:29:34 +0000 Subject: Update doc/update/9.1-to-9.2.md --- doc/update/9.1-to-9.2.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doc') diff --git a/doc/update/9.1-to-9.2.md b/doc/update/9.1-to-9.2.md index b815242ab4e..dd808c51985 100644 --- a/doc/update/9.1-to-9.2.md +++ b/doc/update/9.1-to-9.2.md @@ -49,7 +49,7 @@ sudo make install Install Bundler: ```bash -sudo gem install bundler --no-ri --no-rdoc +sudo gem install bundler --no-document ``` ### 4. Update Node -- cgit v1.2.3 From 5bffb6055bcafd39e0e9be4eb9a47c7a2a885528 Mon Sep 17 00:00:00 2001 From: Fatih Sarhan Date: Mon, 31 Dec 2018 22:29:50 +0000 Subject: Update doc/update/9.2-to-9.3.md --- doc/update/9.2-to-9.3.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doc') diff --git a/doc/update/9.2-to-9.3.md b/doc/update/9.2-to-9.3.md index a58b12cb81c..d2bcf45a28e 100644 --- a/doc/update/9.2-to-9.3.md +++ b/doc/update/9.2-to-9.3.md @@ -49,7 +49,7 @@ sudo make install Install Bundler: ```bash -sudo gem install bundler --no-ri --no-rdoc +sudo gem install bundler --no-document ``` ### 4. Update Node -- cgit v1.2.3 From 7fd214397627974ab3a4a30d6c2881fff0d4bd8c Mon Sep 17 00:00:00 2001 From: Fatih Sarhan Date: Mon, 31 Dec 2018 22:30:09 +0000 Subject: Update doc/update/9.3-to-9.4.md --- doc/update/9.3-to-9.4.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doc') diff --git a/doc/update/9.3-to-9.4.md b/doc/update/9.3-to-9.4.md index 0c87468334b..dae2162a964 100644 --- a/doc/update/9.3-to-9.4.md +++ b/doc/update/9.3-to-9.4.md @@ -49,7 +49,7 @@ sudo make install Install Bundler: ```bash -sudo gem install bundler --no-ri --no-rdoc +sudo gem install bundler --no-document ``` ### 4. Update Node -- cgit v1.2.3 From 9199887cce5d99798e7f23b9a0ac64704b61e930 Mon Sep 17 00:00:00 2001 From: Fatih Sarhan Date: Mon, 31 Dec 2018 22:30:26 +0000 Subject: Update doc/update/9.4-to-9.5.md --- doc/update/9.4-to-9.5.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doc') diff --git a/doc/update/9.4-to-9.5.md b/doc/update/9.4-to-9.5.md index 6a655f77a55..f2811e9471f 100644 --- a/doc/update/9.4-to-9.5.md +++ b/doc/update/9.4-to-9.5.md @@ -49,7 +49,7 @@ sudo make install Install Bundler: ```bash -sudo gem install bundler --no-ri --no-rdoc +sudo gem install bundler --no-document ``` ### 4. Update Node -- cgit v1.2.3 From d07067ae142cf117266aac23132303d7d9654bb7 Mon Sep 17 00:00:00 2001 From: Fatih Sarhan Date: Mon, 31 Dec 2018 22:30:46 +0000 Subject: Update doc/update/9.5-to-10.0.md --- doc/update/9.5-to-10.0.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doc') diff --git a/doc/update/9.5-to-10.0.md b/doc/update/9.5-to-10.0.md index 7790d192a82..333a6e35714 100644 --- a/doc/update/9.5-to-10.0.md +++ b/doc/update/9.5-to-10.0.md @@ -49,7 +49,7 @@ sudo make install Install Bundler: ```bash -sudo gem install bundler --no-ri --no-rdoc +sudo gem install bundler --no-document ``` ### 4. Update Node -- cgit v1.2.3