Skip to content

Commit 2ebfb65

Browse files
Updates the Gemfile and the Readme (RocketChat#1587)
* Updates the Gemfile and the Readme * Applies LINT Co-authored-by: Martin Schoeler <[email protected]>
1 parent 6e79a53 commit 2ebfb65

File tree

3 files changed

+44
-26
lines changed

3 files changed

+44
-26
lines changed

Gemfile

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
21
source 'https://rubygems.org'
3-
gem 'github-pages', '>=104', group: :jekyll_plugins
2+
3+
gem 'github-pages', '~> 198.0', group: :jekyll_plugins
44

55
group :development, :test do
6-
gem 'rake'
7-
gem 'anemone'
8-
gem "html-proofer"
9-
gem 'mdl'
6+
gem 'rake', '~> 12.3'
7+
gem 'anemone', '~> 0.7'
8+
gem 'html-proofer', '~> 3.11'
9+
gem 'mdl', '~> 0.5'
1010
end

Gemfile.lock

+6-6
Original file line numberDiff line numberDiff line change
@@ -267,11 +267,11 @@ PLATFORMS
267267
ruby
268268

269269
DEPENDENCIES
270-
anemone
271-
github-pages (>= 104)
272-
html-proofer
273-
mdl
274-
rake
270+
anemone (~> 0.7)
271+
github-pages (~> 198.0)
272+
html-proofer (~> 3.11)
273+
mdl (~> 0.5)
274+
rake (~> 12.3)
275275

276276
BUNDLED WITH
277-
1.17.1
277+
1.17.3

README.md

+32-14
Original file line numberDiff line numberDiff line change
@@ -2,25 +2,43 @@
22

33
This is the official repository for Rocket.Chat Documentation.
44

5-
## How to run Rocket.Chat Docs locally:
5+
## Requirements
6+
7+
- Ruby >= 2.3 (Recommended >= 2.5)
8+
- [bundler](https://bundler.io/) gem installed (>= 1.17.3)
9+
10+
## Contributing
611

712
This is a quick guide on how to run the docs site locally, for a more in depth guide please look [here](contributing/documentation).
813

9-
- Install ruby (version 2.6 or higher recommended, if using any version prior to 2.5 you will need to install bundler with `gem install bundler`). If the above fails, try specifing the version by runnning `gem install bundler -v [VERSION]` as per the `BUNDLED WITH [VERSION]` definition in Gemfile.lock file.
10-
- This step is for only macOS users:
11-
- You will need to have either `xcode` or the `xcode command line tools` installed. To install the command tools use `xcode-select --install`. Don't forget to accept the `sudo xcodebuild -license` command.
12-
- Depending on your setup you might need to install [nokogiri](http://www.nokogiri.org/tutorials/installing_nokogiri.html) and its dependencies manually.
13-
- Fork the [https://github.com/RocketChat/docs](https://github.com/RocketChat/docs) repository.
14-
- Clone your forked repository to your local enviroment.
15-
- Run `cd docs/`to enter the cloned docs folder.
16-
- Run `bundle install`.
17-
- Start the server with `bundle exec "jekyll serve --incremental --safe"`.
18-
- The application is now available in your browser at `http://localhost:4000`.
14+
## Installation
1915

20-
## Linting your changes locally:
16+
Install `bundler` using your terminal, run:
17+
18+
```bash
19+
$ gem install bundler --version 1.17.3
20+
```
21+
22+
And install the dependencies (also on terminal):
23+
24+
```bash
25+
$ bundle install
26+
```
27+
28+
## Running locally
2129

22-
You should always lint your changes to find errors locally before pushing your changes. This only takes seconds, from the `docs` directory:
30+
Start the server using your terminal:
2331

32+
```bash
33+
$ jekyll serve --incremental --safe
2434
```
25-
bundle exec "mdl ./ -r ~MD004 -i -g"
35+
36+
The application will be available on browser at `http://localhost:4000`.
37+
38+
## Linting your changes locally:
39+
40+
You should always lint your changes to find errors locally before pushing your changes. This only takes seconds, from the `docs` directory you can run on terminal:
41+
42+
```bash
43+
$ mdl ./ -r ~MD004 -i -g
2644
```

0 commit comments

Comments
 (0)