notifiable-apns-grocer 0.12.1 → 0.12.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +27 -1
- data/lib/notifiable/apns/grocer/stream.rb +3 -2
- data/lib/notifiable/apns/grocer/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c5b6fbb25e144828f84681e32d65e13c94a5a12c
|
4
|
+
data.tar.gz: d23c3286e1f4a679fb2fe879bdb93afb3310bac8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ab6b085aaa30667da14dbbccde94de9dcc4dec53097be04663ef1735a134da2cdcbf9fdc569f1e697508baaf959353ab952633ec5af5468983a27f403b3d7f2c
|
7
|
+
data.tar.gz: 5e62a1e7761f2cad9a1df6958c114adaa9a45d745acfe36cb235facdc545ac4acae17d4f360375d165020a8e96fcf53b8a9b8e97ebde366e5aa57fc86fa19a77
|
data/README.md
CHANGED
@@ -1,3 +1,29 @@
|
|
1
1
|
# Notifiable::Apns::Grocer
|
2
2
|
|
3
|
-
|
3
|
+
TODO: Write a gem description
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add this line to your application's Gemfile:
|
8
|
+
|
9
|
+
gem 'notifiable-apns-grocer'
|
10
|
+
|
11
|
+
And then execute:
|
12
|
+
|
13
|
+
$ bundle
|
14
|
+
|
15
|
+
Or install it yourself as:
|
16
|
+
|
17
|
+
$ gem install notifiable-apns-grocer
|
18
|
+
|
19
|
+
## Usage
|
20
|
+
|
21
|
+
TODO: Write usage instructions here
|
22
|
+
|
23
|
+
## Contributing
|
24
|
+
|
25
|
+
1. Fork it
|
26
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
27
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
28
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
29
|
+
5. Create new Pull Request
|
@@ -45,9 +45,10 @@ module Notifiable
|
|
45
45
|
raise "Certificate missing" if certificate.nil?
|
46
46
|
|
47
47
|
grocer_notification = ::Grocer::Notification.new(
|
48
|
-
device_token: device_token.token,
|
48
|
+
device_token: device_token.token,
|
49
49
|
alert: localized_notification.message,
|
50
|
-
custom: localized_notification.send_params
|
50
|
+
custom: localized_notification.send_params,
|
51
|
+
sound: "default"
|
51
52
|
)
|
52
53
|
|
53
54
|
pusher_pool.with do |pusher|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: notifiable-apns-grocer
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.12.
|
4
|
+
version: 0.12.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Kamil Kocemba
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2016-01-25 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: notifiable-rails
|