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    
discourse-annotator / app / models / discourse_annotator / image_annotation.rb
Size: Mime:
module DiscourseAnnotator
  class ImageAnnotation < Annotation

    # Validations
    validates :src, presence: true
    validates :shape, presence: true
    validates :units, presence: true
    validates :geometry, presence: true


    def image_annotation?
      true
    end


  end
end