# Ruby
# Configuration - .deepsource.toml
This section covers configuration specific to the ruby
analyzer. Please make sure you read the general configuration guide first.
# name
- Type: String (opens new window)
- Presence: mandatory
- Description: Shortcode of the analyzer.
- Example:
name = "ruby"
# enabled
- Type: Boolean (opens new window)
- 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
TIP
We currently support Ruby 2.4 and above.
← Go JavaScript →