-
Notifications
You must be signed in to change notification settings - Fork 131
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Replace all
sync
in headers with gem
- Loading branch information
Showing
5 changed files
with
17 additions
and
17 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,7 @@ class GemSpec < CliSpec | |
FOO_RBI = <<~CONTENTS | ||
# 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 sync`. | ||
# Please instead update this file by running `bin/tapioca gem foo`. | ||
# typed: true | ||
|
@@ -26,7 +26,7 @@ def bar(a = T.unsafe(nil), b: T.unsafe(nil), **opts); end | |
BAR_RBI = <<~CONTENTS | ||
# DO NOT EDIT MANUALLY | ||
# This is an autogenerated file for types exported from the `bar` gem. | ||
# Please instead update this file by running `bin/tapioca sync`. | ||
# Please instead update this file by running `bin/tapioca gem bar`. | ||
# typed: true | ||
|
@@ -42,7 +42,7 @@ def bar(a = T.unsafe(nil), b: T.unsafe(nil), **opts); end | |
BAZ_RBI = <<~CONTENTS | ||
# DO NOT EDIT MANUALLY | ||
# This is an autogenerated file for types exported from the `baz` gem. | ||
# Please instead update this file by running `bin/tapioca sync`. | ||
# Please instead update this file by running `bin/tapioca gem baz`. | ||
# typed: true | ||
|
@@ -315,7 +315,7 @@ class Foo::Secret; end | |
assert_equal(<<~CONTENTS.chomp, File.read("#{outdir}/[email protected]")) | ||
# DO NOT EDIT MANUALLY | ||
# This is an autogenerated file for types exported from the `qux` gem. | ||
# Please instead update this file by running `bin/tapioca sync`. | ||
# Please instead update this file by running `bin/tapioca gem qux`. | ||
# typed: true | ||
|
@@ -463,7 +463,7 @@ class Foo::Secret; end | |
Checking for out-of-date RBIs... | ||
RBI files are out-of-date. In your development environment, please run: | ||
`bin/tapioca sync` | ||
`bin/tapioca gem` | ||
Once it is complete, be sure to commit and push any changes | ||
Reason: | ||
|
@@ -493,7 +493,7 @@ class Foo::Secret; end | |
Checking for out-of-date RBIs... | ||
RBI files are out-of-date. In your development environment, please run: | ||
`bin/tapioca sync` | ||
`bin/tapioca gem` | ||
Once it is complete, be sure to commit and push any changes | ||
Reason: | ||
|
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 |
---|---|---|
|
@@ -84,7 +84,7 @@ class SyncSpec < CliSpec | |
assert_equal(<<~CONTENTS.chomp, File.read("#{outdir}/[email protected]")) | ||
# DO NOT EDIT MANUALLY | ||
# This is an autogenerated file for types exported from the `qux` gem. | ||
# Please instead update this file by running `bin/tapioca sync`. | ||
# Please instead update this file by running `bin/tapioca gem qux`. | ||
# typed: true | ||
|
@@ -231,7 +231,7 @@ class SyncSpec < CliSpec | |
Checking for out-of-date RBIs... | ||
RBI files are out-of-date. In your development environment, please run: | ||
`bin/tapioca sync` | ||
`bin/tapioca gem` | ||
Once it is complete, be sure to commit and push any changes | ||
Reason: | ||
|
@@ -261,7 +261,7 @@ class SyncSpec < CliSpec | |
Checking for out-of-date RBIs... | ||
RBI files are out-of-date. In your development environment, please run: | ||
`bin/tapioca sync` | ||
`bin/tapioca gem` | ||
Once it is complete, be sure to commit and push any changes | ||
Reason: | ||
|