How to let renovate to update the gemspec by bundler #10585
Unanswered
tata9001
asked this question in
Request Help
Replies: 2 comments 8 replies
-
renovate currently only supported updating Please provide a minimal reproduction so we can have a look. Maybe it's easy to implement. |
Beta Was this translation helpful? Give feedback.
7 replies
-
An example of a Regex Manager that can be used to parse Gemspec files. {
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base",
],
"regexManagers": [
{
"fileMatch": [
"^*.gemspec"
],
"matchStrings": [
".*\\.add_(:?(?<depType>.*?)_)?dependency\\s*(['\"])(?<depName>[^'\"]+)(['\"])(\\s*,\\s*(?<currentValue>(['\"])[^'\"]+['\"](\\s*,\\s*['\"][^'\"]+['\"])?))?"
],
"datasourceTemplate": "rubygems",
"versioningTemplate": "ruby"
}
]
} |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Currently, we have bunch of repo which use the gemspec to manage the dependencies.
After few times test, seems renovate cannot support the gemspec pattern which the dependabot support.
Cannot understand what's meaning of the comment, renovate can support the gemspec? How?
Beta Was this translation helpful? Give feedback.
All reactions