-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Do not package sorbet RBI files with gem (#34)
- Loading branch information
Alex Evanczuk
authored
Mar 6, 2023
1 parent
f7696fb
commit f211e2c
Showing
2 changed files
with
3 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
PATH | ||
remote: . | ||
specs: | ||
code_ownership (1.31.0) | ||
code_ownership (1.31.1) | ||
code_teams (~> 1.0) | ||
packs | ||
sorbet-runtime | ||
|
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,6 @@ | ||
Gem::Specification.new do |spec| | ||
spec.name = "code_ownership" | ||
spec.version = '1.31.0' | ||
spec.version = '1.31.1' | ||
spec.authors = ['Gusto Engineers'] | ||
spec.email = ['[email protected]'] | ||
spec.summary = 'A gem to help engineering teams declare ownership of code' | ||
|
@@ -23,7 +23,7 @@ Gem::Specification.new do |spec| | |
spec.executables = ['codeownership'] | ||
|
||
# Specify which files should be added to the gem when it is released. | ||
spec.files = Dir['README.md', 'sorbet/**/*', 'lib/**/*', 'bin/**/*'] | ||
spec.files = Dir['README.md', 'lib/**/*', 'bin/**/*'] | ||
spec.require_paths = ['lib'] | ||
|
||
spec.add_dependency 'code_teams', '~> 1.0' | ||
|