-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathactivejob-web.gemspec
More file actions
34 lines (28 loc) · 1.53 KB
/
activejob-web.gemspec
File metadata and controls
34 lines (28 loc) · 1.53 KB
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
# frozen_string_literal: true
require_relative 'lib/activejob/web/version'
Gem::Specification.new do |spec|
spec.name = 'activejob-web'
spec.version = Activejob::Web::VERSION
spec.platform = Gem::Platform::RUBY
spec.authors = %w[Prakash Surender Dinesh]
spec.email = %w[prakash@mallow-tech.com surender@mallow-tech.com dinesh@mallow-tech.com]
spec.homepage = 'https://github.com/mallowtechdev/activejob-web'
spec.summary = 'Web-based dashboard for managing and monitoring background jobs'
spec.description = 'Activejob-web simplifies the background job management in rails'
spec.license = 'MIT'
# Prevent pushing this gem to RubyGems.org. To allow pushes either set the "allowed_push_host"
# to allow pushing to a single host or delete this section to allow pushing to any host.
spec.metadata['allowed_push_host'] = 'https://github.com/mallowtechdev/activejob-web'
spec.metadata['homepage_uri'] = 'https://github.com/mallowtechdev/activejob-web'
spec.metadata['source_code_uri'] = 'https://github.com/mallowtechdev/activejob-web'
spec.metadata['changelog_uri'] = 'https://github.com/mallowtechdev/activejob-web'
spec.metadata['rubygems_mfa_required'] = 'true'
spec.files = Dir.chdir(File.expand_path(__dir__)) do
Dir['{app,config,lib}/**/*', 'MIT-LICENSE', 'README.md']
end
spec.require_paths = ['lib']
spec.required_ruby_version = '>= 2.7.0'
spec.add_dependency 'cloudwatchlogger'
spec.add_dependency 'rails', '>= 6.1.0'
spec.metadata['rubygems_mfa_required'] = 'true'
end