Skip to content

nilaccount/validates_existence_of

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Validates Existance Of Plugin

Validates the existance of an associated record in the database through a belongs_to association.

validates_existance_of :ar_belongs_to_association

Supports polymorphic associations.

Usage

validates_existance_of :belongs_to_association

Example

class Country < ActiveRecord::Base

  has_many :users

end

class User < ActiveRecord::Base

  belongs_to :country

  validates_presence_of :country_id

  # Will pass if the associated country exists in the database
  validates_existance_of :country 

end

Instalation

git clone git://github.com/bogdans83/validatesexistanceof.git

or use “braid”: evil.che.lu/projects/braid

Uninteresting stuff

Author:: Bogdan Sandulescu <bogdan at okapistudio the point com>
License:: Copyright 2008 Bogdan Sandulescu
          Released under an MIT-style license.

About

A small plugin to validate the existence of an AR record

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages