-
Notifications
You must be signed in to change notification settings - Fork 139
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Can use tests/travis-test.sh from command line
- Update `tests/travis-test.sh` to be usable from the command line (while in the root of the repo). - Add error trapping to travis-test.sh - Update `tests/plugin/.gitignore` to ignore the `vendor/` tree in which bundles are installed when you do `travis-test.sh plugin` - Add editor-backup files to main `.gitignore`
- Loading branch information
Showing
3 changed files
with
32 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
tags | ||
tests/**/build | ||
tests/**/.bundle | ||
|
||
# Editor backup files | ||
*.swp | ||
*~ | ||
~* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# Where bundler installs local Gemfile dependencies | ||
/vendor/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters