Heroku
Heroku Build Pipelines
Heroku Pipelines is a feature that allows you to manage multiple environments through a workflow where changes are verified and then promoted through the pipeline.
Heroku Error Pages Gem
I wrote a gem - heroku_error_pages - for Rails applications running on Heroku that allows you to build custom error pages and automatically host the pages in S3. This allows you to easily build custom error pages for Heroku - and keep them up to date as part of the release process as your application styles change.
Streaming Data with Rails and Heroku
A reasonably common feature in Rails is to export data to CSV. I find this is often a quick-and-easy solution to many problems, since it’s very easy to analyze and filter the data with Excel.
How to Restore a PostgreSQL Backup from Heroku
Today I needed to make a backup of my PostgreSQL database on Heroku and restore it locally in order to do some testing. It turns out this is pretty easy.
Configuring S3 with Rails, Paperclip and Heroku
On my current project we are storing images on Amazon S3. We are using the very popular Paperclip gem to interact with images through ActiveRecord. Paperclip is very easy to configure with S3, you simply need to specify the name of your S3 bucket and Amazon access keys and you’re good to go.