fcm 0.0.7 → 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/.travis.yml +3 -4
  3. data/README.md +8 -7
  4. data/fcm.gemspec +3 -5
  5. metadata +5 -5
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4200d68170fc0c8cee514824e77244e51fc68802dc8ad6a34a1c592c11f36a71
4
- data.tar.gz: a70490fb7e92cf2ea66e53ba1cb58a5c8caad45b8d6bbbf1335bc13c3e49c774
3
+ metadata.gz: dea7a47eae801d77518e6a53fee8740b99e0ba0ab62eb35d3bc56545ac44ceab
4
+ data.tar.gz: 8cac898bef85b9243f03573da25334298a206c6ed2492b3d18a20eb7d614e556
5
5
  SHA512:
6
- metadata.gz: a5d276a776ddd9eed746f16e129c1820e27361e99fa3e6c6f8be14af04561a8f4dd520d4296bf632d31bb1269b4a8817e18bb3938d8992d736503e310dfbd8cb
7
- data.tar.gz: 7049ded384b5df8a097addbd96cce01ca559ddb6a61b8ec27e2f5fe06d7d4d70d0009b4d7bfa240dfe84598acfb917ce735ec4b8c6a71e072108d4ed1d6cc629
6
+ metadata.gz: ac7d34e4ebaf6c18dc60e915f7d915575b1e77401458163bd9eb3147277fc15ba42685939cf9d05b22ee585f9025f2dd3b4c40d4116f99778a8c8dbbd3b44b2f
7
+ data.tar.gz: 385fd1829ae861daac05bac042c52f141a23f6bed289311723d9f5c07ffbbe2130e1c18da55ad9b59fc8ee1c991d1e0472d8732a9d6392939327f605e4ee25a6
@@ -1,8 +1,7 @@
1
1
  language: ruby
2
2
  rvm:
3
- - 2.0.0
4
- - 2.1.10
5
- - 2.2.10
6
- - 2.3.8
3
+ - 2.4.0
7
4
  - 2.4.5
8
5
  - 2.5.3
6
+ - 2.6.1
7
+ - 2.7.0
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
- - `2.0.0`
25
- - `2.1.10`
26
- - `2.2.10`
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`
@@ -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.7"
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.0.0'
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.15.4')
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.7
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-02-29 00:00:00.000000000 Z
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.15.4
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.15.4
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.0.0
61
+ version: 2.4.0
62
62
  required_rubygems_version: !ruby/object:Gem::Requirement
63
63
  requirements:
64
64
  - - ">="