Sha256: 8669142f2b736ab8ac35c59887c73026ff088cea247e6fb70845668c8263fc3d
Contents?: true
Size: 1.58 KB
Versions: 1
Compression:
Stored size: 1.58 KB
Contents
# frozen_string_literal: true module RailsAppGenerator module Cli # Folder Diff class Diff < Thor desc 'diff lhs_folder rhs_folder [options]', 'Diff two different rails folders' # Run report to console for following options option :show_left_only , type: :boolean option :show_right_only , type: :boolean option :show_same , type: :boolean option :show_different , type: :boolean # Open files in VSCode for for following options option :open_left_only , type: :boolean option :open_right_only , type: :boolean option :open_same , type: :boolean option :open_different , type: :boolean def diff(lhs_folder, rhs_folder) # puts "Diffing #{lhs_folder} and #{rhs_folder}" # puts JSON.pretty_generate(options) processor = RailsAppGenerator::Diff::Processor.new(lhs_folder, rhs_folder) compare_info = processor.compare report = RailsAppGenerator::Diff::Report.new( compare_info, show_left_only: options[:show_left_only], show_right_only: options[:show_right_only], show_same: options[:show_same], show_different: options[:show_different] ) report.display # vscode = RailsAppGenerator::Diff::OpenInEditor.new( # compare_info, # open_left_only: options[:open_left_only], # open_right_only: options[:open_right_only], # open_same: options[:open_same], # open_different: options[:show_different] # ) # vscode.open end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
rails_app_generator-0.1.1 | lib/rails_app_generator/cli/diff.rb |