Problem I have a module (in file dialect.rb) defined as such: require ‘dialect/generators/elements’ module Dialect def self.included(caller) caller.extend Dialect::Generator::Element end […]

Problem This code is to find expiring/expired documents. It was included in one of the models, say Document. Is this […]

Problem I would like someone review this code and tell if it can be done better, or if the code […]

Problem I have created a module that validates the credentials against different databases. module Authentication DATABASES = %w[mysql mssql oracle].freeze […]