notification-settings 1.2.5 → 1.2.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/LICENSE +21 -21
- data/README.md +271 -271
- data/app/models/notification_settings/setting.rb +15 -13
- data/app/models/notification_settings/subscription.rb +15 -13
- data/lib/generators/notification_settings/install_generator.rb +40 -43
- data/lib/generators/templates/install/initializer.rb +28 -24
- data/lib/generators/templates/install/notifications_migration.rb.erb +27 -29
- data/lib/notification-settings.rb +15 -15
- data/lib/notification_settings/configuration.rb +30 -32
- data/lib/notification_settings/engine.rb +9 -7
- data/lib/notification_settings/notification_library.rb +144 -72
- data/lib/notification_settings/notification_scopes.rb +28 -30
- data/lib/notification_settings/setting_library.rb +60 -28
- data/lib/notification_settings/subscribable.rb +50 -42
- data/lib/notification_settings/subscriber.rb +35 -30
- data/lib/notification_settings/subscription_library.rb +23 -25
- data/lib/notification_settings/target.rb +27 -26
- metadata +46 -34
- data/CHANGELOG.md +0 -59
- data/lib/generators/templates/install/README.md +0 -1
data/CHANGELOG.md
DELETED
@@ -1,59 +0,0 @@
|
|
1
|
-
# Changelog
|
2
|
-
|
3
|
-
### master
|
4
|
-
|
5
|
-
* nothing yet
|
6
|
-
|
7
|
-
### 1.2.2 - 2018/01/02
|
8
|
-
|
9
|
-
* bugfixes
|
10
|
-
* fixed `subscribe' method
|
11
|
-
|
12
|
-
### 1.2.1 - 2018/01/02
|
13
|
-
|
14
|
-
* bugfixes
|
15
|
-
* fixed `undefined method 'create!' for nil:NilClass` when creating `notification_target` objects
|
16
|
-
|
17
|
-
### 1.2.0 - 2018/01/02
|
18
|
-
|
19
|
-
* features
|
20
|
-
* added dependents functionality to subscribers feature
|
21
|
-
* bugfixes
|
22
|
-
* fixed `uninitialized constant NotificationSettings::Object`
|
23
|
-
|
24
|
-
### 1.1.2 - 2018/01/01
|
25
|
-
|
26
|
-
* bugfixes
|
27
|
-
* fixed length of indexes in generated migration files
|
28
|
-
|
29
|
-
### 1.0.0 - 2017/12/28
|
30
|
-
|
31
|
-
* bugfixes
|
32
|
-
|
33
|
-
### 1.0.0.beta6 - 2017/12/28
|
34
|
-
|
35
|
-
* bugfixes
|
36
|
-
* fix lib loading problems
|
37
|
-
|
38
|
-
### 1.0.0.beta5 - 2017/12/28
|
39
|
-
|
40
|
-
* bugfixes
|
41
|
-
* fix generators
|
42
|
-
* fix lib loading problems
|
43
|
-
* fix syntax errors
|
44
|
-
|
45
|
-
### 1.0.0.beta4 - 2017/12/27
|
46
|
-
|
47
|
-
* features
|
48
|
-
* add settings functionality
|
49
|
-
* add `category` attribute to `Notification` instances
|
50
|
-
* add subscription functonality
|
51
|
-
|
52
|
-
### 1.0.0.beta3 - 2017/12/25
|
53
|
-
|
54
|
-
* features
|
55
|
-
* add `Setting` ActiveRecord model
|
56
|
-
|
57
|
-
### 1.0.0.beta1 - 2017/12/22
|
58
|
-
|
59
|
-
* initial release
|
@@ -1 +0,0 @@
|
|
1
|
-
Now run `rails db:migrate` to add NotificationSettings to your database.
|