Class: GemChangelogDiff::Detector

Inherits:
Object
  • Object
show all
Defined in:
lib/gem_changelog_diff/detector.rb

Constant Summary collapse

PARSEABLE_REGEX =
/\A(\S+)\s+\(newest\s+([^,]+),\s+installed\s+([^,)]+)/

Instance Method Summary collapse

Instance Method Details

#detectObject



9
10
11
12
# File 'lib/gem_changelog_diff/detector.rb', line 9

def detect
  output = run_bundle_outdated
  parse(output)
end