-
Notifications
You must be signed in to change notification settings - Fork 5
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
Add option to create project from package #9
Conversation
31dac59
to
9d70da8
Compare
To create a project based on another package we can use the `$source` | ||
|
||
```puppet | ||
composer::project { |
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 will need a title.
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.
Done.
general notices: thank you very much!
|
d8835ca
to
412d8f5
Compare
i'll look into fixing the travis issue, and then merge this. obligatory addendum: really sorry i left this unattended so long ._. i didn't really touch computers during the holidays |
@mbrodala i've now fixed tests in master, would you mind rebasing? git remote add upstream [email protected]:Brainsware/puppet-composer.git
git remote update
git rebase upstream/master
git push -f origin create-project |
412d8f5
to
9e070ee
Compare
This internally invokes Composer's "create-project" command which allows for creating projects based on other packages. To reduce the number of options the shorthand syntax "<package>:<version>" supported by Composer is promoted. Fixes Brainsware#8
9e070ee
to
408aa09
Compare
Had to replace the plain |
Add option to create project from package
thaaaaanks @mbrodala! |
This internally invokes Composer's
create-project
command which allows forcreating projects based on other packages. To reduce the number of options the
shorthand syntax
<package>:<version>
supported by Composer is promoted.Fixes #8