mirror of
https://github.com/danbee/slugtastic
synced 2025-03-04 08:49:05 +00:00
36 lines
1011 B
Markdown
36 lines
1011 B
Markdown
# Slugtastic [](http://travis-ci.org/danbee/slugtastic)
|
|
|
|
Simple gem for autogenerating permalink style slugs for your ActiveRecord models.
|
|
|
|
## Installation
|
|
|
|
Add this line to your application's Gemfile:
|
|
|
|
gem 'slugtastic'
|
|
|
|
And then execute:
|
|
|
|
$ bundle
|
|
|
|
Or install it yourself as:
|
|
|
|
$ gem install slugtastic
|
|
|
|
## Usage
|
|
|
|
Usage is very simple. Just add the following to your model:
|
|
|
|
has_slug :slug, :from => :title
|
|
|
|
This will generate a slug string from the title atrribute and store it in the slug attribute unless the slug already contains a string. The slug is generated pre-validation so you can still use `validates_presence_of :slug`.
|
|
|
|
There are no extra options at present.
|
|
|
|
## Contributing
|
|
|
|
1. Fork it
|
|
2. Create your feature branch (`git checkout -b my-new-feature`)
|
|
3. Commit your changes (`git commit -am 'Added some feature'`)
|
|
4. Push to the branch (`git push origin my-new-feature`)
|
|
5. Create new Pull Request
|