Skip to content

Commit

Permalink
Merge pull request #86 from Homebrew/srb-cmd
Browse files Browse the repository at this point in the history
  • Loading branch information
p-linnane committed Aug 21, 2024
2 parents d435968 + a14f897 commit c38364f
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 0 deletions.
2 changes: 2 additions & 0 deletions cmd/alias.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# typed: strict
# frozen_string_literal: true

require "abstract_command"
Expand All @@ -17,6 +18,7 @@ class Alias < AbstractCommand
named_args max: 1
end

sig { override.void }
def run
arg = args.named.first
split_arg = arg.split("=", 2) if arg.present?
Expand Down
11 changes: 11 additions & 0 deletions cmd/alias.rbi
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# typed: strict

class Homebrew::Cmd::Alias
sig { returns(Homebrew::Cmd::Alias::Args) }
def args; end
end

class Homebrew::Cmd::Alias::Args < Homebrew::CLI::Args
sig { returns(T::Boolean) }
def edit?; end
end
2 changes: 2 additions & 0 deletions cmd/unalias.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# typed: strict
# frozen_string_literal: true

require "abstract_command"
Expand All @@ -13,6 +14,7 @@ class Unalias < AbstractCommand
named_args :alias, min: 1
end

sig { override.void }
def run
Aliases.init
args.named.each { |a| Aliases.remove a }
Expand Down

0 comments on commit c38364f

Please sign in to comment.