rotulus 0.2.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.
metadata ADDED
@@ -0,0 +1,122 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rotulus
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.2.0
5
+ platform: ruby
6
+ authors:
7
+ - Uy Jayson B
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2023-05-23 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: activerecord
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '4.2'
20
+ - - "<"
21
+ - !ruby/object:Gem::Version
22
+ version: 7.0.5
23
+ type: :runtime
24
+ prerelease: false
25
+ version_requirements: !ruby/object:Gem::Requirement
26
+ requirements:
27
+ - - ">="
28
+ - !ruby/object:Gem::Version
29
+ version: '4.2'
30
+ - - "<"
31
+ - !ruby/object:Gem::Version
32
+ version: 7.0.5
33
+ - !ruby/object:Gem::Dependency
34
+ name: activesupport
35
+ requirement: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - ">="
38
+ - !ruby/object:Gem::Version
39
+ version: '4.2'
40
+ - - "<"
41
+ - !ruby/object:Gem::Version
42
+ version: 7.0.5
43
+ type: :runtime
44
+ prerelease: false
45
+ version_requirements: !ruby/object:Gem::Requirement
46
+ requirements:
47
+ - - ">="
48
+ - !ruby/object:Gem::Version
49
+ version: '4.2'
50
+ - - "<"
51
+ - !ruby/object:Gem::Version
52
+ version: 7.0.5
53
+ - !ruby/object:Gem::Dependency
54
+ name: oj
55
+ requirement: !ruby/object:Gem::Requirement
56
+ requirements:
57
+ - - ">="
58
+ - !ruby/object:Gem::Version
59
+ version: '0'
60
+ type: :runtime
61
+ prerelease: false
62
+ version_requirements: !ruby/object:Gem::Requirement
63
+ requirements:
64
+ - - ">="
65
+ - !ruby/object:Gem::Version
66
+ version: '0'
67
+ description: Cursor-based pagination for apps built on Rails/ActiveRecord with sort
68
+ by multiple columns support for a more stable and predictable pagination.
69
+ email:
70
+ - uy.json.dev@gmail.com
71
+ executables: []
72
+ extensions: []
73
+ extra_rdoc_files: []
74
+ files:
75
+ - CHANGELOG.md
76
+ - Gemfile
77
+ - LICENSE
78
+ - README.md
79
+ - lib/rotulus.rb
80
+ - lib/rotulus/column.rb
81
+ - lib/rotulus/column_condition_builder.rb
82
+ - lib/rotulus/configuration.rb
83
+ - lib/rotulus/cursor.rb
84
+ - lib/rotulus/db/database.rb
85
+ - lib/rotulus/db/mysql.rb
86
+ - lib/rotulus/db/postgresql.rb
87
+ - lib/rotulus/db/sqlite.rb
88
+ - lib/rotulus/order.rb
89
+ - lib/rotulus/page.rb
90
+ - lib/rotulus/page_tableizer.rb
91
+ - lib/rotulus/record.rb
92
+ - lib/rotulus/version.rb
93
+ homepage: https://github.com/jsonb-uy/rotulus
94
+ licenses:
95
+ - MIT
96
+ metadata:
97
+ homepage_uri: https://github.com/jsonb-uy/rotulus
98
+ source_code_uri: https://github.com/jsonb-uy/rotulus
99
+ changelog_uri: https://github.com/jsonb-uy/rotulus/blob/main/CHANGELOG.md
100
+ documentation_uri: https://rubydoc.info/github/jsonb-uy/rotulus
101
+ bug_tracker_uri: https://github.com/jsonb-uy/rotulus/issues
102
+ post_install_message:
103
+ rdoc_options: []
104
+ require_paths:
105
+ - lib
106
+ required_ruby_version: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - ">="
109
+ - !ruby/object:Gem::Version
110
+ version: 2.3.0
111
+ required_rubygems_version: !ruby/object:Gem::Requirement
112
+ requirements:
113
+ - - ">="
114
+ - !ruby/object:Gem::Version
115
+ version: '0'
116
+ requirements: []
117
+ rubygems_version: 3.1.4
118
+ signing_key:
119
+ specification_version: 4
120
+ summary: Cursor-based pagination for apps built on Rails/ActiveRecord with sort by
121
+ multiple columns support.
122
+ test_files: []