Tutorials


Build, Package, and Deploy an AWS Lambda using the Ruby Runtime
This post is part of our complete guide: How to Build a Serverless Application on AWS using RubyThis post is a complete guide. That means we are going to create an AWS Lambda in the console first and then move onto using AWS SAM on our local machi...







Guide to devise_token_auth: Simple Authentication in Rails API
I wanted to create an authentication system for my Rails API, but one thing about APIs is that you can't use sessions or cookies for authentication.So instead, I used the gem devise_token_auth, which uses tokens. Put simply, this is how it works: ...

A library for bulk insertion of data into your database using ActiveRecord.
activerecord-import is a library for bulk inserting data using ActiveRecord.One of its major features is following activerecord associations and generating the minimal number of SQL insert statements required, avoiding the N 1 insert problem. An e...