Yes, you read that right. We are using Capistrano – a very popular application deployment tool that is written in Ruby to deploy a Python Django app. In fact, you can deploy any application written in any language using Capistrano. We have been using Capistrano to deploy Rails apps for a very long time and […]
Ruby vs Python: The ultimate battle
A tough question that goes through the mind of all web developers. Ruby vs Python. Which one is better? Both of them are popular languages suited for developing web applications. In short, it’s the clash of the Titans.
Custom Table View Cell using Interface Builder with RubyMotion
I’m a RubyMotion newbie and I wanted to create a custom table view cell which simply had three labels – a title, a subtitle and a third label on the right side of the cell. I found a few help around for creating custom table view cell programmatically, which helped me do the job, but […]
Using Hstore in Rails 4 with PostgreSQL
Hstore basically gives you a schema-less data store in your PostgreSQL DB. This allows you to store the Hash in a Database column. If you want to query Model records, it is very difficult if you use Serialize to store dynamic attributes. Hstore acts same as Serialize but we can additionally query the model records using […]