diff --git a/README.md b/README.md index 1ef7c5b..be25974 100644 --- a/README.md +++ b/README.md @@ -210,6 +210,10 @@ The guide to set up an iOS app to get notifications is here: [Setting up a FCM C ## ChangeLog +### 1.0.8 +- caches calls to `Google::Auth::ServiceAccountCredentials` #103 +- Allow `faraday` versions from 1 up to 2 #101 + ### 1.0.7 - Fix passing `DEFAULT_TIMEOUT` to `faraday` [#96](https://github.com/decision-labs/fcm/pull/96) diff --git a/fcm.gemspec b/fcm.gemspec index 3c19a16..05a211e 100644 --- a/fcm.gemspec +++ b/fcm.gemspec @@ -2,23 +2,23 @@ $:.push File.expand_path("../lib", __FILE__) Gem::Specification.new do |s| - s.name = "fcm" - s.version = "1.0.7" - s.platform = Gem::Platform::RUBY - s.authors = ["Kashif Rasul", "Shoaib Burq"] - s.email = ["kashif@decision-labs.com", "shoaib@decision-labs.com"] - s.homepage = "https://github.com/decision-labs/fcm" - s.summary = %q{Reliably deliver messages and notifications via FCM} + s.name = "fcm" + s.version = "1.0.8" + s.platform = Gem::Platform::RUBY + s.authors = ["Kashif Rasul", "Shoaib Burq"] + s.email = ["kashif@decision-labs.com", "shoaib@decision-labs.com"] + s.homepage = "https://github.com/decision-labs/fcm" + s.summary = %q{Reliably deliver messages and notifications via FCM} 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.} - s.license = "MIT" + s.license = "MIT" - s.required_ruby_version = '>= 2.4.0' + s.required_ruby_version = ">= 2.4.0" - s.files = `git ls-files`.split("\n") - s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") - s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) } + s.files = `git ls-files`.split("\n") + s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") + s.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) } s.require_paths = ["lib"] - s.add_runtime_dependency('faraday', '>= 1.0.0', '< 3.0') - s.add_runtime_dependency('googleauth', '~> 1') + s.add_runtime_dependency("faraday", ">= 1.0.0", "< 3.0") + s.add_runtime_dependency("googleauth", "~> 1") end