By making a contribution to this project, you certify that you agree to all points below.
In short, you are legally allowed to transfer copyright of this work to thoughtbot, inc. and do so. Where possible, we will give you attribution.
In full, based on the Linux Developer's Certificate of Origin 1.1:
(a) The contribution was created in whole or in part by me and I have the right to submit it under the license indicated in the LICENSE file; or
(b) The contribution is based upon previous work that, to the best of my knowledge, is covered under an appropriate license and I have the right under that license to submit that work with modifications, whether created in whole or in part by me, under the same license as indicated in the LICENSE file.
(c) By contributing to this project, I assign copyright of the contribution to thoughtbot, inc. to be distributed under the license as described in the accompanying LICENSE file.
This book is written using markdown and built using pandoc, which can be found at:
http://johnmacfarlane.net/pandoc/
Instructions for installing pandoc for your platform can be found here:
http://johnmacfarlane.net/pandoc/installing.html
We recommend using the binary distribution of pandoc whenever possible.
Install dependencies with Bundler:
bundle install
You'll also need need to install the following fonts:
- Proxima Nova
- Inconsolata
Now install the pandoc dependencies:
Download and install KindleGen from Amazon:
http://www.amazon.com/gp/feature.html?ie=UTF8&docId=1000234621
You'll also need imagemagick, which you can install using homebrew:
brew install imagemagick
LaTeX is needed for PDF distribution:
We recommend downloading the smaller, BasicTeX in conjunction with MacTeX.
Install the LaTeX packages:
sudo tlmgr update --self
sudo tlmgr install upquote
sudo tlmgr install cm-super
You may need to add its bin directory to your PATH:
export PATH=$PATH:/usr/texbin
Install KindleGen into ~/bin; you can put it anywhere in your PATH you like:
wget -P /tmp/ http://s3.amazonaws.com/kindlegen/kindlegen_linux_2.6_i386_v1.2.tar.gz
tar -C /tmp/ -xzf /tmp/kindlegen_linux_2.6_i386_v1.2.tar.gz
mv /tmp/kindlegen ~/bin/
LaTeX is needed for PDF creation:
sudo apt-get install texlive
Run paperback build
to build all output targets.
New contributions should be added as pull requests. Guidelines:
- Each new, unrefactored change to the example app should be a pull request.
- Each refactoring performed on the example app should be a pull request.
- Each new chapter should be a pull request.
- Mixing any of the above into one pull request makes reviewing more difficult.
When reviewing new chapters, use paperback review
to check out, build and
view the book locally. Example: paperback review 6
will review the book for
pull request 6.
Run paperback release
to build all output targets in the release
directory.
Then commit and push up to GitHub.