evt-async_invocation 0.1.0.4 → 2.0.0.1
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.
- checksums.yaml +5 -5
- data/lib/async_invocation/incorrect.rb +1 -1
- metadata +6 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 2c135b5657e9b333fa3c3330bfeabe19aae8e752b656abe29da8b66fd6bf6ab1
|
4
|
+
data.tar.gz: c0c2871d28046169a2c144aba39c1316bb4f8ba64f9287048f3fc7a9ac088667
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b01691bb40ad1fd7b505ecb6a40ff342613a890343b3523534732b4251cb8791a69c0b912483fe19b33d24ff2d669c53679877eab60c3987d3b80bd465d6c515
|
7
|
+
data.tar.gz: 8f7fbe8e77df0daa81f6989474c4ebd49c1be62608c67036fdcccbf7adadc72b694e1e2d49b44d8179a7f0fac7a1ca26d6b205678b61644cee25df20aae80dac
|
@@ -3,7 +3,7 @@ module AsyncInvocation
|
|
3
3
|
class Error < RuntimeError; end
|
4
4
|
|
5
5
|
def self.method_missing(meth, *args)
|
6
|
-
raise Error, "Incorrect invocation of async operation
|
6
|
+
raise Error, "Incorrect invocation of async operation. Intended use is invocation with a block argument. Results should be ignored."
|
7
7
|
end
|
8
8
|
end
|
9
9
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: evt-async_invocation
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 2.0.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- The Eventide Project
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2022-01-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: test_bench
|
@@ -36,7 +36,7 @@ homepage: https://github.com/eventide-project/async-invocation
|
|
36
36
|
licenses:
|
37
37
|
- MIT
|
38
38
|
metadata: {}
|
39
|
-
post_install_message:
|
39
|
+
post_install_message:
|
40
40
|
rdoc_options: []
|
41
41
|
require_paths:
|
42
42
|
- lib
|
@@ -51,9 +51,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
51
51
|
- !ruby/object:Gem::Version
|
52
52
|
version: '0'
|
53
53
|
requirements: []
|
54
|
-
|
55
|
-
|
56
|
-
signing_key:
|
54
|
+
rubygems_version: 3.3.3
|
55
|
+
signing_key:
|
57
56
|
specification_version: 4
|
58
57
|
summary: Return value for async method that is accidentally invoked synchronously
|
59
58
|
test_files: []
|