You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+13-4Lines changed: 13 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -35,7 +35,10 @@ This section describes the best practices about what and how needs to be done to
35
35
```bash
36
36
git clone git@github.com:telerik/docs-seed.git
37
37
```
38
-
1. Install bundler if you don't have it, by executing `gem install bundler`.
38
+
1. Install or update bundler. You need 2.4.22 or newer for the `.bundle/config` file to work when installing the build dependencies:
39
+
```bash
40
+
gem install bundler
41
+
```
39
42
> If you encounter SSL errors with Bundler, similar to the one described in [RubyGems SSL Certificate Update](https://guides.rubygems.org/ssl-certificate-update/), then follow the solution steps shared in [Bundler.io - Installing new RubyGems certificates](https://bundler.io/v2.0/guides/rubygems_tls_ssl_troubleshooting_guide.html#installing-new-rubygems-certificates).
40
43
41
44
### Copy Build Scripts
@@ -55,7 +58,10 @@ This section describes the best practices about what and how needs to be done to
55
58
### Install Build Dependencies
56
59
57
60
1. Go to the **DOCS-PATH** directory.
58
-
1. Install gems by executing `bundle install`.
61
+
1. Install the required gems:
62
+
```bash
63
+
bundle install
64
+
```
59
65
60
66
### Run the Documentation Site
61
67
@@ -67,7 +73,7 @@ This section describes the best practices about what and how needs to be done to
67
73
```
68
74
1. Open the documentation site on the server address which is written in the terminal: `http://0.0.0.0:4000/`. If you can't open the URL, replace the `0.0.0.0` with `localhost`: `http://localhost:4000`. For example, for the WPF documentation, this will be `http://0.0.0.0:4000/devtools/wpf/`.
69
75
70
-
1. To change the host or port, pass the `--host` or `--port` arguments to the command above as an addition (for example, `bundle exec jekyll serve --host=0.0.0.0 --port=1234`).
76
+
1. To change the host or port, pass the `--host` or `--port` arguments to the command above as an addition, for example:
71
77
72
78
### Update Build Scripts
73
79
@@ -79,7 +85,10 @@ This section describes the best practices about what and how needs to be done to
79
85
80
86
### Get More Detailed Error Message
81
87
82
-
To get more information and a full stacktrace of the error, add `--trace` after your jekyll command. For example, `bundle exec jekyll build --trace`.
88
+
To get more information and a full stacktrace of the error, add `--trace` after your jekyll command. For example:
0 commit comments