notification-pusher 1.0.0.beta2 → 1.0.0.beta3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +19 -2
- metadata +22 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c51f8fd72ad663d96231103fedff159d7f8ca7275345fcd5489ca0dafc189cde
|
4
|
+
data.tar.gz: dc42da9f21f65fa61d9cb7df0520092ac993d85a8f31e93897b9d0905222e1c5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b242e79f95bd57ca58f52cb417852bc22e9eaa82113220ee46149a4fa8be2a24d805305d0176d8477e4cbc2085f5f96ca1a0cf49058dbcfa6ebda61b500c2b2d
|
7
|
+
data.tar.gz: 9d00892957ebfdd7396f03c3753004da9f56e0b9867a8ebfbd59d866010de496838c4892e482e468e1af8afcf30335430cd6d2809c86dc124a4abbace850b1fd
|
data/README.md
CHANGED
@@ -2,12 +2,13 @@
|
|
2
2
|
|
3
3
|
[![Gem Version](https://badge.fury.io/rb/notifications-rails.svg)](https://badge.fury.io/rb/notifications-rails) <img src="https://travis-ci.org/jonhue/notifications-rails.svg?branch=master" />
|
4
4
|
|
5
|
-
The most powerful
|
5
|
+
The most powerful notification solution for Rails. NotificationsRails simplifies the handling, rendering, user-integration and cross-platform pushing of notifications through its simple API.
|
6
6
|
|
7
7
|
---
|
8
8
|
|
9
9
|
## Table of Contents
|
10
10
|
|
11
|
+
* [Philosophy](#philosophy)
|
11
12
|
* [Installation](#installation)
|
12
13
|
* [To Do](#to-do)
|
13
14
|
* [Contributing](#contributing)
|
@@ -17,6 +18,22 @@ The most powerful (cross-platform) notifications handler & pusher API for Rails.
|
|
17
18
|
|
18
19
|
---
|
19
20
|
|
21
|
+
## Philosophy
|
22
|
+
|
23
|
+
NotificationsRails has been built with modularity in mind. It currently consists of four components each of which bringing one essential functionality to the notification-integration in your Rails app.
|
24
|
+
|
25
|
+
**[NotificationHandler](notification-handler):** Create and modify your notifications through a simple API.
|
26
|
+
|
27
|
+
**[NotificationRenderer](notification-renderer):** Render your notifications on multiple platforms by specifying notification types.
|
28
|
+
|
29
|
+
**[NotificationPusher](notification-pusher):** Push your notifications to various services. Including [Email](notification-pusher-actionmailer), [ActionCable](notification-pusher-actioncable), [OneSignal](notification-pusher-onesignal).
|
30
|
+
|
31
|
+
**[NotificationSettings](notification-settings):** Integrates with your authentication solution to craft a personalized user notification platform.
|
32
|
+
|
33
|
+
You may just add the components you actually need, or instead use this gem to bundle everything for a complete notification solution.
|
34
|
+
|
35
|
+
---
|
36
|
+
|
20
37
|
## Installation
|
21
38
|
|
22
39
|
NotificationsRails works with Rails 5 onwards. You can add it to your `Gemfile` with:
|
@@ -53,7 +70,7 @@ To propose your ideas, initiate the discussion by adding a [new issue](https://g
|
|
53
70
|
|
54
71
|
We hope that you will consider contributing to NotificationsRails. Please read this short overview for some information about how to get started:
|
55
72
|
|
56
|
-
[Learn more about contributing to this repository](
|
73
|
+
[Learn more about contributing to this repository](CONTRIBUTING.md), [Code of Conduct](CODE_OF_CONDUCT.md)
|
57
74
|
|
58
75
|
### Contributors
|
59
76
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: notification-pusher
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.0.
|
4
|
+
version: 1.0.0.beta3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jonas Hübotter
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-12-
|
11
|
+
date: 2017-12-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: railties
|
@@ -30,14 +30,28 @@ dependencies:
|
|
30
30
|
requirements:
|
31
31
|
- - '='
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: 1.0.0.
|
33
|
+
version: 1.0.0.beta3
|
34
34
|
type: :runtime
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
38
|
- - '='
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version: 1.0.0.
|
40
|
+
version: 1.0.0.beta3
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: notification-renderer
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - '='
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: 1.0.0.beta3
|
48
|
+
type: :runtime
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - '='
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: 1.0.0.beta3
|
41
55
|
- !ruby/object:Gem::Dependency
|
42
56
|
name: rspec
|
43
57
|
requirement: !ruby/object:Gem::Requirement
|
@@ -66,7 +80,8 @@ dependencies:
|
|
66
80
|
- - "~>"
|
67
81
|
- !ruby/object:Gem::Version
|
68
82
|
version: '0.52'
|
69
|
-
description:
|
83
|
+
description: Push your notifications to various services. Including Email, ActionCable,
|
84
|
+
OneSignal (cross-platform notifications).
|
70
85
|
email: jonas.huebotter@gmail.com
|
71
86
|
executables: []
|
72
87
|
extensions: []
|
@@ -97,5 +112,6 @@ rubyforge_project:
|
|
97
112
|
rubygems_version: 2.7.3
|
98
113
|
signing_key:
|
99
114
|
specification_version: 4
|
100
|
-
summary:
|
115
|
+
summary: Push your notifications to various services. Including Email, ActionCable,
|
116
|
+
OneSignal (cross-platform notifications)
|
101
117
|
test_files: []
|