main
Washington Botelho 2017-11-03 00:08:39 -02:00
parent 722eb9ef05
commit 135b1f67ab
No known key found for this signature in database
GPG Key ID: BECE10A8106CC7A0
3 changed files with 10 additions and 3 deletions

View File

@ -1,3 +1,10 @@
## v0.2.0
### News
- Scope support to be possible rate item from a resource;
- Author model type where zero rating record is not generated on record creation.
## v0.1.0 ## v0.1.0
- First release. - First release.

View File

@ -1,7 +1,7 @@
PATH PATH
remote: . remote: .
specs: specs:
rating (0.1.0) rating (0.2.0)
rails (>= 4.2, < 6) rails (>= 4.2, < 6)
GEM GEM
@ -61,7 +61,7 @@ GEM
railties (>= 3.0.0) railties (>= 3.0.0)
globalid (0.4.1) globalid (0.4.1)
activesupport (>= 4.2.0) activesupport (>= 4.2.0)
i18n (0.9.0) i18n (0.9.1)
concurrent-ruby (~> 1.0) concurrent-ruby (~> 1.0)
loofah (2.1.1) loofah (2.1.1)
crass (~> 1.0.2) crass (~> 1.0.2)

View File

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