-
Notifications
You must be signed in to change notification settings - Fork 123
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1188 from Shopify/vs/performance_improvements
Various performance optimizations for trackers
- Loading branch information
Showing
5 changed files
with
56 additions
and
39 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1323,6 +1323,20 @@ module Foo; end | |
|
||
result = @project.tapioca("gem foo") | ||
assert_empty_stderr(result) | ||
|
||
assert_project_file_equal("sorbet/rbi/gems/[email protected]", <<~RBI) | ||
# typed: true | ||
# DO NOT EDIT MANUALLY | ||
# This is an autogenerated file for types exported from the `foo` gem. | ||
# Please instead update this file by running `bin/tapioca gem foo`. | ||
class Bar | ||
extend ::Foo | ||
end | ||
module Foo; end | ||
RBI | ||
end | ||
|
||
it "must not load engines in the application" do | ||
|