Bump rexml from 3.3.8 to 3.4.2 in /docs/0.12.0

Bumps [rexml](https://github.com/ruby/rexml) from 3.3.8 to 3.4.2.
- [Release notes](https://github.com/ruby/rexml/releases)
- [Changelog](https://github.com/ruby/rexml/blob/master/NEWS.md)
- [Commits](https://github.com/ruby/rexml/compare/v3.3.8...v3.4.2)

---
updated-dependencies:
- dependency-name: rexml
  dependency-version: 3.4.2
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
1 file changed
tree: ee8bc5ed977e6a949750bcf17a7fdf160a16ac4f
  1. .github/
  2. _includes/
  3. _layouts/
  4. _plugins/
  5. assets/
  6. contribution/
  7. docs/
  8. releases/
  9. .asf.yaml
  10. .DS_Store
  11. .gitignore
  12. .htaccess
  13. 404.html
  14. _config.yml
  15. assets.md
  16. atom.xml
  17. community.md
  18. doap.rdf
  19. Dockerfile
  20. documentation.md
  21. download.md
  22. Gemfile
  23. Gemfile.lock
  24. helium.json
  25. helium_packages.md
  26. index.md
  27. medium.md
  28. Rakefile
  29. README.md
  30. robot.txt
  31. rss.xml
  32. screenshots.md
  33. security.md
  34. sitemap.txt
  35. supported_interpreters.md
  36. technologies_deployments.md
  37. twitter.md
  38. whats_new.md
  39. zeppelin-site.sh
README.md

Zeppelin Project Website

This readme will walk you through building the Zeppelin website

Requirements

  • Docker: Ensure Docker is installed and running on your machine.
  • Ruby: Check that your Ruby version is compatible with all gems listed in the Gemfile.

Develop website

Follow these steps to set up and run the development environment:

1. Clone the Repository

$ git clone <repository-url>
$ cd <repository-directory>

2. Ensure Docker is Running:

Make sure Docker is installed and running on your machine. Below is an example how.

$ open -a Docker

3. Build the Docker Image:

$ ./zeppelin-site.sh --build-image

4. Run the Development Server:

$ ./zeppelin-site.sh

5. Open the Website:

Open your web browser and go to http://localhost:4000 or http://127.0.0.1:4000.

Adding a new page

$  rake page name="new-page.md"

Build website

Follow these steps to build the production site:

1. Build the Production Site:

$ ./zeppelin-site.sh --build-dist

2. The built site will be available in the _site directory.

Troubleshooting and Notes:

Ensure all dependencies are correctly listed and installed.

If you encounter issues, you may need to run:

$ docker run --rm -it -v "$(pwd):/app" zeppelin-site-dev:latest /bin/bash
$ bundle install

Dockerfile and Gemfile Adjustments:

  • Updates to the Dockerfile or Gemfile may include necessary system dependencies for gems like Nokogiri.
  • Refer to these files for specific details.