Ruby
.deepsource.toml
Configuration - This section covers configuration specific to the ruby
analyzer. Please make sure you read the general configuration guide first.
name
- Type: String
- Presence: mandatory
- Description: Shortcode of the analyzer.
- Example:
name = "ruby"
enabled
- Type: Boolean
- Presence: mandatory
- Description: Toggle whether this analyzer should be run.
- Example:
enabled = true
Sample config
version = 1
test_patterns = [
"test/**",
"*_test.rb"
]
exclude_patterns = [
"vendor/**",
"**/examples/**"
]
[[analyzers]]
name = "ruby"
enabled = true
We currently support Ruby 2.4 and above.