blog

Push notifications using express.js and socket.io

So we built a real-time bidding system! Why? Because one of our clients needed it. Our customer bridges the gap between vendors and customers. (Cannot reveal more specifics like the domain etc.) Customer requests an order and vendors bid for that order. Customer should be notified in real-time about any bids. Customer should be able … Continue reading Push notifications using express.js and socket.io

How To Integrate Authorize Net (AIM) Payment In Rails

Authorize Net (AIM) method enables internet merchants to accept online payments via credit card. We shall see how to integrate authorize net payment gateway inside a rails app to accept online payments using activemerchant library. Register for authorize net sandbox account click here Payment gateway credentials Payment & creditcard form Payments Controller Generate & Migrate Payment … Continue reading How To Integrate Authorize Net (AIM) Payment In Rails

How To Design Rails API Using Rabl & Devise

Most of us are aware that enabling API access for rails application is easy as Rails provides RESTful APIs by default. However, a little complexity arises when some responses are expected in xml format (maybe for some legacy system) and JSON format. Complexity increases when these API calls need authentication. The initial obvious thought that … Continue reading How To Design Rails API Using Rabl & Devise