mirror of
https://github.com/inspec/inspec
synced 2024-11-13 00:17:08 +00:00
98c28ac256
- compass is now built in to middleman 4, including the old middleman-compass gem only creates issues with the dep graph - deal with .css.scss files being ignored by splitting into separate .css and .scss files. (https://github.com/middleman/middleman-sprockets/issues/127) Closes #4613 Signed-off-by: Bryan McLellan <btm@loftninjas.org>
36 lines
845 B
Ruby
36 lines
845 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-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"
|