async_paginate 0.1.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 (2) hide show
  1. checksums.yaml +7 -0
  2. metadata +62 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: f50a85b6f7e8da6ce4cf4c45b2f0ecb61f672f6b08e32b4c901737e2d8edf807
4
+ data.tar.gz: f8310b9293c7e1a329b7c25bda3cde40ffa2c59259a7a271c6f0462ac45b594e
5
+ SHA512:
6
+ metadata.gz: f9422ffd267223b30acaad5812bbb92e75df7494fb52e9a7771268a8516a47e096b92ed21b5a5394e28fdf4c9723405b47636f77d5f203c5221eed21179d5b42
7
+ data.tar.gz: fadd6c538562e12e9b6511fc88bf671b88c103b5dac55498bff39b7c0126849033197a25aa768d7788a65170ff0bf199650af4b6843b1367b7d62d613f56a97e
metadata ADDED
@@ -0,0 +1,62 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: async_paginate
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - mac tichner
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2024-10-08 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: async
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.30'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.30'
27
+ description: The `AsyncPaginate` module provides a mechanism to fetch multiple pages
28
+ of data asynchronously in Ruby using the `async` gem. This is useful when you need
29
+ to retrieve a large amount of paginated data in parallel to improve performance
30
+ by controlling the number of concurrent requests.
31
+ email:
32
+ - mst209@gmail.com
33
+ executables: []
34
+ extensions: []
35
+ extra_rdoc_files: []
36
+ files: []
37
+ homepage: ''
38
+ licenses:
39
+ - MIT
40
+ metadata:
41
+ source_code_uri: https://github.com/mst209/AsyncPaginate
42
+ changelog_uri: https://github.com/mst209/AsyncPaginate/CHANGELOG.md
43
+ post_install_message:
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: 2.6.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: 3.4.10
59
+ signing_key:
60
+ specification_version: 4
61
+ summary: Async Pagination Helper
62
+ test_files: []