Skip to content

Files

Latest commit

 

History

History
27 lines (17 loc) · 458 Bytes

Bundler-GemVersion.md

File metadata and controls

27 lines (17 loc) · 458 Bytes

Pattern: Malformed Gem version specification

Issue: -

Description

Enforce that Gem version specifications are either required or forbidden.

Examples

# bad
gem 'rubocop'

# good
gem 'rubocop', '~> 1.12'

# good
gem 'rubocop', '>= 1.10.0'

# good
gem 'rubocop', '>= 1.5.0', '< 1.10.0'

Further Reading