simple_notifications 1.2.4 → 1.2.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/lib/simple_notifications/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 176abf798609a9d7849e069f18b3e7b4f2fa0b009ce901895f1fea7393cc4f3e
|
4
|
+
data.tar.gz: f183556171d4163ca6467345e61da228f0647de7400a8115c8af5951ed0bec68
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fa42d2715c5b9f2948bf836929d5451b49958cb030b3c7c0cdede5abb99835c6190c8d172f35b12c77e1ab174ea81afcb868ae8bf718cff55722e813c5817a81
|
7
|
+
data.tar.gz: 5fcfbe382ed113b22cc5a0714e86573e66f21777b44d7ba82f30bd320e30d04f4824bd2a5b4035cf1a193d936c0e479f7182b61c14003d2cf74013135f75469d
|
data/README.md
CHANGED
@@ -38,7 +38,7 @@ rails generate simple_notifications:install
|
|
38
38
|
rails db:migrate
|
39
39
|
```
|
40
40
|
|
41
|
-
Add the following line to the model for which notifications functionality is required.
|
41
|
+
Add the following line to the model(after all the associations defined) for which notifications functionality is required.
|
42
42
|
Here [Post] is the model which is the base for notification to happen i.e Event is performed on Post.
|
43
43
|
|
44
44
|
```ruby
|