mirror of
https://github.com/inspec/inspec
synced 2024-11-14 17:07:09 +00:00
6207f06c77
Signed-off-by: Pete Higgins <pete@peterhiggins.org>
34 lines
785 B
Ruby
34 lines
785 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-sprockets', '>= 4.0.0'
|
|
gem 'middleman-compass', '>= 4.0.0'
|
|
gem 'middleman', '>= 4.0.0'
|
|
gem 'middleman-livereload'
|
|
gem 'middleman-autoprefixer'
|
|
gem 'middleman-syntax'
|
|
gem 'redcarpet'
|
|
|
|
# Tutorial Gems
|
|
gem 'github-markup'
|
|
gem 'docker-api'
|
|
|
|
# Build process requirements
|
|
gem 'inspec', path: '..'
|
|
gem 'rake'
|
|
gem 'ruby-progressbar'
|
|
gem 'inquirer'
|
|
|
|
# Ability to flush the cache during a deploy
|
|
gem 'fastly'
|