Sha256: a2ee5f6cd0d2d7bf1d081fc81cd69ed55e40f5657882646e12843926b3ee83ae
Contents?: true
Size: 2 KB
Versions: 1
Compression:
Stored size: 2 KB
Contents
require 'thor' module Gemdiff class CLI < Thor default_task :outdated desc 'find <gem>', 'Find the github repository URL for a gem' def find(gem_name) gem = OutdatedGem.new(gem_name) if gem.repo? puts gem.repo else puts "Could not find github repository for #{gem_name}." end gem end desc 'open <gem>', 'Open the github repository for a gem' def open(gem_name) gem = find(gem_name) gem.open end desc 'releases <gem>', 'Open the github releases page for a gem' def releases(gem_name) gem = find(gem_name) gem.releases end desc 'commits <gem>', 'Open the github master branch commits page for a gem' def commits(gem_name) gem = find(gem_name) gem.commits end desc 'compare <gem> [<versions>...]', <<DESC Compare gem versions. Opens the compare view between the specified new and old versions. If versions are not specified, your bundle is inspected and the latest version of the gem is compared with the current version in your bundle. DESC method_option :new, aliases: '-n', desc: 'new gem version' method_option :old, aliases: '-o', desc: 'old gem version' def compare(gem_name) gem = find(gem_name) return unless gem.repo? gem.set_versions options if gem.missing_versions? puts "Checking for outdated gems in your bundle..." unless gem.load_bundle_versions puts "#{gem_name} is not outdated in your bundle. Specify versions." return end end puts gem.compare_message gem.compare end desc 'outdated', 'Compare each outdated gem in the bundle. You will be prompted to open each compare view.' def outdated puts "Checking for outdated gems in your bundle..." inspector = BundleInspector.new inspector.list.each do |gem| puts gem.compare_message response = ask("Open? (y to open, else skip)") gem.compare if response == 'y' end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
gemdiff-0.3.1 | lib/gemdiff/cli.rb |