Home > rails_uri_validator

rails_uri_validator

Rails_uri_validator is a project mainly written in Ruby, based on the MIT license.

an uri validator for rails

= rails_uri_validator

http://travis-ci.org/phatworx/rails_uri_validator.png

== Installation Add the following line to your Gemfile gem "rails_uri_validator"

If you want to use it as plugin rails plugin install git://github.com/traxanos/rails_uri_validator.git

== Using Use to validate uri validates :uri, :uri => true

Allow only http and https uris (http://examples.net) validates :uri, :uri => { :schemes => [:http, :https] }

Allow only mailto uris (mailto:[email protected]) validates :uri, :uri => { :schemes => :mailto }

Allow only http and https uris and addition custom validation to forbidden uris with user infos validates :uri, :uri => { :schemes => [:http, :https], :custom => Proc.new { |uri| uri.userinfo == nil} }

== Features

  • uri validation based on ruby's uri from stdlib
  • schemes restrictions
  • custom support
  • tests for validator

== Contributing to rails_email_validator

  • Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet
  • Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it
  • Fork the project
  • Start a feature/bugfix branch
  • Commit and push until you are happy with your contribution
  • Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
  • Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.

== Copyright

Copyright (c) 2010 Marco Scholl. See LICENSE.txt for further details.

Previous:Medieer