From df06693dc0d6658d798a3a87adfe089cd283a0bb Mon Sep 17 00:00:00 2001 From: Joshua Peek Date: Mon, 19 May 2014 09:59:29 -0400 Subject: [PATCH] Start on contributing guidelines --- CONTRIBUTING.md | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 CONTRIBUTING.md diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..759c363 --- /dev/null +++ b/CONTRIBUTING.md @@ -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 +```