Parrot is a static website build tool developed to create my own blog.
Add this line to your application's Gemfile:
gem 'parrot', git: 'git@github.com:42races/parrot.git'
And then execute:
$ bundle
You will need to have babel-cli installed to compile js files
$ npm install --save-dev --global babel-cli
Creating a new html5 app
$ parrot new blog
Build to app
$ cd blog
$ parrot build
Start server
$ parrot serve
$ rspec spec
$ rspec -f d # view test with description
$ rspec -f d --tag focus # run only focussed sections, usefull for debugging
- Fork it
- Create your feature branch (
git checkout -b my-new-feature) - Commit your changes (
git commit -am 'Add some feature') - Push to the branch (
git push origin my-new-feature) - Create new Pull Request