apns_gatling 0.1.4 → 0.1.5

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: 1493bcf5a7c4d74fc07af34a6bd211dfdb0c610d
4
- data.tar.gz: 073a4d8e270b33c37a01292ead01613a4558b23f
3
+ metadata.gz: 3ded821dd7dfeeffc971eda81795497a104199b5
4
+ data.tar.gz: 1eb94b36a9459b19bebfd949d3767d0b795b7f0b
5
5
  SHA512:
6
- metadata.gz: a60d98e81731bca84423969a70a076a26ffa7882a4a502dd9237ef68a3a524ea694985b785d67331edfe5bf19fc8681119e4a81b42cc7df815afcb669aec49da
7
- data.tar.gz: f09a63c0dabe5d194431dbcd88c9b71b4e7379077954962f353da675d5129737c17e4d0d0ba3d60c9d4a3840e2e689e558c8a5accc4c0bcb3ed897e4717b3b1a
6
+ metadata.gz: d73fdc6ae1080d33b4a37e0f24b841961756ac111142e98fa4738e6d7c644885c5f7234b998e8518b788569137a2b930093f32957c7d55119048d2ec8ae90309
7
+ data.tar.gz: 6c5fe03e2ccd0e302c6a1d7b664ad18da3d3ba6aac51def687f10e2b5640c2cef241a26aed50ee738162a736f4addcf0987b61160ffa909040010dd6fa1aab33
@@ -7,7 +7,7 @@ module ApnsGatling
7
7
  MAXIMUM_PAYLOAD_SIZE = 4096
8
8
 
9
9
  attr_reader :token
10
- attr_accessor :alert, :badge, :sound, :content_available, :category, :custom_payload, :thread_id
10
+ attr_accessor :alert, :badge, :sound, :content_available, :mutable_content, :category, :custom_payload, :thread_id
11
11
  attr_accessor :apns_id, :expiration, :priority, :topic, :apns_collapse_id
12
12
 
13
13
  def initialize(token)
@@ -31,6 +31,7 @@ module ApnsGatling
31
31
  aps.merge!(sound: sound) if sound
32
32
  aps.merge!(category: category) if category
33
33
  aps.merge!('content-available' => content_available) if content_available
34
+ aps.merge!('mutable-content' => mutable_content) if mutable_content
34
35
  aps.merge!('thread-id' => thread_id) if thread_id
35
36
 
36
37
  message = {aps: aps}
@@ -1,3 +1,3 @@
1
1
  module ApnsGatling
2
- VERSION = "0.1.4"
2
+ VERSION = "0.1.5"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: apns_gatling
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4
4
+ version: 0.1.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Cloud
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2017-06-19 00:00:00.000000000 Z
11
+ date: 2017-08-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: http-2