Sha256: a42e91cfd67f8cf243e555ed78b89dbdbab98bd30abb1ea9b0b6e5d731617589

Contents?: true

Size: 1.03 KB

Versions: 1

Compression:

Stored size: 1.03 KB

Contents

Sanitize-Rails - sanitize .. on Rails.
======================================

Installation
------------

Gemfile:

    gem 'sanitize-rails', :require => 'sanitize/rails'

Configuration
-------------

config/initializers/sanitizer.rb:

    Sanitize::Rails.configure(
      :elements    => [ ... ],
      :attribiutes => { ... },
      ...
    )

There's an example in the `example/` directory.

Usage
-----

app/models/foo.rb:

    sanitizes :field
    sanitizes :some_other_field,  :on => :create
    sanitizes :yet_another_field, :on => :save

ActionView `sanitize` helper is overriden to use
the Sanitize gem - transparently.

Testing
-------

Only Test::Unit for now - please write matchers
and send a pull request :-)

test/test\_helper:

    Sanitize::Rails::TestHelpers.setup(self,
      :invalid => 'some <a>string',
      :valid   => 'some <a>string</a>'
    )

your test:

    assert_sanitizes(Model, :field, :some_other_field)

Compatibility
-------------

Tested with Rails 3.0.x ~ 3.2.x under Ruby 1.8 and 1.9.

License
-------

MIT


Have fun!

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
sanitize-rails-0.7.1 README.md