aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/cask/lib/hbc/cli/edit.rb
blob: b9485886c9f5b253f6c8b8b14c1ff1e32476d8f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
module Hbc
  class CLI
    class Edit < AbstractCommand
      def initialize(*)
        super
        raise CaskUnspecifiedError if args.empty?
        raise ArgumentError, "Only one Cask can be created at a time." if args.count > 1
      end

      def run
        cask_token = args.first
        cask_path = begin
          CaskLoader.load(cask_token).sourcefile_path
        rescue CaskUnavailableError => e
          reason = e.reason.empty? ? "" : "#{e.reason} "
          reason.concat("Run #{Formatter.identifier("brew cask create #{e.token}")} to create a new Cask.")
          raise e.class.new(e.token, reason)
        end

        odebug "Opening editor for Cask #{cask_token}"
        exec_editor cask_path
      end

      def self.help
        "edits the given Cask"
      end
    end
  end
end