Ruby Gem upgraded

Use the Ruby Gem upgraded trigger to expire a TODO when a version of a Gem matching the constraint(s) is upgraded in your application.

Usage

➡️ TODO(on:gem_bump('nokogiri', '> 1.15'))

Examples

Expire a TODO when Nokogori is upgraded in your application with a version '> 1.15'

➡️ TODO(on:gem_bump('nokogiri', '> 1.15'))

Expire a TODO when Rails is upgraded in your application to version 7.1

➡️ TODO(on:gem_bump('nokogiri', '7.1'))

Expire a TODO when Devise is upgraded in your application with a version '> 4.9.2' and '< 5'

➡️ TODO(on:gem_bump('devise', '> 4.9.2', '< 5'))

Last updated