sus-fixtures-async 0.1.3 → 0.1.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- checksums.yaml.gz.sig +0 -0
- data/lib/sus/fixtures/async/version.rb +1 -1
- data/lib/sus/fixtures/async.rb +1 -0
- data/license.md +1 -1
- data/readme.md +18 -13
- data.tar.gz.sig +0 -0
- metadata +7 -5
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d99d77fb7f3fe87e81ab665ad4689bb3281dc8c14bcac5ad7e9f58cd45ac9487
|
4
|
+
data.tar.gz: a2c6eb004e55bcf7ce0a1a19c832d9bbc4b2076b6f0813133cd870c15565cb34
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3ecedf1af0d606daf679583ae999757fad815b117239b512293fe2ff52395d7032c4ce4b224d37651ade32cbd459cf727182eff7746eae9dc5a56562179df7cb
|
7
|
+
data.tar.gz: aa34a76a090aa4d7a66a21f8b5592310c42dea5d58973b87c3f9462261bf6730a7d5d87b85fa2f7531c15583b9fed1426671aea8bf491991dade8e6cf8220c7c
|
checksums.yaml.gz.sig
CHANGED
Binary file
|
data/lib/sus/fixtures/async.rb
CHANGED
data/license.md
CHANGED
data/readme.md
CHANGED
@@ -4,21 +4,26 @@ Provides a convenient fixture for testing async components in a reactor.
|
|
4
4
|
|
5
5
|
[![Development Status](https://github.com/socketry/sus-fixtures-async/workflows/Test/badge.svg)](https://github.com/socketry/sus-fixtures-async/actions?workflow=Test)
|
6
6
|
|
7
|
-
##
|
7
|
+
## Usage
|
8
8
|
|
9
|
-
|
10
|
-
$ bundle add sus-fixtures-async
|
11
|
-
```
|
9
|
+
Please see the [project documentation](https://socketry.github.io/sus-fixtures-async/) for more details.
|
12
10
|
|
13
|
-
|
11
|
+
- [Getting Started](https://socketry.github.io/sus-fixtures-async/guides/getting-started/index) - This guide explains how to use the `sus-fixtures-async` gem to test async components in a reactor.
|
12
|
+
|
13
|
+
## Contributing
|
14
|
+
|
15
|
+
We welcome contributions to this project.
|
16
|
+
|
17
|
+
1. Fork it.
|
18
|
+
2. Create your feature branch (`git checkout -b my-new-feature`).
|
19
|
+
3. Commit your changes (`git commit -am 'Add some feature'`).
|
20
|
+
4. Push to the branch (`git push origin my-new-feature`).
|
21
|
+
5. Create new Pull Request.
|
22
|
+
|
23
|
+
### Developer Certificate of Origin
|
14
24
|
|
15
|
-
|
16
|
-
include Sus::Fixtures::Async::ReactorContext
|
25
|
+
In order to protect users of this project, we require all contributors to comply with the [Developer Certificate of Origin](https://developercertificate.org/). This ensures that all contributions are properly licensed and attributed.
|
17
26
|
|
18
|
-
|
19
|
-
def timeout = 1
|
27
|
+
### Community Guidelines
|
20
28
|
|
21
|
-
|
22
|
-
expect(Async::Task.current).not.to be == nil
|
23
|
-
end
|
24
|
-
```
|
29
|
+
This project is best served by a collaborative and respectful environment. Treat each other professionally, respect differing viewpoints, and engage constructively. Harassment, discrimination, or harmful behavior is not tolerated. Communicate clearly, listen actively, and support one another. If any issues arise, please inform the project maintainers.
|
data.tar.gz.sig
CHANGED
Binary file
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sus-fixtures-async
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Samuel Williams
|
@@ -37,7 +37,7 @@ cert_chain:
|
|
37
37
|
Q2K9NVun/S785AP05vKkXZEFYxqG6EW012U4oLcFl5MySFajYXRYbuUpH6AY+HP8
|
38
38
|
voD0MPg1DssDLKwXyt1eKD/+Fq0bFWhwVM/1XiAXL7lyYUyOq24KHgQ2Csg=
|
39
39
|
-----END CERTIFICATE-----
|
40
|
-
date:
|
40
|
+
date: 2024-07-23 00:00:00.000000000 Z
|
41
41
|
dependencies:
|
42
42
|
- !ruby/object:Gem::Dependency
|
43
43
|
name: async
|
@@ -78,11 +78,13 @@ files:
|
|
78
78
|
- lib/sus/fixtures/async/version.rb
|
79
79
|
- license.md
|
80
80
|
- readme.md
|
81
|
-
homepage: https://github.com/
|
81
|
+
homepage: https://github.com/socketry/sus-fixtures-async
|
82
82
|
licenses:
|
83
83
|
- MIT
|
84
84
|
metadata:
|
85
|
+
documentation_uri: https://socketry.github.io/sus-fixtures-async/
|
85
86
|
funding_uri: https://github.com/sponsors/ioquatix/
|
87
|
+
source_code_uri: https://github.com/socketry/sus-fixtures-async.git
|
86
88
|
post_install_message:
|
87
89
|
rdoc_options: []
|
88
90
|
require_paths:
|
@@ -91,14 +93,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
91
93
|
requirements:
|
92
94
|
- - ">="
|
93
95
|
- !ruby/object:Gem::Version
|
94
|
-
version: '3.
|
96
|
+
version: '3.1'
|
95
97
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
96
98
|
requirements:
|
97
99
|
- - ">="
|
98
100
|
- !ruby/object:Gem::Version
|
99
101
|
version: '0'
|
100
102
|
requirements: []
|
101
|
-
rubygems_version: 3.
|
103
|
+
rubygems_version: 3.5.11
|
102
104
|
signing_key:
|
103
105
|
specification_version: 4
|
104
106
|
summary: Test fixtures for running in Async.
|
metadata.gz.sig
CHANGED
Binary file
|