Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

rails_devs_for_data_integrity

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

rails_devs_for_data_integrity

  • 0.1.5
  • Rubygems
  • Socket score

Version published
Maintainers
1
Created
Source

RailsDevsForDataIntegrity

Rails Devs For Data Integrity catches unique key and foreign key violations coming from the MySQLdatabase and converts them into an error on the ActiveRecord object similar to validation errors

class User < ActiveRecord::Base handle_unique_key_violation :user_name, :message => 'is taken" handle_foreign_key_violation :primary_email_id, :message => 'is not available' end

Instead of this nasty MySQL foreign key error: ActiveRecord::StatementInvalid: Mysql::Error: Cannot add or update a child row: a foreign key constraint fails (zoo_development/animals, CONSTRAINT fk_animal_species FOREIGN KEY (species_id) REFERENCES species (id) ON DELETE SET NULL ON UPDATE CASCADE)

user.errors.on(:user_name) => "association does not exist."

Or in the case of a unique key violation:

user.errors.on(:primary_email_id) => "is a duplicate."

==== Developers

  • Blythe Dunham http://snowgiraffe.com

=== Install

Copyright (c) 2009 [name of plugin creator], released under the MIT license

FAQs

Package last updated on 24 Dec 2009

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc