-
Notifications
You must be signed in to change notification settings - Fork 682
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Move simulator gems to www #1585
Conversation
The simulator gems are not necessary for building InSpec, only the website. This is currently causing issues in the Jenkins infrastructure due to a downstream dependency of github-markup. Signed-off-by: Adam Leff <[email protected]>
8c7fc64
to
199cb16
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you @adamleff
@@ -19,3 +19,9 @@ gem 'middleman-livereload' | |||
gem 'middleman-autoprefixer' | |||
gem 'middleman-syntax' | |||
gem 'redcarpet' | |||
|
|||
group :simulator do |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Lets not forget to update the rakefile and tasks to reflect that change
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is a follow-up to #1585. The website-related Rake tasks have been moved to a www-specific Rakefile which can be found in the www/ directory. Any web-release-related gems have been moved to the www Gemfile as well. This also included modifying the docs rake tasks to be path- independent as they currently expect that Rake is being run from the root of the repo. Signed-off-by: Adam Leff <[email protected]>
This is a follow-up to #1585. The website-related Rake tasks have been moved to a www-specific Rakefile which can be found in the www/ directory. Any web-release-related gems have been moved to the www Gemfile as well. This also included modifying the docs rake tasks to be path- independent as they currently expect that Rake is being run from the root of the repo. Signed-off-by: Adam Leff <[email protected]>
The simulator gems are not necessary for building InSpec, only the website.
This is currently causing issues in the Jenkins infrastructure due to
a downstream dependency of github-markup.
Signed-off-by: Adam Leff [email protected]