Skip to content

Commit

Permalink
chore: update sorbet version and fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobobq committed Nov 27, 2024
1 parent 5257b58 commit 4577ae0
Show file tree
Hide file tree
Showing 35 changed files with 51,521 additions and 1,227 deletions.
4 changes: 2 additions & 2 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ gem "activesupport"
gem "rspec"
gem "rspec-json_expectations"
gem "rspec-sorbet", "~> 1.9.2"
gem "sorbet-coerce", ">= 0.2.6"
gem "sorbet-static-and-runtime", ">= 0.5.11609"
gem "sorbet-coerce", "~> 0.7"
gem "sorbet-static-and-runtime", "0.5.11670"
gem "tapioca", "~> 0.15.1", require: false
gem "syntax_tree", "~> 6.2", require: false

Expand Down
28 changes: 15 additions & 13 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,9 @@ GEM
minitest (>= 5.1)
securerandom (>= 0.3)
tzinfo (~> 2.0, >= 2.0.5)
uri (>= 0.13.1)
base64 (0.2.0)
benchmark (0.3.0)
benchmark (0.4.0)
bigdecimal (3.1.8)
coderay (1.1.3)
concurrent-ruby (1.3.4)
Expand Down Expand Up @@ -47,7 +48,7 @@ GEM
logger (1.6.1)
lumberjack (1.2.10)
method_source (1.1.0)
minitest (5.25.1)
minitest (5.25.2)
nenv (0.3.0)
netrc (0.11.0)
notiffany (0.1.3)
Expand Down Expand Up @@ -83,20 +84,20 @@ GEM
sorbet-runtime
rspec-support (3.13.1)
safe_type (1.1.1)
securerandom (0.3.1)
securerandom (0.3.2)
shellany (0.0.1)
sorbet (0.5.11609)
sorbet-static (= 0.5.11609)
sorbet (0.5.11670)
sorbet-static (= 0.5.11670)
sorbet-coerce (0.7.0)
polyfill (~> 1.8)
safe_type (~> 1.1, >= 1.1.1)
sorbet-runtime (>= 0.4.4704)
sorbet-runtime (0.5.11609)
sorbet-static (0.5.11609-universal-darwin)
sorbet-static (0.5.11609-x86_64-linux)
sorbet-static-and-runtime (0.5.11609)
sorbet (= 0.5.11609)
sorbet-runtime (= 0.5.11609)
sorbet-runtime (0.5.11670)
sorbet-static (0.5.11670-universal-darwin)
sorbet-static (0.5.11670-x86_64-linux)
sorbet-static-and-runtime (0.5.11670)
sorbet (= 0.5.11670)
sorbet-runtime (= 0.5.11670)
spoom (1.4.2)
erubi (>= 1.10.0)
prism (>= 0.28.0)
Expand All @@ -116,6 +117,7 @@ GEM
thor (1.3.0)
tzinfo (2.0.6)
concurrent-ruby (~> 1.0)
uri (1.0.2)
yard (0.9.36)
yard-sorbet (0.9.0)
sorbet-runtime
Expand All @@ -132,8 +134,8 @@ DEPENDENCIES
rspec
rspec-json_expectations
rspec-sorbet (~> 1.9.2)
sorbet-coerce (>= 0.2.6)
sorbet-static-and-runtime (>= 0.5.11609)
sorbet-coerce (~> 0.7)
sorbet-static-and-runtime (= 0.5.11670)
syntax_tree (~> 6.2)
tapioca (~> 0.15.1)

Expand Down
4 changes: 1 addition & 3 deletions examples/sinatra-pet-shelter/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,7 @@
source "https://rubygems.org"

gem "json"
gem "resource_registry",
github: "factorialco/resource-registry",
branch: "adding-example-app"
gem "resource_registry", github: "factorialco/resource-registry", branch: "main"
gem "sinatra"
gem "sinatra-contrib"
gem "tapioca", "~> 0.15.1", require: false
Expand Down
53 changes: 39 additions & 14 deletions examples/sinatra-pet-shelter/Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,23 +1,44 @@
GIT
remote: https://github.com/factorialco/resource-registry.git
revision: 2b73ddd272417ca8026e5f13e1103b4c72897824
branch: adding-example-app
revision: 61b71b89d828ae8b3da80256be9e5b817b48a49c
branch: chore/update-sorbet-version-and-fixes
specs:
resource_registry (0.0.0)
dry-inflector (= 1.1.0)
sorbet-coerce (>= 0.2.6)
sorbet-runtime (= 0.5.11609)
activesupport (>= 7.1.3)
sorbet-coerce (~> 0.7)
sorbet-runtime (= 0.5.11670)

GEM
remote: https://rubygems.org/
specs:
activesupport (8.0.0)
base64
benchmark (>= 0.3)
bigdecimal
concurrent-ruby (~> 1.0, >= 1.3.1)
connection_pool (>= 2.2.5)
drb
i18n (>= 1.6, < 2)
logger (>= 1.4.2)
minitest (>= 5.1)
securerandom (>= 0.3)
tzinfo (~> 2.0, >= 2.0.5)
uri (>= 0.13.1)
base64 (0.2.0)
benchmark (0.4.0)
bigdecimal (3.1.8)
coderay (1.1.3)
concurrent-ruby (1.3.4)
connection_pool (2.4.1)
diff-lcs (1.5.1)
dry-inflector (1.1.0)
drb (2.2.1)
erubi (1.13.0)
i18n (1.14.6)
concurrent-ruby (~> 1.0)
json (2.7.2)
logger (1.6.1)
method_source (1.1.0)
minitest (5.25.2)
multi_json (1.15.0)
mustermann (3.0.3)
ruby2_keywords (~> 0.0.1)
Expand Down Expand Up @@ -52,6 +73,7 @@ GEM
rspec-support (3.13.1)
ruby2_keywords (0.0.5)
safe_type (1.1.1)
securerandom (0.3.2)
sinatra (3.2.0)
mustermann (~> 3.0)
rack (~> 2.2, >= 2.2.4)
Expand All @@ -63,18 +85,18 @@ GEM
rack-protection (= 3.2.0)
sinatra (= 3.2.0)
tilt (~> 2.0)
sorbet (0.5.11609)
sorbet-static (= 0.5.11609)
sorbet (0.5.11670)
sorbet-static (= 0.5.11670)
sorbet-coerce (0.7.0)
polyfill (~> 1.8)
safe_type (~> 1.1, >= 1.1.1)
sorbet-runtime (>= 0.4.4704)
sorbet-runtime (0.5.11609)
sorbet-static (0.5.11609-universal-darwin)
sorbet-static (0.5.11609-x86_64-linux)
sorbet-static-and-runtime (0.5.11609)
sorbet (= 0.5.11609)
sorbet-runtime (= 0.5.11609)
sorbet-runtime (0.5.11670)
sorbet-static (0.5.11670-universal-darwin)
sorbet-static (0.5.11670-x86_64-linux)
sorbet-static-and-runtime (0.5.11670)
sorbet (= 0.5.11670)
sorbet-runtime (= 0.5.11670)
spoom (1.5.0)
erubi (>= 1.10.0)
prism (>= 0.28.0)
Expand All @@ -91,6 +113,9 @@ GEM
yard-sorbet
thor (1.3.2)
tilt (2.4.0)
tzinfo (2.0.6)
concurrent-ruby (~> 1.0)
uri (1.0.2)
yard (0.9.37)
yard-sorbet (0.9.0)
sorbet-runtime
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
**/*.rbi linguist-vendored=true
Loading

0 comments on commit 4577ae0

Please sign in to comment.