fcm 0.0.7 → 1.0.8
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/.github/workflows/ci.yml +30 -0
- data/.gitignore +1 -1
- data/Gemfile +1 -0
- data/README.md +89 -21
- data/fcm.gemspec +14 -15
- data/lib/fcm.rb +127 -61
- data/spec/fcm_spec.rb +177 -108
- metadata +35 -15
- data/.travis.yml +0 -8
metadata
CHANGED
@@ -1,43 +1,63 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fcm
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 1.0.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Kashif Rasul
|
8
8
|
- Shoaib Burq
|
9
|
-
autorequire:
|
9
|
+
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2022-04-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
|
+
- - "<"
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: '3.0'
|
24
|
+
type: :runtime
|
25
|
+
prerelease: false
|
26
|
+
version_requirements: !ruby/object:Gem::Requirement
|
27
|
+
requirements:
|
28
|
+
- - ">="
|
29
|
+
- !ruby/object:Gem::Version
|
30
|
+
version: 1.0.0
|
31
|
+
- - "<"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '3.0'
|
34
|
+
- !ruby/object:Gem::Dependency
|
35
|
+
name: googleauth
|
36
|
+
requirement: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '1'
|
21
41
|
type: :runtime
|
22
42
|
prerelease: false
|
23
43
|
version_requirements: !ruby/object:Gem::Requirement
|
24
44
|
requirements:
|
25
|
-
- -
|
45
|
+
- - "~>"
|
26
46
|
- !ruby/object:Gem::Version
|
27
|
-
version:
|
47
|
+
version: '1'
|
28
48
|
description: fcm provides ruby bindings to Firebase Cloud Messaging (FCM) a cross-platform
|
29
49
|
messaging solution that lets you reliably deliver messages and notifications at
|
30
50
|
no cost to Android, iOS or Web browsers.
|
31
51
|
email:
|
32
|
-
- kashif@
|
33
|
-
- shoaib@
|
52
|
+
- kashif@decision-labs.com
|
53
|
+
- shoaib@decision-labs.com
|
34
54
|
executables: []
|
35
55
|
extensions: []
|
36
56
|
extra_rdoc_files: []
|
37
57
|
files:
|
58
|
+
- ".github/workflows/ci.yml"
|
38
59
|
- ".gitignore"
|
39
60
|
- ".rspec"
|
40
|
-
- ".travis.yml"
|
41
61
|
- Gemfile
|
42
62
|
- LICENSE.txt
|
43
63
|
- README.md
|
@@ -46,11 +66,11 @@ files:
|
|
46
66
|
- lib/fcm.rb
|
47
67
|
- spec/fcm_spec.rb
|
48
68
|
- spec/spec_helper.rb
|
49
|
-
homepage: https://github.com/
|
69
|
+
homepage: https://github.com/decision-labs/fcm
|
50
70
|
licenses:
|
51
71
|
- MIT
|
52
72
|
metadata: {}
|
53
|
-
post_install_message:
|
73
|
+
post_install_message:
|
54
74
|
rdoc_options: []
|
55
75
|
require_paths:
|
56
76
|
- lib
|
@@ -58,15 +78,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
58
78
|
requirements:
|
59
79
|
- - ">="
|
60
80
|
- !ruby/object:Gem::Version
|
61
|
-
version: 2.
|
81
|
+
version: 2.4.0
|
62
82
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
63
83
|
requirements:
|
64
84
|
- - ">="
|
65
85
|
- !ruby/object:Gem::Version
|
66
86
|
version: '0'
|
67
87
|
requirements: []
|
68
|
-
rubygems_version: 3.
|
69
|
-
signing_key:
|
88
|
+
rubygems_version: 3.2.22
|
89
|
+
signing_key:
|
70
90
|
specification_version: 4
|
71
91
|
summary: Reliably deliver messages and notifications via FCM
|
72
92
|
test_files:
|