This repository was archived by the owner on Oct 12, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +0
-16
lines changed Expand file tree Collapse file tree 3 files changed +0
-16
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,6 @@ Just invoke `topgrade`. It will invoke the following steps:
28
28
* [ Plug] ( https://github.com/junegunn/vim-plug )
29
29
* Upgrade NPM globally installed packages
30
30
* Upgrade Atom packages
31
- * Upgrade RubyGems globally installed packages
32
31
* * Linux* : Invoke the system package manager:
33
32
* * Arch* : Invoke [ yay] ( https://github.com/Jguer/yay ) or fall back to pacman
34
33
* * Redhat based* : Invoke ` yum upgrade `
Original file line number Diff line number Diff line change @@ -125,11 +125,6 @@ fn main() -> Result<(), Error> {
125
125
}
126
126
}
127
127
128
- if let Ok ( gem) = which ( "gem" ) {
129
- terminal. print_separator ( "RubyGems" ) ;
130
- run_gem ( & gem) . report ( "RubyGems" , & mut reports) ;
131
- }
132
-
133
128
if let Ok ( npm) = which ( "npm" ) {
134
129
terminal. print_separator ( "Node Package Manager" ) ;
135
130
run_npm ( & npm) . report ( "Node Package Manager" , & mut reports) ;
Original file line number Diff line number Diff line change @@ -73,16 +73,6 @@ pub fn run_vim(
73
73
Ok ( ( ) )
74
74
}
75
75
76
- pub fn run_gem ( gem : & PathBuf ) -> Result < ( ) , failure:: Error > {
77
- Command :: new ( & gem)
78
- . args ( & [ "update" ] )
79
- . spawn ( ) ?
80
- . wait ( ) ?
81
- . check ( ) ?;
82
-
83
- Ok ( ( ) )
84
- }
85
-
86
76
pub fn run_npm ( npm : & PathBuf ) -> Result < ( ) , failure:: Error > {
87
77
Command :: new ( & npm)
88
78
. args ( & [ "update" , "-g" ] )
You can’t perform that action at this time.
0 commit comments