sorbet-runtime 0.5.5994 → 0.5.6001

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 248d125de87bc9a191dec3584eed814ab99f38f051d03d05039258a07fdb9744
4
- data.tar.gz: d5d96a2490154fc4dbb80ef622019f9a38097b42880c08202263a81b06421353
3
+ metadata.gz: cb189356e7591bc832e548a2e936886386e44994d58895be781cacb7e2bfb6df
4
+ data.tar.gz: faea01b2f20a167641fde6f2af6fd30d5af938627b6be3c04ae2ce839b8044a1
5
5
  SHA512:
6
- metadata.gz: 5a635f4ddd6392a94a6300952647e10d39b307a0b6ffb5fd7135fd917550cbdbfc733d81a65011a79b38b2e9c04035f2ac15621ca766f73e33d2917f29139027
7
- data.tar.gz: 52b99913aba59150c7037788a7065502f3c95d58c7f2e602a86ffc0ff76694c950532b0fdf9eddbc2abfd9412f7ad5d2575e6319084856d2c18cdca6465e3f4b
6
+ metadata.gz: 87f081be786e0abe490d2fdbfda43323974396452a649869527a19130bc5ecc6c7226e88d05e6e511bd0dd88e86faed26e8f4919ab58809ae4e348d34d41d652
7
+ data.tar.gz: 8a832171b62f05453e9e30ca9d720ac76da6141152f66b04f54c7b82e8964be97d10e7e8f6c40b5de4c979eb2729b2fd1cfbdf64ce281ce55e5a413291a16164
@@ -22,7 +22,6 @@ require_relative 'types/configuration'
22
22
  require_relative 'types/profile'
23
23
  require_relative 'types/_types'
24
24
  require_relative 'types/private/decl_state'
25
- require_relative 'types/runtime_profiled'
26
25
  require_relative 'types/private/class_utils'
27
26
  require_relative 'types/private/runtime_levels'
28
27
  require_relative 'types/private/methods/_methods'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sorbet-runtime
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.5994
4
+ version: 0.5.6001
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stripe
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-10-23 00:00:00.000000000 Z
11
+ date: 2020-10-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: minitest
@@ -210,7 +210,6 @@ files:
210
210
  - lib/types/props/type_validation.rb
211
211
  - lib/types/props/utils.rb
212
212
  - lib/types/props/weak_constructor.rb
213
- - lib/types/runtime_profiled.rb
214
213
  - lib/types/sig.rb
215
214
  - lib/types/struct.rb
216
215
  - lib/types/types/attached_class.rb
@@ -1,24 +0,0 @@
1
- # typed: strict
2
- # frozen_string_literal: true
3
-
4
- #
5
- # From the static system, T::Utils::RuntimeProfiled is T.untyped.
6
- #
7
- # But from the runtime system, it's a random class (specifically, a class that
8
- # normal programs currently don't have any instances of).
9
- #
10
- # Thus, T::Utils::RuntimeProfiled can be used to introduce runtime-only type
11
- # errors. This seems like a bad idea, but it's not. It can be used to gather
12
- # runtime type information from running code via a custom T::Configuration
13
- # handler.
14
- #
15
- # This process has only ever been used at Stripe, and is likely to have rough
16
- # edges. If you've managed to find your way here and you're curious to try it,
17
- # please chat with us on Slack. There are no docs.
18
- #
19
- # See also: the --suggest-runtime-profiled flag to sorbet.
20
- #
21
-
22
- module T; end
23
- module T::Utils; end
24
- class T::Utils::RuntimeProfiled; end