-
Notifications
You must be signed in to change notification settings - Fork 171
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use Bundler CLI directly and send errors to telemetry (#2774)
- Loading branch information
Showing
10 changed files
with
291 additions
and
93 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,26 @@ | ||
# typed: true | ||
|
||
class Bundler::Settings | ||
sig { params(name: String).returns(String) } | ||
def self.key_for(name); end | ||
module Bundler | ||
class Settings | ||
sig { params(name: String).returns(String) } | ||
def self.key_for(name); end | ||
end | ||
|
||
module CLI | ||
class Install | ||
sig { params(options: T::Hash[String, T.untyped]).void } | ||
def initialize(options); end | ||
|
||
sig { void } | ||
def run; end | ||
end | ||
|
||
class Update | ||
sig { params(options: T::Hash[String, T.untyped], gems: T::Array[String]).void } | ||
def initialize(options, gems); end | ||
|
||
sig { void } | ||
def run; end | ||
end | ||
end | ||
end |
Oops, something went wrong.