mirror of
https://github.com/inspec/inspec
synced 2024-11-10 15:14:23 +00:00
fa0a6c9794
* Sketch out contrib doc fetcher * Read contrib config file * Fetch contrib resource packs from git * Copy in resource pack docs from contrib * Task to cleanup copied-in files * Attach contrib resource pack docs fetching to main website doc generation * Refactor - rename vars in resource overview task for clarity * Generate resource overview page using info from contrib * Fix issue in which AWS and Azure resources were ending up under OS * Trigger contrib doc cleanup after doc build * Comment out the contrib.yaml for now * Disable contrib tasks if git is not available * Rubocop issues * Allow .md as doc file ending * Fix for files ending in md having a relative link * Omit 'resources' from section labels to save width * Rubocoooooooooooppppp Signed-off-by: Clinton Wolfe <clintoncwolfe@gmail.com>
38 lines
901 B
Ruby
38 lines
901 B
Ruby
# encoding: utf-8
|
|
# If you do not have OpenSSL installed, update
|
|
# the following line to use 'http://' instead
|
|
source 'https://rubygems.org'
|
|
|
|
gem 'slim', '>= 3.0'
|
|
|
|
# For faster file watcher updates on Windows:
|
|
gem 'wdm', '~> 0.1.0', platforms: [:mswin, :mingw]
|
|
|
|
# windows does not come with time zone data
|
|
gem 'tzinfo-data', platforms: [:mswin, :mingw]
|
|
|
|
# Middleman Gems
|
|
gem 'middleman', '>= 4.0.0'
|
|
gem 'middleman-autoprefixer'
|
|
gem 'middleman-compass', '>= 4.0.0'
|
|
gem 'middleman-livereload'
|
|
gem 'middleman-search_engine_sitemap', '~> 1.4'
|
|
gem 'middleman-sprockets', '>= 4.0.0'
|
|
gem 'middleman-syntax'
|
|
gem 'redcarpet'
|
|
|
|
# Tutorial Gems
|
|
gem 'docker-api'
|
|
gem 'github-markup'
|
|
|
|
# Needed to fetch contrib resource packs, etc.
|
|
gem 'git', '~> 1.4'
|
|
|
|
# Build process requirements
|
|
gem 'inquirer'
|
|
gem 'inspec', path: '..'
|
|
gem 'rake'
|
|
gem 'ruby-progressbar'
|
|
|
|
# Ability to flush the cache during a deploy
|
|
gem 'fastly'
|