Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
topical / app / models / topical / tagging.rb
Size: Mime:
module Topical
  class Tagging < ::ActiveRecord::Base
    belongs_to :taggable, polymorphic: true
    belongs_to :tag
    default_scope -> { order :position }
  end
end