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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d3a376996f25fb2305f09b2cf069aaddf26e5d6f
4
- data.tar.gz: 9add19dd6ade95761aee96acdf7eac4149e8e8b6
3
+ metadata.gz: a8f2a74a02bdbe5ecf64c56bc49c902323f83909
4
+ data.tar.gz: 540450b066477d270e5353effbe785869505629e
5
5
  SHA512:
6
- metadata.gz: 3bb61ed7f84c1a43a8aafc2f212f1b0cdff0f8d06b9d3ff1995959f63627cb23ddc98ab48c1ca723552c44538038231d771b238749d69eb215197ac45e7045ef
7
- data.tar.gz: ea5dea83855836f46ce6a35a48e5b35104f9979650b50370604bf8c0fe3de128b38db75f61ff714465b2593b3d0398af6dc4d303e8f7f2b2fef7147aeaf16d98
6
+ metadata.gz: 3bdbc2cb55f29f1e3b52acbb7ffa3e1235c7ed46445926ac7ff7911c302c9a3041449c1c6e2db098ab0c755bca378cfd9fb9105e9c40326d79da92ab03b3b954
7
+ data.tar.gz: 119069fd3538688e302ce3a260fea35cafc15b4860fd8e9487dac567e4fee12c6d87188b9d1f29934fd2b3979192716aabe12294f0522f081499875785bd6eb4
@@ -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
- * Works with **MRI**, **JRuby** and **Rubinius**.
31
+ * Tested with **MRI**
32
32
 
33
33
 
34
34
  ### Getting Started
@@ -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
@@ -3,7 +3,7 @@ module Rpush
3
3
  MAJOR = 3
4
4
  MINOR = 0
5
5
  TINY = 0
6
- PRE = 'rc1'.freeze
6
+ PRE = nil
7
7
 
8
8
  STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".").freeze
9
9
 
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.rc1
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-08-31 00:00:00.000000000 Z
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.1
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.1
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: 1.3.1
582
+ version: '0'
583
583
  requirements: []
584
584
  rubyforge_project:
585
- rubygems_version: 2.6.12
585
+ rubygems_version: 2.6.13
586
586
  signing_key:
587
587
  specification_version: 4
588
588
  summary: The push notification service for Ruby.