Giter Club home page Giter Club logo

stripper's Introduction

Stripper

Stripper is a Ruby on Rails plugin that removes leading and trailing blanks from attribute values in your models.

Leading and trailing spaces on attribute values can be a problem. They’re almost never wanted nor intended. In fact, Oracle actually treats empty strings as NULL. That’s not to say we necessarily think that the database should be messing with our data mind you but it does show that at least someone agrees with us.

Here’s an example of what happens when the plugin is installed:

$ ./script/console 
Loading development environment (Rails 2.2.2)
Welcome to interactive ruby!
irb --> u = User.new

irb --> u.name = "    Simon Harris   "
irb --> u.name
    ==> "Simon Harris"

irb --> u.name = "                   "
irb --> u.name
    ==> nil

Installation

You have two choices for installation. The first uses a gem (recommended):

config.gem "harukizaemon-stripper", :lib => "stripper", :source => "http://gems.github.com"

Or you can use the Rails plugin

$ ruby script/plugin install git://github.com/harukizaemon/stripper.git

License

This plugin is copyright 2009 Simon Harris and is released under the MIT license.

stripper's People

Contributors

ealdent avatar

Stargazers

 avatar  avatar

Watchers

 avatar  avatar

Forkers

zarqman robworley

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.