-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathonesignal-rails-plugin.gemspec
36 lines (30 loc) · 1.12 KB
/
onesignal-rails-plugin.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# frozen_string_literal: true
# #OneSignal
#
# A powerful way to send personalized messages at scale and build effective customer
# engagement strategies. Learn more at onesignal.com.
#
# Contact: devrel@onesignal.com
#
$LOAD_PATH.push File.expand_path('lib', __dir__)
require 'onesignal/rails/plugin/version'
Gem::Specification.new do |s|
s.name = 'onesignal-rails-plugin'
s.version = OneSignal::Rails::Plugin::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ['OneSignal']
s.email = ['devrel@onesignal.com']
s.homepage = 'https://onesignal.com/'
s.summary = 'OneSignal for Rails'
s.description = 'A custom Rails ActionMailer delivery method which will send emails through your OneSignal integration'
s.license = 'Modified MIT'
s.required_ruby_version = '>= 2.5'
s.add_dependency 'onesignal', '~> 1.0.1'
s.add_dependency 'rails'
s.add_development_dependency 'rake'
s.add_development_dependency 'rspec'
s.files = `find *`.split("\n").uniq.sort.reject(&:empty?)
s.test_files = `find spec/*`.split("\n")
s.executables = []
s.require_paths = ['lib']
end