forked from jonhue/notifications-rails
-
Notifications
You must be signed in to change notification settings - Fork 0
/
notification-settings.gemspec
46 lines (40 loc) · 1.87 KB
/
notification-settings.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
37
38
39
40
41
42
43
44
45
46
# frozen_string_literal: true
version = File.read(File.expand_path('../VERSION', __dir__)).strip
# rubocop:disable Metrics/BlockLength
Gem::Specification.new do |gem|
gem.name = 'notification-settings'
gem.version = version
gem.platform = Gem::Platform::RUBY
gem.summary = 'Integrates with your authentication solution '\
'to craft a personalized user notification '\
'platform'
gem.description = 'Integrates with your authentication solution '\
'to craft a personalized user notification '\
'platform.'
gem.authors = 'Jonas Hübotter'
gem.email = '[email protected]'
gem.homepage = 'https://github.com/jonhue/notifications-rails'\
'/tree/master/notification-settings'
gem.license = 'MIT'
gem.files = Dir['README.md', 'LICENSE', 'lib/**/*',
'app/**/*']
gem.require_paths = ['lib']
gem.metadata = {
'github_repo' => 'ssh://github.com/jonhue/notifications-rails'
}
gem.required_ruby_version = '>= 2.2.2'
gem.add_dependency 'activemodel', '>= 5.0'
gem.add_dependency 'activerecord', '>= 5.0'
gem.add_dependency 'activesupport', '>= 5.0'
gem.add_dependency 'hashie', '>= 3.6', '< 5.0'
gem.add_dependency 'notification-handler', version
gem.add_dependency 'railties', '>= 5.0'
gem.add_development_dependency 'factory_bot'
gem.add_development_dependency 'pry'
gem.add_development_dependency 'rails'
gem.add_development_dependency 'rspec-rails'
gem.add_development_dependency 'rubocop'
gem.add_development_dependency 'rubocop-rspec'
gem.add_development_dependency 'sqlite3'
end
# rubocop:enable Metrics/BlockLength