Sha256: f3895b16bb76b78e7a500c151016b7803de420ce91fe4d9c6ee9b80c5d728ee6

Contents?: true

Size: 1.09 KB

Versions: 3

Compression:

Stored size: 1.09 KB

Contents

# FormatUrl [![Build Status](https://api.travis-ci.org/pinchtozoom/format_url.png)](https://travis-ci.org/pinchtozoom/format_url)


Format and validate a URL attribute in Active Record. This is an example gem created and based on [RailsCasts episode #301](http://railscasts.com/episodes/301-extracting-a-ruby-gem).

## Installation

Add this line to your application's Gemfile:

    gem 'format_url'

And then execute:

    $ bundle

Or install it yourself as:

    $ gem install format_url

## Usage
Call `format_url` in an ActiveRecord class and pass the name of the attribute you wish to format into a URL and validate.

```ruby
class MyClass < ActiveRecord::Base
	format_url :website
end
```
 
This will automatically add "http://" to the beginning of the `website` attribute upon saving if no protocol is present. It will also do validation to ensure it looks like a URL.
 
## Contributing

1. Fork it
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create new Pull Request

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
format_url-0.0.4 README.md
format_url-0.0.3 README.md
format_url-0.0.2 README.md