mirror of
https://github.com/inspec/inspec
synced 2024-11-13 00:17:08 +00:00
a4f4fe5231
Signed-off-by: Miah Johnson <miah@chia-pet.org>
37 lines
881 B
Ruby
37 lines
881 B
Ruby
# 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: %i{mswin mingw}
|
|
|
|
# windows does not come with time zone data
|
|
gem "tzinfo-data", platforms: %i{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"
|