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 collaboratorSelectively whitelist files
- Scenarios
-
- Does not include disabled files by default
- Does include disabled files when asked
- Allows to include several disabled files
- Does not include disabled files by default
-
- Given
-
a file named "sometimes.disabled" with:
Host sometimes User me
- And
-
a file named "always" with:
Host always User me
- When
-
I run
poet
- Then
- the file "ssh_config" should contain "Host always"
- But
- the file "ssh_config" should not contain "Host sometimes"
- Does include disabled files when asked
-
- Given
-
a file named "sometimes.disabled" with:
Host sometimes User me
- And
-
a file named "always" with:
Host always User me
- When
-
I run
poet -w sometimes
- Then
- the file "ssh_config" should contain "Host always"
- And
- the file "ssh_config" should contain "Host sometimes"
- Allows to include several disabled files
-
- Given
-
a file named "sometimes.disabled" with:
Host sometimes User me
- Given
-
a file named "almost_never.disabled" with:
Host almost_never User me
- When
-
I run
poet -w sometimes,almost_never
- Then
- the file "ssh_config" should contain "Host almost_never"
- And
- the file "ssh_config" should contain "Host sometimes"
Last published over 7 years ago by awendt.