railsfrance/railsfrance.org

View on GitHub
lib/models/sortable.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Sortable
  def attr_sortable(*options)
    @attr_sortable = options
    class << self; attr_reader :attr_sortable; end;
  end
end