Giter Club home page Giter Club logo

rails-validators's People

Contributors

twmills avatar

Stargazers

 avatar  avatar

Watchers

 avatar  avatar

Forkers

kristianmandrup

rails-validators's Issues

feature: Suggestions for improvement

Hi, I like the idea :)

Would be nice if the validators were encapsulated as an engine or as a gem, perhaps with a generator to copy the validator files into app/validators of the Rails app.
Just some ideas...

Also here an Email Validator alternative:

http://my.rails-royce.org/2010/07/21/email-validation-in-ruby-on-rails-without-regexp/

Here are some personal ideas for validators:

class CompanyNameValidator < ActiveModel::EachValidator
  def validate_each(record,attribute,value)
    record.errors[attribute] << "has invalid characters" unless value =~ /^[a-zA-Z0-9\_\-\ ]*?$/
  end
end
class PersonNameValidator < ActiveModel::EachValidator
  def validate_each(record,attribute,value)
    record.errors[attribute] << "has invalid characters" unless value =~ /^[a-zA-Z\-\ ]*?$/
  end
end
  validates :first_name, :presence => true, :person_name => true
  validates :last_name, :presence => true, :person_name => true

  validates :name, :presence => true, :length => {:within => 2..40}, :company_name => true

I will make a fork and make some additions, then you can pull if you like ;)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.