main
Washington Botelho 2018-03-02 15:18:38 -03:00
parent 4c62090d0e
commit 09010f5ee2
No known key found for this signature in database
GPG Key ID: 5DE4F42A8F073617
3 changed files with 14 additions and 3 deletions

View File

@ -1,3 +1,14 @@
## v0.7.0
### News
- Support to configure `uniqueness` validation via YAML into Rating::Rate model;
- Support to multiple scopes via `extra_scopes` option.
### Updates
- Reverts v0.6.0, since we need this validation because we cannot edit the Rate model by ourself.
## v0.6.0 ## v0.6.0
### Updates ### Updates

View File

@ -1,7 +1,7 @@
PATH PATH
remote: . remote: .
specs: specs:
rating (0.6.0) rating (0.7.0)
activerecord (>= 4.2, < 6) activerecord (>= 4.2, < 6)
GEM GEM
@ -68,7 +68,7 @@ GEM
byebug (~> 10.0) byebug (~> 10.0)
pry (~> 0.10) pry (~> 0.10)
rack (2.0.4) rack (2.0.4)
rack-test (0.8.2) rack-test (0.8.3)
rack (>= 1.0, < 3) rack (>= 1.0, < 3)
rails-dom-testing (2.0.3) rails-dom-testing (2.0.3)
activesupport (>= 4.2.0) activesupport (>= 4.2.0)

View File

@ -1,5 +1,5 @@
# frozen_string_literal: true # frozen_string_literal: true
module Rating module Rating
VERSION = '0.6.0' VERSION = '0.7.0'
end end