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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 313db5c0e717a058a8173db83e628916a1a84bf6
4
- data.tar.gz: f66c47f5002e723404c901b50820c31af2c97e6e
3
+ metadata.gz: c5b6fbb25e144828f84681e32d65e13c94a5a12c
4
+ data.tar.gz: d23c3286e1f4a679fb2fe879bdb93afb3310bac8
5
5
  SHA512:
6
- metadata.gz: dc8aec70091ccbba4094935e162fde56b6640293ad39b74dfa1b8864ae3a1c5276989d750f71ea23c15b4ed4706ba1c25d291e1cc8763f7818d9b6b7fd7c4dde
7
- data.tar.gz: 1113d4fca3b006ed0b5ba8f40baf6fcf8c5cc1eb5d8ef0d95e9c79c288e9166a745f31a6cb0fc72d52cf1c3b585c8b0642800819a7d243339b365abdc3bcad96
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
- Please refer to the [notifiable-rails](https://github.com/FutureWorkshops/notifiable-rails) Readme for further information.
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|
@@ -1,7 +1,7 @@
1
1
  module Notifiable
2
2
  module Apns
3
3
  module Grocer
4
- VERSION = "0.12.1"
4
+ VERSION = "0.12.2"
5
5
  end
6
6
  end
7
7
  end
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.1
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: 2015-11-29 00:00:00.000000000 Z
12
+ date: 2016-01-25 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: notifiable-rails