Javascript Console Tips
Take a Javascript console rundown with Paul Irish from the Chrome team.
Take a Javascript console rundown with Paul Irish from the Chrome team.
Awesome introduction about Continuous Delivery.
Totally worth see it.
http://continuous-delivery.thoughtworks.com/events/introduction-continuous-delivery
To avoid needing to install the dependences locally, you can place the pg gem into a production group that will only be installed on Heroku.
Edit your Gemfile and change the line:
gem 'sqlite3'
To this:
group :production do gem 'pg' end group :development, :test do gem 'sqlite3' end
And re-install your dependencies on your local development machine by running:
$ bundle install --without production
via http://devcenter.heroku.com/articles/how-do-i-use-sqlite3-for-development
In unix terminology, the short answer is that