-
Notifications
You must be signed in to change notification settings - Fork 156
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
441 additions
and
228 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,28 @@ | ||
# -*- encoding: utf-8 -*- | ||
$:.push File.expand_path("../lib", __FILE__) | ||
lib = File.expand_path('../lib', __FILE__) | ||
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) | ||
|
||
require 'fcm/version' | ||
|
||
Gem::Specification.new do |s| | ||
s.name = "fcm" | ||
s.version = "1.0.8" | ||
s.name = 'fcm' | ||
s.version = Fcm::VERSION | ||
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.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.require_paths = ["lib"] | ||
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 'activesupport', '>= 3.2', '~> 6.0.0' | ||
s.add_runtime_dependency('faraday', '>= 1.0.0', '< 3.0') | ||
s.add_runtime_dependency('googleauth', '~> 1') | ||
end |
Oops, something went wrong.