-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsidekiq_monitoring_bitcrowd.gemspec
34 lines (29 loc) · 1.25 KB
/
sidekiq_monitoring_bitcrowd.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
$LOAD_PATH.push File.expand_path('lib', __dir__)
# Maintain your gem's version:
require 'rails/monitoring/version'
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = 'rails-monitoring'
s.version = Rails::Monitoring::VERSION
s.authors = ['Julian Dobmann']
s.email = ['[email protected]']
s.homepage = 'https://github.com/bitcrowd/rails-monitoring'
s.summary = 'Provide Rails status information via JSON API.'
s.description = <<~TEXT
Rails engine that provides a JSON API which serves Sidekiq and Whenever
status information from a HTTP-auth protected endpoint.
This status information is gathered by scheduling a frequently
running job that saves timestamps in Redis.
TEXT
s.license = 'MIT'
s.files = Dir['{app,config,db,lib}/**/*', 'MIT-LICENSE', 'Rakefile', 'README.md']
s.add_dependency 'rails', '~> 5.2', '>= 5.2.2.1'
s.add_dependency 'sidekiq'
s.add_development_dependency 'fakeredis'
s.add_development_dependency 'minitest-around'
s.add_development_dependency 'rubocop'
s.add_development_dependency 'rubocop-bitcrowd'
s.add_development_dependency 'rubocop-rails'
s.add_development_dependency 'sqlite3'
s.add_development_dependency 'timecop'
end