rbs-relaxed 3.9.0.1 → 3.9.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (60) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/ruby.yml +24 -2
  3. data/.github/workflows/typecheck.yml +0 -2
  4. data/.github/workflows/windows.yml +1 -1
  5. data/.rubocop.yml +4 -0
  6. data/CHANGELOG.md +93 -0
  7. data/Rakefile +17 -2
  8. data/config.yml +4 -0
  9. data/core/data.rbs +1 -1
  10. data/core/enumerator.rbs +14 -2
  11. data/core/exception.rbs +1 -1
  12. data/core/hash.rbs +2 -2
  13. data/core/kernel.rbs +4 -4
  14. data/core/method.rbs +2 -2
  15. data/core/module.rbs +4 -4
  16. data/core/object.rbs +1 -1
  17. data/core/proc.rbs +2 -2
  18. data/core/rbs/unnamed/argf.rbs +3 -3
  19. data/core/rubygems/version.rbs +2 -2
  20. data/core/string.rbs +3 -3
  21. data/core/unbound_method.rbs +1 -1
  22. data/ext/rbs_extension/parser.c +59 -50
  23. data/ext/rbs_extension/parserstate.c +15 -1
  24. data/include/rbs/ruby_objs.h +4 -4
  25. data/lib/rbs/ast/declarations.rb +9 -4
  26. data/lib/rbs/ast/type_param.rb +0 -10
  27. data/lib/rbs/collection/config/lockfile_generator.rb +29 -3
  28. data/lib/rbs/definition.rb +40 -31
  29. data/lib/rbs/definition_builder/ancestor_builder.rb +2 -0
  30. data/lib/rbs/definition_builder.rb +86 -34
  31. data/lib/rbs/environment.rb +8 -4
  32. data/lib/rbs/errors.rb +10 -31
  33. data/lib/rbs/prototype/rb.rb +2 -1
  34. data/lib/rbs/prototype/rbi.rb +2 -1
  35. data/lib/rbs/prototype/runtime.rb +3 -0
  36. data/lib/rbs/types.rb +3 -7
  37. data/lib/rbs/unit_test/type_assertions.rb +2 -2
  38. data/lib/rbs/unit_test/with_aliases.rb +3 -1
  39. data/lib/rbs/version.rb +1 -1
  40. data/sig/annotate/rdoc_source.rbs +2 -0
  41. data/sig/cli.rbs +2 -0
  42. data/sig/collection/config/lockfile_generator.rbs +1 -1
  43. data/sig/declarations.rbs +10 -3
  44. data/sig/definition.rbs +67 -14
  45. data/sig/definition_builder.rbs +17 -3
  46. data/sig/errors.rbs +7 -10
  47. data/sig/namespace.rbs +1 -1
  48. data/sig/typename.rbs +1 -1
  49. data/sig/types.rbs +0 -3
  50. data/src/ruby_objs.c +8 -4
  51. data/src/util/rbs_constant_pool.c +1 -1
  52. data/stdlib/cgi/0/core.rbs +10 -0
  53. data/stdlib/ipaddr/0/ipaddr.rbs +8 -0
  54. data/stdlib/net-http/0/net-http.rbs +1 -1
  55. data/stdlib/openssl/0/openssl.rbs +67 -67
  56. data/stdlib/resolv/0/resolv.rbs +8 -8
  57. data/stdlib/socket/0/addrinfo.rbs +1 -1
  58. data/stdlib/stringio/0/stringio.rbs +1 -1
  59. data/stdlib/uri/0/common.rbs +17 -0
  60. metadata +3 -6
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rbs-relaxed
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.9.0.1
4
+ version: 3.9.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Soutaro Matsumoto
8
- autorequire:
9
8
  bindir: exe
10
9
  cert_chain: []
11
- date: 2025-02-24 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
12
11
  dependencies: []
13
12
  description: RBS is the language for type signatures for Ruby and standard library
14
13
  definitions.
@@ -510,7 +509,6 @@ metadata:
510
509
  homepage_uri: https://github.com/ruby/rbs
511
510
  source_code_uri: https://github.com/ruby/rbs.git
512
511
  changelog_uri: https://github.com/ruby/rbs/blob/master/CHANGELOG.md
513
- post_install_message:
514
512
  rdoc_options: []
515
513
  require_paths:
516
514
  - lib
@@ -525,8 +523,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
525
523
  - !ruby/object:Gem::Version
526
524
  version: '0'
527
525
  requirements: []
528
- rubygems_version: 3.5.23
529
- signing_key:
526
+ rubygems_version: 3.7.1
530
527
  specification_version: 4
531
528
  summary: Type signature for Ruby.
532
529
  test_files: []