Provide additional gemspecs for various backends and a 'core' that they all depend on. #291
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This adds a few gem specs to allow Train to be distributed without support for additional cloud providers. I've left the
train.gemspec
alone so train can still be distributed as is. In the future after these supplemental gem specs have proven themselvestrain.gemspec
would be modified to depend on them.We now have:
train-core
which is just Train, with WinRM, SSH, and Docker support.train-aws
which provides AWS support.train-azure
which provides Azure support.train-gcp
which provides Google Cloud Provider support.The aws, azure, and gcp gems all depend on
core
. So if you want to install Train with support for AWS you can installtrain-aws
and you'll be fine.The
description
andsummary
of our gem specs could probably be improved here (HELP)These supplemental gem specs do not include distribution of
tests
(spec.test_files) as that was deprecated.