To add a collaborator to this project you will need to use the Relish gem to add the collaborator via a terminal command. Soon you'll be able to also add collaborators here!
More about adding a collaboratorDetect incompatible declarations
In order to avoid using Vim with inconsistent configurations,
as a lazy Vim user,
I want to detect incompatible declaratios before installing Vim plugins.
- Scenarios
-
- Detect incompatible branches
-
- Given
- a repository "L" with versions "0.1 0.2 0.3 0.4"
- And
- "L" has "experimental" branch
- And
-
a repository "A" with versions "0.0" and a flavorfile:
flavor '$L_uri', branch: 'master'
- And
-
a repository "B" with versions "0.0" and a flavorfile:
flavor '$L_uri', branch: 'experimental'
- And
-
a flavorfile with:
flavor '$A_uri' flavor '$B_uri'
- When
-
I run
vim-flavor install
- Then
-
it should fail with template:
Checking versions... Use $A_uri ... 0.0 Use $L_uri ... $L_rev_04 at master Use $B_uri ... 0.0 Use $L_uri ... $L_rev_04 at experimental Found incompatible declarations: $L_uri branch: master is required by $A_uri $L_uri branch: experimental is required by $B_uri Please resolve the conflict.
- And
- a flavor "$A_uri" is not deployed to "$home/.vim"
- And
- a flavor "$B_uri" is not deployed to "$home/.vim"
- And
- a flavor "$L_uri" is not deployed to "$home/.vim"
- Detect mixed use of branchs and versions
-
- Given
- a repository "L" with versions "0.1 0.2 0.3 0.4"
- And
- "L" has "experimental" branch
- And
-
a repository "A" with versions "0.0" and a flavorfile:
flavor '$L_uri', branch: 'master'
- And
-
a repository "B" with versions "0.0" and a flavorfile:
flavor '$L_uri', '~> 0.2'
- And
-
a flavorfile with:
flavor '$A_uri' flavor '$B_uri'
- When
-
I run
vim-flavor install
- Then
-
it should fail with template:
Checking versions... Use $A_uri ... 0.0 Use $L_uri ... $L_rev_04 at master Use $B_uri ... 0.0 Use $L_uri ... 0.4 Found incompatible declarations: $L_uri branch: master is required by $A_uri $L_uri ~> 0.2 is required by $B_uri Please resolve the conflict.
- And
- a flavor "$A_uri" is not deployed to "$home/.vim"
- And
- a flavor "$B_uri" is not deployed to "$home/.vim"
- And
- a flavor "$L_uri" is not deployed to "$home/.vim"
Last published 6 months ago by kana.