-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #139 from sqreen/documentation
Update Documentation
- Loading branch information
Showing
14 changed files
with
236 additions
and
222 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 |
---|---|---|
|
@@ -5,9 +5,10 @@ Credits | |
Authors | ||
------- | ||
|
||
* Jean-Baptiste AVIAT <[email protected]> | ||
* Boris FELD <[email protected]> | ||
* Selim MENOUAR <[email protected]> | ||
* Jean-Baptiste AVIAT <[email protected]> | ||
* Boris FELD <[email protected]> | ||
* Selim MENOUAR <[email protected]> | ||
* Nicolas VIVET <[email protected]> | ||
|
||
Contributors | ||
------------ | ||
|
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 |
---|---|---|
|
@@ -13,7 +13,7 @@ Types of Contributions | |
Report Bugs | ||
~~~~~~~~~~~ | ||
|
||
Report bugs at https://github.com/sqreen/py_mini_racer/issues. | ||
Report bugs at https://github.com/sqreen/PyMiniRacer/issues. | ||
|
||
If you are reporting a bug, please include: | ||
|
||
|
@@ -43,7 +43,7 @@ articles, and such. | |
Submit Feedback | ||
~~~~~~~~~~~~~~~ | ||
|
||
The best way to send feedback is to file an issue at https://github.com/sqreen/py_mini_racer/issues. | ||
The best way to send feedback is to file an issue at https://github.com/sqreen/PyMiniRacer/issues. | ||
|
||
If you are proposing a feature: | ||
|
||
|
@@ -55,19 +55,22 @@ If you are proposing a feature: | |
Get Started! | ||
------------ | ||
|
||
Ready to contribute? Here's how to set up `py_mini_racer` for local development. | ||
Ready to contribute? Here's how to set up `PyMiniRacer` for local development. | ||
|
||
1. Fork the `py_mini_racer` repo on GitHub. | ||
1. Fork the `PyMiniRacer` repo on GitHub. | ||
2. Clone your fork locally:: | ||
|
||
$ git clone [email protected]:your_name_here/py_mini_racer.git | ||
$ git clone [email protected]:your_name_here/PyMiniRacer.git | ||
|
||
3. Install your local copy into a virtualenv. Assuming you have virtualenvwrapper installed, this is how you set up your fork for local development:: | ||
|
||
$ mkvirtualenv py_mini_racer | ||
$ cd py_mini_racer/ | ||
$ mkvirtualenv PyMiniRacer | ||
$ cd PyMiniRacer/ | ||
$ python helpers/v8_build.py | ||
$ python setup.py develop | ||
|
||
**Warning**: building this package from source takes several GB of disk space and takes ~60 minutes. | ||
|
||
4. Create a branch for local development:: | ||
|
||
$ git checkout -b name-of-your-bugfix-or-feature | ||
|
@@ -99,11 +102,11 @@ Before you submit a pull request, check that it meets these guidelines: | |
2. If the pull request adds functionality, the docs should be updated. Put | ||
your new functionality into a function with a docstring, and add the | ||
feature to the list in README.rst. | ||
3. The pull request should work for Python 2.7, 3.4, 3.5, 3.6 and 3.7 and for PyPy. | ||
3. The pull request should work for Python 2.7, at least 3.5 and for PyPy. | ||
|
||
Tips | ||
---- | ||
|
||
To run a subset of tests:: | ||
|
||
$ python -m unittest tests.test_py_mini_racer | ||
$ python -m unittest tests.test_eval |
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
Oops, something went wrong.