File: .mise.toml

package info (click to toggle)
ruby-pathspec 3.0.1-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 248 kB
  • sloc: ruby: 1,037; makefile: 9; sh: 5
file content (35 lines) | stat: -rw-r--r-- 825 bytes parent folder | download
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
[tools]
ruby = "3.4.1"
"gem:bundler" = "4.0.3"

[tasks.install]
run = "bundle install"
description = "Install gem dependencies"

[tasks.test]
run = "bundle exec rake"
description = "Run rubocop, unit tests, integration tests, and docs"

[tasks."test:unit"]
run = "bundle exec rake spec"
description = "Run unit tests only"

[tasks."test:integration"]
run = "bundle exec rake spec_integration"
description = "Run integration tests only"

[tasks."test:all"]
run = "bundle exec rake spec_all"
description = "Run all tests (unit + integration)"

[tasks."test:matrix"]
run = "bundle exec rake test_matrix"
description = "Run tests across all Ruby versions in Docker"

[tasks.build]
run = "gem build pathspec.gemspec"
description = "Build the gem"

[env]
# Ensure bundler uses the project's vendor/bundle directory
_.file = ".env"