attio 0.1.3 → 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.
- checksums.yaml +4 -4
- data/.github/workflows/release.yml +2 -6
- data/CHANGELOG.md +26 -1
- data/CONCEPTS.md +428 -0
- data/Gemfile.lock +3 -1
- data/README.md +157 -3
- data/examples/advanced_filtering.rb +178 -0
- data/examples/basic_usage.rb +110 -0
- data/examples/collaboration_example.rb +173 -0
- data/examples/full_workflow.rb +348 -0
- data/examples/notes_and_tasks.rb +200 -0
- data/lib/attio/client.rb +36 -0
- data/lib/attio/http_client.rb +12 -4
- data/lib/attio/resources/base.rb +54 -5
- data/lib/attio/resources/comments.rb +147 -0
- data/lib/attio/resources/lists.rb +9 -21
- data/lib/attio/resources/notes.rb +110 -0
- data/lib/attio/resources/records.rb +11 -24
- data/lib/attio/resources/tasks.rb +131 -0
- data/lib/attio/resources/threads.rb +154 -0
- data/lib/attio/version.rb +1 -1
- data/lib/attio.rb +4 -0
- metadata +11 -1
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: attio
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ernest Sim
|
@@ -49,6 +49,7 @@ files:
|
|
49
49
|
- ".yardopts"
|
50
50
|
- CHANGELOG.md
|
51
51
|
- CODE_OF_CONDUCT.md
|
52
|
+
- CONCEPTS.md
|
52
53
|
- CONTRIBUTING.md
|
53
54
|
- Gemfile
|
54
55
|
- Gemfile.lock
|
@@ -102,6 +103,11 @@ files:
|
|
102
103
|
- docs/js/jquery.js
|
103
104
|
- docs/method_list.html
|
104
105
|
- docs/top-level-namespace.html
|
106
|
+
- examples/advanced_filtering.rb
|
107
|
+
- examples/basic_usage.rb
|
108
|
+
- examples/collaboration_example.rb
|
109
|
+
- examples/full_workflow.rb
|
110
|
+
- examples/notes_and_tasks.rb
|
105
111
|
- lib/attio.rb
|
106
112
|
- lib/attio/client.rb
|
107
113
|
- lib/attio/connection_pool.rb
|
@@ -110,9 +116,13 @@ files:
|
|
110
116
|
- lib/attio/logger.rb
|
111
117
|
- lib/attio/resources/attributes.rb
|
112
118
|
- lib/attio/resources/base.rb
|
119
|
+
- lib/attio/resources/comments.rb
|
113
120
|
- lib/attio/resources/lists.rb
|
121
|
+
- lib/attio/resources/notes.rb
|
114
122
|
- lib/attio/resources/objects.rb
|
115
123
|
- lib/attio/resources/records.rb
|
124
|
+
- lib/attio/resources/tasks.rb
|
125
|
+
- lib/attio/resources/threads.rb
|
116
126
|
- lib/attio/resources/users.rb
|
117
127
|
- lib/attio/resources/workspaces.rb
|
118
128
|
- lib/attio/retry_handler.rb
|