Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Roy-Mao committed May 13, 2022
1 parent 07941b3 commit a1961ea
Show file tree
Hide file tree
Showing 7 changed files with 441 additions and 228 deletions.
32 changes: 18 additions & 14 deletions fcm.gemspec
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
Loading

0 comments on commit a1961ea

Please sign in to comment.