Sha256: 3a1c4f3f35dd57c3bacfa3cf247dee49e7f5f8df78005252ecfae2c5b72b5397
Contents?: true
Size: 1.24 KB
Versions: 12
Compression:
Stored size: 1.24 KB
Contents
module PhcdevworksScripts class Script::Listing < ApplicationRecord # Clean URL Initialize extend FriendlyId # Paper Trail Initialize has_paper_trail :class_name => 'PhcdevworksScripts::ScriptListingVersions' # Relationships has_many :urls, class_name: 'PhcdevworksScripts::Script::Url', :dependent => :destroy belongs_to :author, class_name: 'PhcdevworksScripts::Script::Author' # Form Fields Validation validates :script_listing_title, presence: true validates :script_listing_description, presence: true validates :script_listing_script_source, format: { with: URI::regexp(%w(http https)), message: "Please follow this URL format http or https://www.**********.com" } validates :script_listing_script_website, format: { with: URI::regexp(%w(http https)), message: "Please follow this URL format http or https://www.**********.com" } validates :script_listing_script_repo, format: { with: URI::regexp(%w(http https)), message: "Please follow this URL format http or https://www.**********.com" } # Clean URL Define friendly_id :script_listing_nice_urls, use: [:slugged, :finders] def script_listing_nice_urls [:script_listing_title] end end end
Version data entries
12 entries across 12 versions & 1 rubygems