generated from just-the-docs/just-the-docs-template
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathGemfile
22 lines (15 loc) · 1009 Bytes
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
source 'https://rubygems.org'
# A simple, blog aware, static site generator. (https://jekyllrb.com)
gem 'jekyll'
# A modern, highly customizable, and responsive Jekyll theme for documentation with built-in search. (https://github.com/just-the-docs/just-the-docs)
gem 'just-the-docs'
# Provides a simple logging utility for outputting messages. (https://github.com/ruby/logger)
gem 'logger'
# CSV Reading and Writing (https://github.com/ruby/csv)
gem 'csv'
# Class to build custom data structures, similar to a Hash. (https://github.com/ruby/ostruct)
gem 'ostruct'
# Support for encoding and decoding binary data using a Base64 representation. (https://github.com/ruby/base64)
gem 'base64'
# A set of tests to validate your HTML output. These tests check if your image references are legitimate, if they have alt tags, if your internal links are working, and so on. It's intended to be an all-in-one checker for your documentation output. (https://github.com/gjtorikian/html-proofer)
gem 'html-proofer'