notifiable-apns-apnotic 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile +0 -3
- data/lib/notifiable/apns/apnotic/async.rb +1 -1
- data/lib/notifiable/apns/apnotic/version.rb +1 -1
- data/notifiable-apns-apnotic.gemspec +1 -0
- metadata +15 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 89a86f78707e451c2071a10a18b529a0b855038f7a4742998ba3b062c52914e0
|
4
|
+
data.tar.gz: 6aa239130c44d0c394628325e99e01d7fffb524c30724a866f61bd6ac81bb9e0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2edf7dfd9065411dda766acb1fd0ac8c28b59b27597b533924e9337bda4983a216902140c100fadc8d6a35c8ff0bf11a51b574fcc5a3fdc40a9dbad0354d0ca7
|
7
|
+
data.tar.gz: 7e99fb7c9d1d9b8594756d4621089583926b332626d3e0eacca7d4e817dcd2d4cead7ddbd59b73dd45324b4719498962e8261bd08b53ceb3bf9b2eadd7415e3e
|
data/Gemfile
CHANGED
@@ -19,7 +19,7 @@ module Notifiable
|
|
19
19
|
raise "certificate missing" if certificate.nil?
|
20
20
|
raise "bundle_id missing" if bundle_id.nil?
|
21
21
|
|
22
|
-
connection = ::Apnotic::Connection.new(cert_path: certificate, cert_pass: passphrase, url: url)
|
22
|
+
connection = ::Apnotic::Connection.new(cert_path: StringIO.new(certificate), cert_pass: passphrase, url: url)
|
23
23
|
|
24
24
|
apnotic_notification = build_notification(device, notification)
|
25
25
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: notifiable-apns-apnotic
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Matt Brooke-Smith
|
@@ -80,6 +80,20 @@ dependencies:
|
|
80
80
|
- - "~>"
|
81
81
|
- !ruby/object:Gem::Version
|
82
82
|
version: '3.0'
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: sqlite3
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - "~>"
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '3.0'
|
90
|
+
type: :development
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - "~>"
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: '3.0'
|
83
97
|
description:
|
84
98
|
email:
|
85
99
|
- matt@futureworkshops.com
|