-
Notifications
You must be signed in to change notification settings - Fork 18
/
notifications-rails.gemspec
32 lines (27 loc) · 1.46 KB
/
notifications-rails.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
# frozen_string_literal: true
version = File.read(File.expand_path('VERSION', __dir__)).strip
Gem::Specification.new do |gem|
gem.name = 'notifications-rails'
gem.version = version
gem.platform = Gem::Platform::RUBY
gem.summary = 'The most powerful library for the handling and ' \
'(cross-platform) delivery of notifications ' \
'with Rails'
gem.description = 'notifications-rails is the most powerful ' \
'notification library for Rails. It offers not ' \
'only simple APIs to create and render ' \
'notifications but also supports ' \
'user-integration and cross-platform delivery ' \
'of notifications.'
gem.authors = 'Jonas Hübotter'
gem.email = '[email protected]'
gem.homepage = 'https://github.com/jonhue/notifications-rails'
gem.license = 'MIT'
gem.files = Dir['README.md', 'LICENSE',
'lib/notifications-rails.rb']
gem.required_ruby_version = '>= 3.0'
gem.add_dependency 'notification-handler', version
gem.add_dependency 'notification-pusher', version
gem.add_dependency 'notification-renderer', version
gem.add_dependency 'notification-settings', version
end