File tree Expand file tree Collapse file tree
interactive_cli/use_cases Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1717PATH
1818 remote: .
1919 specs:
20- packs (0.0.26 )
20+ packs (0.0.27 )
2121 code_ownership (>= 1.33.0 )
2222 packs-specification
2323 packwerk
2727 sorbet-runtime
2828 thor
2929 tty-prompt
30- visualize_packs (<= 0.3.1 )
3130
3231GEM
3332 remote: https://rubygems.org/
157156 rubocop-factory_bot (~> 2.22 )
158157 rubocop-sorbet (0.7.3 )
159158 rubocop (>= 0.90.0 )
160- ruby-graphviz (1.2.5 )
161- rexml
162159 ruby-progressbar (1.13.0 )
163160 smart_properties (1.17.0 )
164161 sorbet (0.5.10957 )
207204 unparser (0.6.8 )
208205 diff-lcs (~> 1.3 )
209206 parser (>= 3.2.0 )
210- visualize_packs (0.3.1 )
211- code_ownership
212- packs-specification
213- parse_packwerk
214- rake
215- ruby-graphviz
216- sorbet-runtime
217207 wisper (2.0.1 )
218208 yard (0.9.34 )
219209 yard-sorbet (0.8.1 )
Original file line number Diff line number Diff line change @@ -100,9 +100,6 @@ Make sure there are no spaces between the comma-separated list of paths of direc
100100# # Get info about size and violations for packs
101101` bin/packs get_info [ packs/my_pack packs/my_other_pack ]`
102102
103- # # Visualize packs
104- ` bin/packs visualize [ packs/my_pack packs/my_other_pack ]`
105-
106103# # Rename a pack
107104` bin/packs rename`
108105
Original file line number Diff line number Diff line change @@ -136,13 +136,6 @@ def get_info(*pack_names)
136136 exit_successfully
137137 end
138138
139- desc 'visualize [ packs/my_pack packs/my_other_pack ]' , 'Visualize packs'
140- sig { params ( pack_names : String ) . void }
141- def visualize ( *pack_names )
142- Private . visualize ( packs : parse_pack_names ( pack_names ) )
143- exit_successfully
144- end
145-
146139 desc 'rename' , 'Rename a pack'
147140 sig { void }
148141 def rename
Original file line number Diff line number Diff line change @@ -587,11 +587,6 @@ def self.sort_keys(config)
587587 config . to_a . sort_by { |key , _value | T . unsafe ( sort_order ) . index ( key ) } . to_h
588588 end
589589
590- sig { params ( packs : T ::Array [ Packs ::Pack ] ) . void }
591- def self . visualize ( packs : Packs . all )
592- VisualizePacks . package_graph! ( packs )
593- end
594-
595590 sig { returns ( String ) }
596591 def self . rename_pack
597592 <<~WARNING
Original file line number Diff line number Diff line change 1919require 'packs/private/interactive_cli/use_cases/update'
2020require 'packs/private/interactive_cli/use_cases/validate'
2121require 'packs/private/interactive_cli/use_cases/lint_package_yml_files'
22- require 'packs/private/interactive_cli/use_cases/visualize'
2322
2423module Packs
2524 module Private
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11Gem ::Specification . new do |spec |
22 spec . name = 'packs'
3- spec . version = '0.0.26 '
3+ spec . version = '0.0.27 '
44 spec . authors = [ 'Gusto Engineers' ]
55 spec . email = [ 'dev@gusto.com' ]
66
@@ -37,7 +37,6 @@ Gem::Specification.new do |spec|
3737 spec . add_dependency 'sorbet-runtime'
3838 spec . add_dependency 'thor'
3939 spec . add_dependency 'tty-prompt'
40- spec . add_dependency 'visualize_packs' , '<= 0.3.1'
4140
4241 # rubocop:disable Gemspec/DevelopmentDependencies
4342 spec . add_development_dependency 'bundler' , '~> 2.2'
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments