grist-grist 0.1.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 +7 -0
- data/.rspec +3 -0
- data/.rubocop.yml +13 -0
- data/.ruby-version +1 -0
- data/CHANGELOG.md +5 -0
- data/CODE_OF_CONDUCT.md +84 -0
- data/LICENSE.txt +21 -0
- data/README.md +76 -0
- data/Rakefile +12 -0
- data/docker-compose.yml +11 -0
- data/examples/main.rb +83 -0
- data/examples/update.rb +56 -0
- data/lib/grist/accessible.rb +10 -0
- data/lib/grist/api_routes.rb +79 -0
- data/lib/grist/response.rb +39 -0
- data/lib/grist/rest.rb +95 -0
- data/lib/grist/searchable.rb +17 -0
- data/lib/grist/type/access.rb +69 -0
- data/lib/grist/type/base.rb +72 -0
- data/lib/grist/type/column.rb +25 -0
- data/lib/grist/type/doc.rb +99 -0
- data/lib/grist/type/organization.rb +111 -0
- data/lib/grist/type/record.rb +22 -0
- data/lib/grist/type/table.rb +132 -0
- data/lib/grist/type/workspace.rb +88 -0
- data/lib/grist/version.rb +7 -0
- data/lib/grist.rb +61 -0
- metadata +86 -0
metadata
ADDED
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: grist-grist
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.1.1
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- quentinchampenois
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: exe
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2025-10-30 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: rspec
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - "~>"
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: '3.0'
|
|
20
|
+
type: :development
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - "~>"
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: '3.0'
|
|
27
|
+
description: Use this gem to interact with the a Grist API from your Ruby application.
|
|
28
|
+
email:
|
|
29
|
+
- 26109239+Quentinchampenois@users.noreply.github.com
|
|
30
|
+
executables: []
|
|
31
|
+
extensions: []
|
|
32
|
+
extra_rdoc_files: []
|
|
33
|
+
files:
|
|
34
|
+
- ".rspec"
|
|
35
|
+
- ".rubocop.yml"
|
|
36
|
+
- ".ruby-version"
|
|
37
|
+
- CHANGELOG.md
|
|
38
|
+
- CODE_OF_CONDUCT.md
|
|
39
|
+
- LICENSE.txt
|
|
40
|
+
- README.md
|
|
41
|
+
- Rakefile
|
|
42
|
+
- docker-compose.yml
|
|
43
|
+
- examples/main.rb
|
|
44
|
+
- examples/update.rb
|
|
45
|
+
- lib/grist.rb
|
|
46
|
+
- lib/grist/accessible.rb
|
|
47
|
+
- lib/grist/api_routes.rb
|
|
48
|
+
- lib/grist/response.rb
|
|
49
|
+
- lib/grist/rest.rb
|
|
50
|
+
- lib/grist/searchable.rb
|
|
51
|
+
- lib/grist/type/access.rb
|
|
52
|
+
- lib/grist/type/base.rb
|
|
53
|
+
- lib/grist/type/column.rb
|
|
54
|
+
- lib/grist/type/doc.rb
|
|
55
|
+
- lib/grist/type/organization.rb
|
|
56
|
+
- lib/grist/type/record.rb
|
|
57
|
+
- lib/grist/type/table.rb
|
|
58
|
+
- lib/grist/type/workspace.rb
|
|
59
|
+
- lib/grist/version.rb
|
|
60
|
+
homepage: https://github.com/quentinchampenois/grist-ruby
|
|
61
|
+
licenses:
|
|
62
|
+
- MIT
|
|
63
|
+
metadata:
|
|
64
|
+
homepage_uri: https://github.com/quentinchampenois/grist-ruby
|
|
65
|
+
source_code_uri: https://github.com/quentinchampenois/grist-ruby
|
|
66
|
+
changelog_uri: https://github.com/quentinchampenois/grist-ruby/blob/main/CHANGELOG.md
|
|
67
|
+
post_install_message:
|
|
68
|
+
rdoc_options: []
|
|
69
|
+
require_paths:
|
|
70
|
+
- lib
|
|
71
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
72
|
+
requirements:
|
|
73
|
+
- - ">="
|
|
74
|
+
- !ruby/object:Gem::Version
|
|
75
|
+
version: 3.0.0
|
|
76
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
77
|
+
requirements:
|
|
78
|
+
- - ">="
|
|
79
|
+
- !ruby/object:Gem::Version
|
|
80
|
+
version: '0'
|
|
81
|
+
requirements: []
|
|
82
|
+
rubygems_version: 3.4.1
|
|
83
|
+
signing_key:
|
|
84
|
+
specification_version: 4
|
|
85
|
+
summary: Ruby client for the Grist API.
|
|
86
|
+
test_files: []
|