Bookmarks with tag "ruby", page 1 of 4
Active Record supports application-level encryption. It works by declaring which attributes should be encrypted and seamlessly encrypting and decrypting them when necessary. The encryption layer sits between the database and the application. The application will access unencrypted data, but the database will store it encrypted.
Solid Queue is a DB-based queuing backend for Active Job, designed with simplicity and performance in mind.
Semantic Logger is a comprehensive logging interface that enables human and machine readable logging outputs
In this post, we'll look at three helpful Ruby concepts that allow developers to write cleaner, more effective code.
Richard Schneeman explains how Ruby uses memory, running through various examples and methods. This information is something every Ruby dev should know.
The Ruby Formatter.
A new Ruby distribution for production environments. Less memory, faster, more secure, fully open source, based on MRI.
At work I was tasked to migrate our time-series analytics data from CSV file dumps that we’ve been feeding into Power BI to a dedicated database. Our Rails app’s primary database is currently MariaDB, but we wanted to have our analytics data in a separate database either way, so this was a good opportunity to use Postgres which we’re most comfortable with anyway.
Ruby on Rails is a web framework that contains many libraries you’d need to create and deploy a successful web application. We often take for granted the ability to run rails new to create a fully functional web application with tons of built-in features.
Let's look at how to set up and build your first Ruby C extension!
Example based guide for text processing with Ruby from the command line.