mirror of
https://github.com/rails/execjs
synced 2023-03-27 23:21:20 -04:00
Start on contributing guidelines
This commit is contained in:
parent
98b4cb19c8
commit
df06693dc0
1 changed files with 25 additions and 0 deletions
25
CONTRIBUTING.md
Normal file
25
CONTRIBUTING.md
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
# Contributing
|
||||||
|
|
||||||
|
## Development
|
||||||
|
|
||||||
|
Clone the repository from GitHub.
|
||||||
|
|
||||||
|
```
|
||||||
|
$ git clone https://github.com/sstephenson/execjs
|
||||||
|
```
|
||||||
|
|
||||||
|
Now just cd into the directory and run `bundle install` to install the
|
||||||
|
development dependencies.
|
||||||
|
|
||||||
|
```
|
||||||
|
$ cd execjs/
|
||||||
|
$ bundle install
|
||||||
|
```
|
||||||
|
|
||||||
|
## Testing
|
||||||
|
|
||||||
|
Tests can be ran via `rake`.
|
||||||
|
|
||||||
|
```
|
||||||
|
$ bundle exec rake
|
||||||
|
```
|
Loading…
Reference in a new issue