ryanto/acts_as_votable

View on GitHub
lib/acts_as_votable/extenders.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module ActsAsVotable
  module Extenders
    extend ActiveSupport::Autoload

    autoload :"Votable"
    autoload :"Voter"
    autoload :"Controller"
  end
end