Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/madwork/validates_duplicity_of
ActiveRecord callback which handle the name duplication in your model.
https://github.com/madwork/validates_duplicity_of
activerecord callback rails
Last synced: about 1 month ago
JSON representation
ActiveRecord callback which handle the name duplication in your model.
- Host: GitHub
- URL: https://github.com/madwork/validates_duplicity_of
- Owner: madwork
- License: mit
- Created: 2013-10-17T14:25:07.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2016-09-20T16:42:28.000Z (over 8 years ago)
- Last Synced: 2024-12-15T22:15:26.604Z (about 1 month ago)
- Topics: activerecord, callback, rails
- Language: Ruby
- Size: 23.4 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# validates_duplicity_of
[![Build Status](https://travis-ci.org/madwork/validates_duplicity_of.svg)](https://travis-ci.org/madwork/validates_duplicity_of)
[![Gem](https://badge.fury.io/rb/validates_duplicity_of.svg)](https://rubygems.org/gems/validates_duplicity_of)ActiveRecord (>= 3.2) callback which handle the name duplication in your model with ease.
Ruby 2 only!**Example:**
Untitled File > Untitled File (1) > Untitled File (2) ...
## Installation
Add this line to your application's Gemfile:
```ruby
gem 'validates_duplicity_of'
```And then execute:
$ bundle
Or install it yourself as:
$ gem install validates_duplicity_of
## Usage
Use the method `validates_duplicity_of` with an attribute in your Rails model. The scope is optional.
```ruby
class Post < ActiveRecord::Base
validates_duplicity_of :name
endpost = Post.create name: "Foo"
post.name
=> "Foo"post = Post.create name: "Foo"
post.name
=> "Foo (1)"class Note < ActiveRecord::Base
validates_duplicity_of :title, scope: :user_id
endnote = Note.create title: "Bar", user_id: 1
note.title
=> "Bar"note = Note.create title: "Bar", user_id: 1
note.title
=> "Bar (1)"
```## Development
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
## Contributing
Bug reports and pull requests are welcome on GitHub at https://github.com/madwork/validates_duplicity_of.
## License
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).