Skip to content

Commit 9c17861

Browse files
committed
update gemspec
1 parent 76554d5 commit 9c17861

File tree

2 files changed

+18
-14
lines changed

2 files changed

+18
-14
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -210,6 +210,10 @@ The guide to set up an iOS app to get notifications is here: [Setting up a FCM C
210210

211211
## ChangeLog
212212

213+
### 1.0.8
214+
- caches calls to `Google::Auth::ServiceAccountCredentials` #103
215+
- Allow `faraday` versions from 1 up to 2 #101
216+
213217
### 1.0.7
214218

215219
- Fix passing `DEFAULT_TIMEOUT` to `faraday` [#96](https://github.com/decision-labs/fcm/pull/96)

fcm.gemspec

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -2,23 +2,23 @@
22
$:.push File.expand_path("../lib", __FILE__)
33

44
Gem::Specification.new do |s|
5-
s.name = "fcm"
6-
s.version = "1.0.7"
7-
s.platform = Gem::Platform::RUBY
8-
s.authors = ["Kashif Rasul", "Shoaib Burq"]
9-
10-
s.homepage = "https://github.com/decision-labs/fcm"
11-
s.summary = %q{Reliably deliver messages and notifications via FCM}
5+
s.name = "fcm"
6+
s.version = "1.0.8"
7+
s.platform = Gem::Platform::RUBY
8+
s.authors = ["Kashif Rasul", "Shoaib Burq"]
9+
10+
s.homepage = "https://github.com/decision-labs/fcm"
11+
s.summary = %q{Reliably deliver messages and notifications via FCM}
1212
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-
s.license = "MIT"
13+
s.license = "MIT"
1414

15-
s.required_ruby_version = '>= 2.4.0'
15+
s.required_ruby_version = ">= 2.4.0"
1616

17-
s.files = `git ls-files`.split("\n")
18-
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
19-
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
17+
s.files = `git ls-files`.split("\n")
18+
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
19+
s.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
2020
s.require_paths = ["lib"]
2121

22-
s.add_runtime_dependency('faraday', '>= 1.0.0', '< 3.0')
23-
s.add_runtime_dependency('googleauth', '~> 1')
22+
s.add_runtime_dependency("faraday", ">= 1.0.0", "< 3.0")
23+
s.add_runtime_dependency("googleauth", "~> 1")
2424
end

0 commit comments

Comments
 (0)