fcm 2.0.2 → 2.0.3

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.
data/spec/spec_helper.rb CHANGED
@@ -1,13 +1,15 @@
1
- require 'rubygems'
2
- require 'bundler/setup'
3
- require 'webmock/rspec'
1
+ # frozen_string_literal: true
4
2
 
5
- require 'fcm'
3
+ require "rubygems"
4
+ require "bundler/setup"
5
+ require "webmock/rspec"
6
+
7
+ require "fcm"
6
8
 
7
9
  RSpec.configure do |config|
8
10
  config.run_all_when_everything_filtered = true
9
11
  config.expect_with :rspec do |c|
10
- c.syntax = [:should, :expect]
12
+ c.syntax = %i[should expect]
11
13
  end
12
14
  # config.filter_run :focus
13
15
  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: 2.0.2
4
+ version: 2.0.3
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: 2026-05-01 00:00:00.000000000 Z
12
+ date: 2026-08-17 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: faraday
@@ -31,6 +31,20 @@ dependencies:
31
31
  - - "<"
32
32
  - !ruby/object:Gem::Version
33
33
  version: '3.0'
34
+ - !ruby/object:Gem::Dependency
35
+ name: faraday-net_http_persistent
36
+ requirement: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '2.0'
41
+ type: :runtime
42
+ prerelease: false
43
+ version_requirements: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '2.0'
34
48
  - !ruby/object:Gem::Dependency
35
49
  name: googleauth
36
50
  requirement: !ruby/object:Gem::Requirement
@@ -45,6 +59,20 @@ dependencies:
45
59
  - - "~>"
46
60
  - !ruby/object:Gem::Version
47
61
  version: '1'
62
+ - !ruby/object:Gem::Dependency
63
+ name: net-http-persistent
64
+ requirement: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '4.0'
69
+ type: :runtime
70
+ prerelease: false
71
+ version_requirements: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: '4.0'
48
76
  description: fcm provides ruby bindings to Firebase Cloud Messaging (FCM) a cross-platform
49
77
  messaging solution that lets you reliably deliver messages and notifications at
50
78
  no cost to Android, iOS or Web browsers.
@@ -57,7 +85,9 @@ extra_rdoc_files: []
57
85
  files:
58
86
  - ".github/workflows/ci.yml"
59
87
  - ".gitignore"
88
+ - ".hound.yml"
60
89
  - ".rspec"
90
+ - ".rubocop.yml"
61
91
  - Gemfile
62
92
  - LICENSE.txt
63
93
  - README.md
@@ -89,6 +119,4 @@ rubygems_version: 3.3.7
89
119
  signing_key:
90
120
  specification_version: 4
91
121
  summary: Reliably deliver messages and notifications via FCM
92
- test_files:
93
- - spec/fcm_spec.rb
94
- - spec/spec_helper.rb
122
+ test_files: []