notification-renderer 1.0.0.beta2 → 1.0.0.beta3

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.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +19 -2
  3. metadata +8 -6
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e35c558ef120efa94fe1091d7901881131024e2e642924fcd22ce1dfcdd359d9
4
- data.tar.gz: 86a460ec4f77c802da8476f59e1ccf4173c19ecf47b98e14bc5557aba838f003
3
+ metadata.gz: 047a1b2281e096172e2266edc3e31a20103f3683e73579ce13e4dd5a5595f17e
4
+ data.tar.gz: 49de13ce8ff617c2e2334751fd878bd9b8f32586955756dcfd807fbd2404f6aa
5
5
  SHA512:
6
- metadata.gz: 6b9147e40f21e21ca8d7d32ee937b2246960886cfc5c504ef99a45d5e9d7414ab52ebb1f884cfcafb826ebe957721fd302f9c047d3685616c4fa08b45792349a
7
- data.tar.gz: e8073a9ab499471123823a96a9e610b59df6c4ccc0699dbc706111bf955b1e1a253f829fc14fe722afd8dcb09246b8d4d3e3613b1e50d620792b663958060391
6
+ metadata.gz: 3e2fb4e46a692d956880c8ffdb87dc7584eed8f9066c9c78f852b3a1552d90585e96c1d4b9ee77171197643b2c4a3af9125381e9616b3aae663473af7e579446
7
+ data.tar.gz: a0e5a992461c25e3d474c1973f656a0e9690626f88f49fddd4c4764c3473de5e5774fcf1f78a24d382ec71bfb59203efd7dbb31a8f1dacc52b5715aaf5cb89a6
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 (cross-platform) notifications handler & pusher API for Rails.
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](https://github.com/jonhue/notifications-rails/blob/master/CONTRIBUTING.md), [Code of Conduct](https://github.com/jonhue/notifications-rails/blob/master/CODE_OF_CONDUCT.md)
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-renderer
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0.beta2
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-23 00:00:00.000000000 Z
11
+ date: 2017-12-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: railties
@@ -44,14 +44,14 @@ dependencies:
44
44
  requirements:
45
45
  - - '='
46
46
  - !ruby/object:Gem::Version
47
- version: 1.0.0.beta2
47
+ version: 1.0.0.beta3
48
48
  type: :runtime
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
52
  - - '='
53
53
  - !ruby/object:Gem::Version
54
- version: 1.0.0.beta2
54
+ version: 1.0.0.beta3
55
55
  - !ruby/object:Gem::Dependency
56
56
  name: rspec
57
57
  requirement: !ruby/object:Gem::Requirement
@@ -80,7 +80,8 @@ dependencies:
80
80
  - - "~>"
81
81
  - !ruby/object:Gem::Version
82
82
  version: '0.52'
83
- description: "..."
83
+ description: Render your notifications on multiple platforms by specifying notification
84
+ types.
84
85
  email: jonas.huebotter@gmail.com
85
86
  executables: []
86
87
  extensions: []
@@ -111,5 +112,6 @@ rubyforge_project:
111
112
  rubygems_version: 2.7.3
112
113
  signing_key:
113
114
  specification_version: 4
114
- summary: "..."
115
+ summary: Render your notifications on multiple platforms by specifying notification
116
+ types
115
117
  test_files: []