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
    taggable_options = { polymorphic: true }
    if Rails::VERSION::MAJOR >= 5
      taggable_options[:required] = false
    end

    belongs_to :taggable, taggable_options
    belongs_to :tag
    default_scope -> { order :position }
  end
end