rpush 3.0.0.rc1 → 3.0.0
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/CHANGELOG.md +8 -0
- data/README.md +1 -1
- data/lib/rpush/client/redis.rb +7 -0
- data/lib/rpush/version.rb +1 -1
- metadata +7 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a8f2a74a02bdbe5ecf64c56bc49c902323f83909
|
4
|
+
data.tar.gz: 540450b066477d270e5353effbe785869505629e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3bdbc2cb55f29f1e3b52acbb7ffa3e1235c7ed46445926ac7ff7911c302c9a3041449c1c6e2db098ab0c755bca378cfd9fb9105e9c40326d79da92ab03b3b954
|
7
|
+
data.tar.gz: 119069fd3538688e302ce3a260fea35cafc15b4860fd8e9487dac567e4fee12c6d87188b9d1f29934fd2b3979192716aabe12294f0522f081499875785bd6eb4
|
data/CHANGELOG.md
CHANGED
@@ -12,6 +12,14 @@
|
|
12
12
|
|
13
13
|
- None
|
14
14
|
|
15
|
+
## 3.0.0 (2017-09-15)
|
16
|
+
|
17
|
+
Same as 3.0.0.rc1 including:
|
18
|
+
|
19
|
+
#### Features
|
20
|
+
|
21
|
+
* Added support for latest modis version ([#378](https://github.com/rpush/rpush/pull/378)) by [@milgner](https://github.com/milgner)
|
22
|
+
|
15
23
|
## 3.0.0.rc1 (2017-08-31)
|
16
24
|
|
17
25
|
When upgrading, don't forget to run `bundle exec rpush init` to get all the latest migrations.
|
data/README.md
CHANGED
@@ -28,7 +28,7 @@ Rpush aims to be the *de facto* gem for sending push notifications in Ruby. Its
|
|
28
28
|
* Scales vertically (threading) and horizontally (multiple processes).
|
29
29
|
* Designed for uptime - new apps are loaded automatically, signal `HUP` to update running apps.
|
30
30
|
* Hooks for fine-grained instrumentation and error handling ([Reflection API](https://github.com/rpush/rpush/wiki/Reflection-API)).
|
31
|
-
*
|
31
|
+
* Tested with **MRI**
|
32
32
|
|
33
33
|
|
34
34
|
### Getting Started
|
data/lib/rpush/client/redis.rb
CHANGED
@@ -41,3 +41,10 @@ require 'rpush/client/redis/wns/badge_notification'
|
|
41
41
|
Modis.configure do |config|
|
42
42
|
config.namespace = :rpush
|
43
43
|
end
|
44
|
+
|
45
|
+
# Prevent diverging Redis namespaces for subclasses as introduced by Modis 1.4.2
|
46
|
+
Rpush::Client::Redis::Notification.subclasses.each do |notification_class|
|
47
|
+
notification_class.class_eval do
|
48
|
+
self.namespace = Rpush::Client::Redis::Notification.namespace
|
49
|
+
end
|
50
|
+
end
|
data/lib/rpush/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rpush
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.0
|
4
|
+
version: 3.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ian Leitch
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-
|
11
|
+
date: 2017-09-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: multi_json
|
@@ -190,14 +190,14 @@ dependencies:
|
|
190
190
|
requirements:
|
191
191
|
- - '='
|
192
192
|
- !ruby/object:Gem::Version
|
193
|
-
version: 1.4.
|
193
|
+
version: 1.4.2
|
194
194
|
type: :development
|
195
195
|
prerelease: false
|
196
196
|
version_requirements: !ruby/object:Gem::Requirement
|
197
197
|
requirements:
|
198
198
|
- - '='
|
199
199
|
- !ruby/object:Gem::Version
|
200
|
-
version: 1.4.
|
200
|
+
version: 1.4.2
|
201
201
|
- !ruby/object:Gem::Dependency
|
202
202
|
name: rpush-redis
|
203
203
|
requirement: !ruby/object:Gem::Requirement
|
@@ -577,12 +577,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
577
577
|
version: 2.2.2
|
578
578
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
579
579
|
requirements:
|
580
|
-
- - "
|
580
|
+
- - ">="
|
581
581
|
- !ruby/object:Gem::Version
|
582
|
-
version:
|
582
|
+
version: '0'
|
583
583
|
requirements: []
|
584
584
|
rubyforge_project:
|
585
|
-
rubygems_version: 2.6.
|
585
|
+
rubygems_version: 2.6.13
|
586
586
|
signing_key:
|
587
587
|
specification_version: 4
|
588
588
|
summary: The push notification service for Ruby.
|