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    
getfitter-core / app / models / core / promotion.rb
Size: Mime:
module Core
  class Promotion < ActiveRecord::Base
    has_many :organisation_venues

    validates :title, presence: true

    default_scope { order('sort_order') }
  end
end