Tutorials
Using parametrized containers for deploying Rails micro services on Kubernetes
When using micro services with containers, one has to consider modularity and reusability while designing a system.While using Kubernetes as a distributed system for container deployments, modularity and reusability can be achieved using parameter...
A categorized community-driven collection of awesome Ruby libraries, tools, frameworks.
A categorized community-driven collection of awesome Ruby libraries, tools, frameworks and software. The essential Ruby to build modern Apps and Web Apps.Sharing, suggestions and contributions are always welcome! Please take a look at the contribu...
Creating a Minimal Sinatra App For Hosting Test Files on Heroku
It’s essential that we test each integration end-to-end. However, all the providers we integrate with require some form of authentication (basic HTTP authentication, API tokens, e.g.). Most of them do not provide sandbox accounts to facilitate tes...
Using Rails Session Cookies for API Authentication
No part of the web app is rendered by Rails. The Rails app is strictly a JSON API. And the web app is a standalone bundle of HTML, CSS, and JavaScript.Given that the API has protected resources that require authentication, I had a decision to make...