fcm 0.0.7 → 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.travis.yml +3 -4
- data/README.md +8 -7
- data/fcm.gemspec +3 -5
- metadata +7 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 669cf627dbb2e11a30f9f928779e57b6bc286a810b81e86c7195bfbf8d4ecbb8
|
4
|
+
data.tar.gz: fe47f7b32e14cde7bf0c4cf60543fc8c25a5e9864c7f99d24d52bfd18a4ea8f0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 79460ba0dbb3d745694ed028dccb56d73f83f657b920faf840bf86a2d827b33f14a6b45586ddfa7f1d9ef94781e2a4fd1c36bf16e666ce4098545dc339026084
|
7
|
+
data.tar.gz: 7cb6107df0467f1c6b9a10bf8b09709bee93a8c47fd5896a6e2858fa34539cbe924503d1a4271f72cec3b223c53fde15cff0bfc2171a219d188cf55896043178
|
data/.travis.yml
CHANGED
data/README.md
CHANGED
@@ -19,14 +19,10 @@ gem 'fcm'
|
|
19
19
|
|
20
20
|
For Android you will need a device running 2.3 (or newer) that also have the Google Play Store app installed, or an emulator running Android 2.3 with Google APIs. iOS devices are also supported.
|
21
21
|
|
22
|
-
One of the following, tested Ruby versions:
|
23
22
|
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
- `2.3.8`
|
28
|
-
- `2.4.5`
|
29
|
-
- `2.5.3`
|
23
|
+
A version of supported Ruby, currently:
|
24
|
+
`ruby >= 2.4`
|
25
|
+
|
30
26
|
|
31
27
|
## Usage
|
32
28
|
|
@@ -175,6 +171,11 @@ The guide to set up an iOS app to get notifications is here: [Setting up a FCM C
|
|
175
171
|
|
176
172
|
## ChangeLog
|
177
173
|
|
174
|
+
### 1.0.0
|
175
|
+
|
176
|
+
- Bumped supported ruby to `>= 2.4`
|
177
|
+
- Fix deprecation warnings from `faraday` by changing dependency version to `faraday 1.0.0`
|
178
|
+
|
178
179
|
### 0.0.7
|
179
180
|
|
180
181
|
- replace `httparty` with `faraday`
|
data/fcm.gemspec
CHANGED
@@ -3,7 +3,7 @@ $:.push File.expand_path("../lib", __FILE__)
|
|
3
3
|
|
4
4
|
Gem::Specification.new do |s|
|
5
5
|
s.name = "fcm"
|
6
|
-
s.version = "
|
6
|
+
s.version = "1.0.1"
|
7
7
|
s.platform = Gem::Platform::RUBY
|
8
8
|
s.authors = ["Kashif Rasul", "Shoaib Burq"]
|
9
9
|
s.email = ["kashif@spacialdb.com", "shoaib@spacialdb.com"]
|
@@ -12,14 +12,12 @@ Gem::Specification.new do |s|
|
|
12
12
|
s.description = %q{fcm provides ruby bindings to Firebase Cloud Messaging (FCM) a cross-platform messaging solution that lets you reliably deliver messages and notifications at no cost to Android, iOS or Web browsers.}
|
13
13
|
s.license = "MIT"
|
14
14
|
|
15
|
-
s.required_ruby_version = '>= 2.
|
16
|
-
|
17
|
-
s.rubyforge_project = "fcm"
|
15
|
+
s.required_ruby_version = '>= 2.4.0'
|
18
16
|
|
19
17
|
s.files = `git ls-files`.split("\n")
|
20
18
|
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
21
19
|
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
22
20
|
s.require_paths = ["lib"]
|
23
21
|
|
24
|
-
s.add_runtime_dependency('faraday','0.
|
22
|
+
s.add_runtime_dependency('faraday', '~> 1.0.0')
|
25
23
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fcm
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 1.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Kashif Rasul
|
@@ -9,22 +9,22 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2020-
|
12
|
+
date: 2020-05-16 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: faraday
|
16
16
|
requirement: !ruby/object:Gem::Requirement
|
17
17
|
requirements:
|
18
|
-
- -
|
18
|
+
- - "~>"
|
19
19
|
- !ruby/object:Gem::Version
|
20
|
-
version: 0.
|
20
|
+
version: 1.0.0
|
21
21
|
type: :runtime
|
22
22
|
prerelease: false
|
23
23
|
version_requirements: !ruby/object:Gem::Requirement
|
24
24
|
requirements:
|
25
|
-
- -
|
25
|
+
- - "~>"
|
26
26
|
- !ruby/object:Gem::Version
|
27
|
-
version: 0.
|
27
|
+
version: 1.0.0
|
28
28
|
description: fcm provides ruby bindings to Firebase Cloud Messaging (FCM) a cross-platform
|
29
29
|
messaging solution that lets you reliably deliver messages and notifications at
|
30
30
|
no cost to Android, iOS or Web browsers.
|
@@ -58,7 +58,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
58
58
|
requirements:
|
59
59
|
- - ">="
|
60
60
|
- !ruby/object:Gem::Version
|
61
|
-
version: 2.
|
61
|
+
version: 2.4.0
|
62
62
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
63
63
|
requirements:
|
64
64
|
- - ">="
|