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    
Size: Mime:
module DiscourseAnnotator
  class Range < ActiveRecord::Base
    # Associations
    belongs_to :annotation, class_name: 'TextAnnotation'

    # Validations
    validates :start_offset, presence: true
    validates :end_offset, presence: true

  end
end