-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Follow the standard Ruby structure of lib/gem_name This also helps us to understand the difference between resource_registry and schema_registry at first sight
- Loading branch information
Showing
30 changed files
with
34 additions
and
30 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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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,19 +1,23 @@ | ||
Gem::Specification.new do |s| | ||
s.name = 'resource_registry' | ||
s.version = '0.0.0' | ||
s.summary = 'Resource Registry' | ||
s.description = 'A declarative approach to define resources and their relationships' | ||
s.authors = ['Genar Trias Ortiz'] | ||
s.email = '[email protected]' | ||
s.files = ['lib/resource_registry.rb', 'lib/public/repositories/base.rb', 'rbi/resource_registry.rbi'] | ||
s.homepage = | ||
'https://rubygems.org/gems/resource_registry' | ||
s.license = 'MIT' | ||
s.add_dependency 'sorbet-coerce', '>= 0.2.6' | ||
s.name = "resource_registry" | ||
s.version = "0.0.0" | ||
s.summary = "Resource Registry" | ||
s.description = | ||
"A declarative approach to define resources and their relationships" | ||
s.authors = ["Genar Trias Ortiz"] | ||
s.email = "[email protected]" | ||
s.files = %w[ | ||
lib/resource_registry.rb | ||
lib/resource_registry/repositories/base.rb | ||
rbi/resource_registry.rbi | ||
] | ||
s.homepage = "https://rubygems.org/gems/resource_registry" | ||
s.license = "MIT" | ||
s.add_dependency "sorbet-coerce", ">= 0.2.6" | ||
# s.add_runtime_dependency 'sorbet-runtime-stub', '0.2.0' | ||
s.add_development_dependency 'sorbet', '0.5.11609' | ||
s.add_runtime_dependency 'activesupport', '>= 7.1.3' | ||
s.add_runtime_dependency 'dry-inflector', '>= 0.1.2' | ||
s.add_runtime_dependency 'sorbet-runtime', '0.5.11609' | ||
s.add_development_dependency "sorbet", "0.5.11609" | ||
s.add_runtime_dependency "activesupport", ">= 7.1.3" | ||
s.add_runtime_dependency "dry-inflector", ">= 0.1.2" | ||
s.add_runtime_dependency "sorbet-runtime", "0.5.11609" | ||
# s.add_development_dependency 'tapioca' | ||
end |
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
2 changes: 1 addition & 1 deletion
2
spec/public/registry_spec.rb → spec/resource_registry/registry_spec.rb
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
2 changes: 1 addition & 1 deletion
2
spec/public/resource_spec.rb → spec/resource_registry/resource_spec.rb
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