Skip to content

Commit 968ba4e

Browse files
author
Ashe Connor
authored
Merge pull request #1134 from kiwiroy/bootstrap-to-vendor-dir
Simple addition to aid contributors
2 parents fb467aa + 47a8cdc commit 968ba4e

File tree

2 files changed

+19
-0
lines changed

2 files changed

+19
-0
lines changed

CONTRIBUTING.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,10 @@ Anything else - [search open issues](https://github.com/github/markup/issues) or
2323
5. Open a [Pull Request][1]
2424
6. Enjoy a refreshing Diet Coke and wait
2525

26+
**dependencies**
27+
28+
You can run `script/bootstrap.contrib` to fetch them all.
29+
2630
## Testing
2731

2832
To run the tests:

script/bootstrap.contrib

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
#!/bin/bash
2+
3+
set -e
4+
5+
cd $(dirname "$0")/..
6+
7+
bundle install --path vendor/bundle
8+
virtualenv vendor/python && source vendor/python/bin/activate
9+
pip install docutils
10+
11+
echo ""
12+
echo "*** DONE ***"
13+
echo ""
14+
echo "activate python environment with 'source vendor/python/bin/activate'"
15+
echo "run tests with 'bundle exec rake'"

0 commit comments

Comments
 (0)