fcm 0.0.7 → 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.travis.yml +3 -4
- data/README.md +8 -7
- data/fcm.gemspec +3 -5
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: dea7a47eae801d77518e6a53fee8740b99e0ba0ab62eb35d3bc56545ac44ceab
|
|
4
|
+
data.tar.gz: 8cac898bef85b9243f03573da25334298a206c6ed2492b3d18a20eb7d614e556
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ac7d34e4ebaf6c18dc60e915f7d915575b1e77401458163bd9eb3147277fc15ba42685939cf9d05b22ee585f9025f2dd3b4c40d4116f99778a8c8dbbd3b44b2f
|
|
7
|
+
data.tar.gz: 385fd1829ae861daac05bac042c52f141a23f6bed289311723d9f5c07ffbbe2130e1c18da55ad9b59fc8ee1c991d1e0472d8732a9d6392939327f605e4ee25a6
|
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 = "0.0
|
|
6
|
+
s.version = "1.0.0"
|
|
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: 0.0
|
|
4
|
+
version: 1.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Kashif Rasul
|
|
@@ -9,7 +9,7 @@ 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
|
|
@@ -17,14 +17,14 @@ dependencies:
|
|
|
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
|
- - ">="
|