Class: Utils::Shebang::RewriteInfo Private

Inherits:
Object
  • Object
show all
Defined in:
utils/shebang.rb

Overview

This class is part of a private API. This class may only be used in the Homebrew/brew repository. Third parties should avoid using this class if possible, as it may be removed or changed without warning.

Specification on how to rewrite a given shebang.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(regex, max_length, replacement) ⇒ void

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

Parameters:



14
15
16
17
18
# File 'utils/shebang.rb', line 14

def initialize(regex, max_length, replacement)
  @regex = regex
  @max_length = max_length
  @replacement = replacement
end

Instance Attribute Details

#max_lengthObject (readonly)

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.



11
12
13
# File 'utils/shebang.rb', line 11

def max_length
  @max_length
end

#regexObject (readonly)

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.



11
12
13
# File 'utils/shebang.rb', line 11

def regex
  @regex
end

#replacementObject (readonly)

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.



11
12
13
# File 'utils/shebang.rb', line 11

def replacement
  @replacement
end