Skip to content

Conversation

pull[bot]
Copy link

@pull pull bot commented Jul 8, 2024

See Commits and Changes for more details.


Created by pull[bot]

Can you help keep this open source service alive? 💖 Please sponsor : )

Follow up rubygems/rubygems#7799 (comment).

Prefer `add_dependency` over `add_runtime_dependency` because `add_dependency` is considered soft-deprecated
and the Bundler team recommends `add_dependency`.

```ruby
# bad
Gem::Specification.new do |s|
  s.add_runtime_dependency 'gem_a'
end

# good
Gem::Specification.new do |s|
  s.add_dependency 'gem_a'
end
```
@pull pull bot merged commit 79ad25a into MaxMood96:master Jul 11, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant