async_futures 0.1.2

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.
metadata ADDED
@@ -0,0 +1,62 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: async_futures
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.2
5
+ platform: ruby
6
+ authors:
7
+ - Ethan Estrada
8
+ bindir: exe
9
+ cert_chain: []
10
+ date: 1980-01-02 00:00:00.000000000 Z
11
+ dependencies: []
12
+ email:
13
+ - ethan@misterfidget.com
14
+ executables: []
15
+ extensions: []
16
+ extra_rdoc_files: []
17
+ files:
18
+ - ".tool-versions"
19
+ - CHANGELOG.md
20
+ - LICENSE.txt
21
+ - README.md
22
+ - Rakefile
23
+ - lib/async_futures.rb
24
+ - lib/async_futures/error.rb
25
+ - lib/async_futures/executor.rb
26
+ - lib/async_futures/fiber_executor.rb
27
+ - lib/async_futures/future.rb
28
+ - lib/async_futures/io_async.rb
29
+ - lib/async_futures/logger.rb
30
+ - lib/async_futures/process_executor.rb
31
+ - lib/async_futures/ractor_executor.rb
32
+ - lib/async_futures/thread_executor.rb
33
+ - lib/async_futures/version.rb
34
+ - sig/async_futures.rbs
35
+ homepage: https://codeberg.org/eestrada/async_futures
36
+ licenses:
37
+ - 0BSD
38
+ metadata:
39
+ allowed_push_host: https://rubygems.org/
40
+ homepage_uri: https://codeberg.org/eestrada/async_futures
41
+ source_code_uri: https://codeberg.org/eestrada/async_futures
42
+ changelog_uri: https://codeberg.org/eestrada/async_futures/blob/main/CHANGELOG.md
43
+ rubygems_mfa_required: 'true'
44
+ rdoc_options: []
45
+ require_paths:
46
+ - lib
47
+ required_ruby_version: !ruby/object:Gem::Requirement
48
+ requirements:
49
+ - - ">="
50
+ - !ruby/object:Gem::Version
51
+ version: 3.3.0
52
+ required_rubygems_version: !ruby/object:Gem::Requirement
53
+ requirements:
54
+ - - ">="
55
+ - !ruby/object:Gem::Version
56
+ version: '0'
57
+ requirements: []
58
+ rubygems_version: 4.0.10
59
+ specification_version: 4
60
+ summary: A generic Future class for Ruby. Also includes Executor implementations for
61
+ Ractors, Threads, and Fibers.
62
+ test_files: []