Gems
Makes your background jobs interruptible and resumable by design.
The job would run fairly quickly when you only have a hundred User records. But as the number of records grows, it will take longer for a job to iterate over all Users. Eventually, there will be millions of records to iterate and the job will end ...
📑 A Ruby interface for querying academic papers on the arXiv search API.
arXiv provides an advanced search utility (shown left) on their website, as well as an extensive search API that allows for the external querying of academic papers hosted on their website.Although Scholastica offer a great Ruby gem for retrieving...
A light-weight job scheduling system built on top of Resque
Resque-scheduler is an extension to Resque that adds support for queueing items in the future.Job scheduling is supported in two different ways: Recurring (scheduled) and Delayed.Scheduled jobs are like cron jobs, recurring on a regular basis. Del...
Only load the CSS you need for the initial viewport in Rails!
Only load the CSS you need for the initial viewport in Rails!This gem gives you the ability to load only the CSS you need on an initial page view. This gives you blazin' fast rending as there's no initial network call to grab your application's CS...
lol_dba is a small package of rake tasks that scan your application models and displays a list of columns that probably should be indexed.
lol_dba is a small package of rake tasks that scan your application models and displays a list of columns that probably should be indexed. Also, it can generate .sql migration scripts. -.
A fast, open source text processor and publishing toolchain, written in Ruby, for converting AsciiDoc content to HTML 5, DocBook 5, and other formats.
Asciidoctor is a fast, open source text processor and publishing toolchain for converting AsciiDoc content to HTML5, DocBook, PDF, and other formats. Asciidoctor is written in Ruby and runs on all major operating systems. The Asciidoctor project i...
How (not) to integrate Elasticsearch testing with RSpec
In this post I want to share my experience in development of an integration testing tool for a search engine using RSpec framework, which is popular among Ruby developers. My goal was to automate generation of test cases as much as possible. I enc...
How to use Docker Compose for Rails development: Do not bundle install in Dockerfile.dev | Anonoz Burps
For past 12 months, we have been containerizing Rails apps for our projects, because we needed certain binaries like GnuPG 1, and Docker Swarm’s container scheduling for the high availability and scalability offered. To close the dev-prod parity, ...