-
Notifications
You must be signed in to change notification settings - Fork 306
Expand file tree
/
Copy pathcoss.toml
More file actions
95 lines (81 loc) · 2.06 KB
/
coss.toml
File metadata and controls
95 lines (81 loc) · 2.06 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
# COSS (Contribution Open Source Specification) v0.0.2
# This file provides standardized metadata for the capistrano-sidekiq project
[project]
name = "capistrano-sidekiq"
version = "3.0.0"
description = "Sidekiq integration for Capistrano - manage Sidekiq processes during deployments"
licenses = ["LGPL-3.0"]
homepage = "https://github.com/seuros/capistrano-sidekiq"
[repository]
url = "https://github.com/seuros/capistrano-sidekiq"
type = "git"
default_branch = "master"
[issues]
url = "https://github.com/seuros/capistrano-sidekiq/issues"
type = "github"
[technical]
primary_languages = ["Ruby"]
frameworks = ["Capistrano", "Sidekiq"]
minimum_ruby_version = "3.2.0"
[build]
commands = ["bundle install"]
test_commands = ["bundle exec rake test"]
[dependencies]
runtime = [
"capistrano >= 3.9.0",
"capistrano-bundler",
"sidekiq >= 6.0.6"
]
development = [
"minitest ~> 5.0",
"rake ~> 13.0"
]
[maintainers]
[[maintainers.primary]]
name = "Abdelkader Boudih"
email = "terminale@gmail.com"
github = "seuros"
[maintenance]
status = "active"
release_process = """
1. Update version in lib/capistrano/sidekiq/version.rb
2. Update CHANGELOG.md
3. Run tests: bundle exec rake test
4. Build gem: bundle exec rake build
5. Release: bundle exec rake release
"""
[quality]
linting = "rubocop (planned)"
testing_framework = "minitest"
ci_platform = "GitHub Actions"
code_coverage = "planned"
[documentation]
primary_docs = "README.md"
additional_docs = [
"docs/SYSTEMD_INTEGRATION.md",
"SYSTEMD.md",
"CHANGELOG.md"
]
api_docs = "YARD (planned)"
[community]
contributing_guide = "README.md#contributing"
code_of_conduct = "planned"
support_channels = [
"GitHub Issues",
"GitHub Discussions (planned)"
]
[security]
security_policy = "planned"
vulnerability_reporting = "via GitHub Security Advisories"
[compatibility]
sidekiq_versions = "7.0+"
capistrano_versions = "3.9+"
ruby_versions = "3.2+"
systemd_versions = "206+"
[features]
systemd_integration = true
multiple_processes = true
per_server_configuration = true
user_switching = true
lingering_support = true
custom_templates = true