diff options
| author | Markus Reiter | 2016-10-01 20:33:08 +0200 | 
|---|---|---|
| committer | Markus Reiter | 2016-10-02 00:24:47 +0200 | 
| commit | c36f42ce953b4610b2ba62a2b860720ae6d59e01 (patch) | |
| tree | 7edbcec5b260747b9f9aed2837b78641df4322ae /Library/Homebrew/dev-cmd/pull.rb | |
| parent | acaee035dfddd1fd90b883f19cb2c9f52852c2f3 (diff) | |
| download | brew-c36f42ce953b4610b2ba62a2b860720ae6d59e01.tar.bz2 | |
Remove `private_class_method` from commands.
Diffstat (limited to 'Library/Homebrew/dev-cmd/pull.rb')
| -rw-r--r-- | Library/Homebrew/dev-cmd/pull.rb | 8 | 
1 files changed, 0 insertions, 8 deletions
diff --git a/Library/Homebrew/dev-cmd/pull.rb b/Library/Homebrew/dev-cmd/pull.rb index d64ebd4d1..7e6e86a85 100644 --- a/Library/Homebrew/dev-cmd/pull.rb +++ b/Library/Homebrew/dev-cmd/pull.rb @@ -257,12 +257,10 @@ module Homebrew      end      published    end -  private_class_method :publish_changed_formula_bottles    def pull_patch(url, description = nil)      PatchPuller.new(url, description).pull_patch    end -  private_class_method :pull_patch    class PatchPuller      attr_reader :base_url @@ -342,7 +340,6 @@ module Homebrew      end      { files: files, formulae: formulae, others: others }    end -  private_class_method :files_changed_in_patch    # Get current formula versions without loading formula definition in this process    # Returns info as a hash (type => version), for pull.rb's internal use @@ -359,7 +356,6 @@ module Homebrew      end      versions    end -  private_class_method :current_versions_from_info_external    def subject_for_bump(formula, old, new)      if old[:nonexistent] @@ -399,12 +395,10 @@ module Homebrew      end      subject    end -  private_class_method :subject_for_bump    def pbcopy(text)      Utils.popen_write("pbcopy") { |io| io.write text }    end -  private_class_method :pbcopy    # Publishes the current bottle files for a given formula to Bintray    def publish_bottle_file_on_bintray(f, creds) @@ -421,7 +415,6 @@ module Homebrew           "-d", '{"publish_wait_for_secs": 0}',           "https://api.bintray.com/content/homebrew/#{repo}/#{package}/#{version}/publish"    end -  private_class_method :publish_bottle_file_on_bintray    # Formula info drawn from an external "brew info --json" call    class FormulaInfoFromJson @@ -582,5 +575,4 @@ module Homebrew        end      end    end -  private_class_method :verify_bintray_published  end  | 
