asana 0.10.3 → 0.10.12
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/build.yml +24 -0
- data/.github/workflows/pubilsh-to-rubygem.yml +18 -0
- data/.github/workflows/publish-to-github-releases.yml +16 -0
- data/.gitignore +0 -1
- data/Gemfile.lock +169 -0
- data/README.md +22 -9
- data/Rakefile +10 -14
- data/VERSION +1 -1
- data/asana.gemspec +2 -2
- data/examples/Gemfile.lock +2 -2
- data/lib/asana/http_client/error_handling.rb +11 -4
- data/lib/asana/resources/gen/audit_log_api_base.rb +37 -0
- data/lib/asana/resources/gen/goals_base.rb +218 -0
- data/lib/asana/resources/gen/project_briefs_base.rb +68 -0
- data/lib/asana/resources/gen/project_templates_base.rb +73 -0
- data/lib/asana/resources/gen/projects_base.rb +13 -0
- data/lib/asana/resources/gen/status_updates_base.rb +72 -0
- data/lib/asana/resources/gen/tasks_base.rb +2 -6
- data/lib/asana/resources/gen/teams_base.rb +15 -1
- data/lib/asana/resources/gen/time_periods_base.rb +47 -0
- data/lib/asana/resources/gen/typeahead_base.rb +1 -1
- data/lib/asana/resources/gen/users_base.rb +3 -4
- data/lib/asana/resources/gen/webhooks_base.rb +13 -0
- data/lib/asana/resources/portfolio.rb +3 -3
- data/lib/asana/version.rb +1 -1
- data/package-lock.json +115 -0
- data/samples/audit_log_api_sample.yaml +11 -0
- data/samples/goals_sample.yaml +161 -0
- data/samples/project_briefs_sample.yaml +41 -0
- data/samples/project_templates_sample.yaml +41 -0
- data/samples/projects_sample.yaml +10 -0
- data/samples/status_updates_sample.yaml +41 -0
- data/samples/teams_sample.yaml +10 -0
- data/samples/time_periods_sample.yaml +21 -0
- data/samples/webhooks_sample.yaml +10 -0
- metadata +28 -12
- data/.travis.yml +0 -16
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: asana
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.10.
|
4
|
+
version: 0.10.12
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Txus
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2022-06-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: oauth2
|
@@ -72,14 +72,14 @@ dependencies:
|
|
72
72
|
requirements:
|
73
73
|
- - "~>"
|
74
74
|
- !ruby/object:Gem::Version
|
75
|
-
version: '
|
75
|
+
version: '13.0'
|
76
76
|
type: :development
|
77
77
|
prerelease: false
|
78
78
|
version_requirements: !ruby/object:Gem::Requirement
|
79
79
|
requirements:
|
80
80
|
- - "~>"
|
81
81
|
- !ruby/object:Gem::Version
|
82
|
-
version: '
|
82
|
+
version: '13.0'
|
83
83
|
- !ruby/object:Gem::Dependency
|
84
84
|
name: rspec
|
85
85
|
requirement: !ruby/object:Gem::Requirement
|
@@ -98,20 +98,20 @@ dependencies:
|
|
98
98
|
name: appraisal
|
99
99
|
requirement: !ruby/object:Gem::Requirement
|
100
100
|
requirements:
|
101
|
-
- - "
|
101
|
+
- - "~>"
|
102
102
|
- !ruby/object:Gem::Version
|
103
103
|
version: '2.1'
|
104
|
-
- - "
|
104
|
+
- - ">="
|
105
105
|
- !ruby/object:Gem::Version
|
106
106
|
version: '2.1'
|
107
107
|
type: :development
|
108
108
|
prerelease: false
|
109
109
|
version_requirements: !ruby/object:Gem::Requirement
|
110
110
|
requirements:
|
111
|
-
- - "
|
111
|
+
- - "~>"
|
112
112
|
- !ruby/object:Gem::Version
|
113
113
|
version: '2.1'
|
114
|
-
- - "
|
114
|
+
- - ">="
|
115
115
|
- !ruby/object:Gem::Version
|
116
116
|
version: '2.1'
|
117
117
|
description: Official Ruby client for the Asana API
|
@@ -122,16 +122,19 @@ extensions: []
|
|
122
122
|
extra_rdoc_files: []
|
123
123
|
files:
|
124
124
|
- ".codeclimate.yml"
|
125
|
+
- ".github/workflows/build.yml"
|
126
|
+
- ".github/workflows/pubilsh-to-rubygem.yml"
|
127
|
+
- ".github/workflows/publish-to-github-releases.yml"
|
125
128
|
- ".gitignore"
|
126
129
|
- ".rspec"
|
127
130
|
- ".rubocop.yml"
|
128
131
|
- ".ruby-version"
|
129
132
|
- ".swagger-codegen-ignore"
|
130
|
-
- ".travis.yml"
|
131
133
|
- ".yardopts"
|
132
134
|
- Appraisals
|
133
135
|
- CODE_OF_CONDUCT.md
|
134
136
|
- Gemfile
|
137
|
+
- Gemfile.lock
|
135
138
|
- Guardfile
|
136
139
|
- LICENSE.txt
|
137
140
|
- README.md
|
@@ -174,23 +177,29 @@ files:
|
|
174
177
|
- lib/asana/resources/custom_fields.rb
|
175
178
|
- lib/asana/resources/events.rb
|
176
179
|
- lib/asana/resources/gen/attachments_base.rb
|
180
|
+
- lib/asana/resources/gen/audit_log_api_base.rb
|
177
181
|
- lib/asana/resources/gen/batch_api_base.rb
|
178
182
|
- lib/asana/resources/gen/custom_field_settings_base.rb
|
179
183
|
- lib/asana/resources/gen/custom_fields_base.rb
|
180
184
|
- lib/asana/resources/gen/events_base.rb
|
185
|
+
- lib/asana/resources/gen/goals_base.rb
|
181
186
|
- lib/asana/resources/gen/jobs_base.rb
|
182
187
|
- lib/asana/resources/gen/organization_exports_base.rb
|
183
188
|
- lib/asana/resources/gen/portfolio_memberships_base.rb
|
184
189
|
- lib/asana/resources/gen/portfolios_base.rb
|
190
|
+
- lib/asana/resources/gen/project_briefs_base.rb
|
185
191
|
- lib/asana/resources/gen/project_memberships_base.rb
|
186
192
|
- lib/asana/resources/gen/project_statuses_base.rb
|
193
|
+
- lib/asana/resources/gen/project_templates_base.rb
|
187
194
|
- lib/asana/resources/gen/projects_base.rb
|
188
195
|
- lib/asana/resources/gen/sections_base.rb
|
196
|
+
- lib/asana/resources/gen/status_updates_base.rb
|
189
197
|
- lib/asana/resources/gen/stories_base.rb
|
190
198
|
- lib/asana/resources/gen/tags_base.rb
|
191
199
|
- lib/asana/resources/gen/tasks_base.rb
|
192
200
|
- lib/asana/resources/gen/team_memberships_base.rb
|
193
201
|
- lib/asana/resources/gen/teams_base.rb
|
202
|
+
- lib/asana/resources/gen/time_periods_base.rb
|
194
203
|
- lib/asana/resources/gen/typeahead_base.rb
|
195
204
|
- lib/asana/resources/gen/user_task_lists_base.rb
|
196
205
|
- lib/asana/resources/gen/users_base.rb
|
@@ -220,25 +229,32 @@ files:
|
|
220
229
|
- lib/asana/version.rb
|
221
230
|
- lib/templates/index.js
|
222
231
|
- lib/templates/resource.ejs
|
232
|
+
- package-lock.json
|
223
233
|
- package.json
|
224
234
|
- samples/attachments_sample.yaml
|
235
|
+
- samples/audit_log_api_sample.yaml
|
225
236
|
- samples/batch_api_sample.yaml
|
226
237
|
- samples/custom_field_settings_sample.yaml
|
227
238
|
- samples/custom_fields_sample.yaml
|
228
239
|
- samples/events_sample.yaml
|
240
|
+
- samples/goals_sample.yaml
|
229
241
|
- samples/jobs_sample.yaml
|
230
242
|
- samples/organization_exports_sample.yaml
|
231
243
|
- samples/portfolio_memberships_sample.yaml
|
232
244
|
- samples/portfolios_sample.yaml
|
245
|
+
- samples/project_briefs_sample.yaml
|
233
246
|
- samples/project_memberships_sample.yaml
|
234
247
|
- samples/project_statuses_sample.yaml
|
248
|
+
- samples/project_templates_sample.yaml
|
235
249
|
- samples/projects_sample.yaml
|
236
250
|
- samples/sections_sample.yaml
|
251
|
+
- samples/status_updates_sample.yaml
|
237
252
|
- samples/stories_sample.yaml
|
238
253
|
- samples/tags_sample.yaml
|
239
254
|
- samples/tasks_sample.yaml
|
240
255
|
- samples/team_memberships_sample.yaml
|
241
256
|
- samples/teams_sample.yaml
|
257
|
+
- samples/time_periods_sample.yaml
|
242
258
|
- samples/typeahead_sample.yaml
|
243
259
|
- samples/user_task_lists_sample.yaml
|
244
260
|
- samples/users_sample.yaml
|
@@ -258,16 +274,16 @@ require_paths:
|
|
258
274
|
- lib
|
259
275
|
required_ruby_version: !ruby/object:Gem::Requirement
|
260
276
|
requirements:
|
261
|
-
- - "
|
277
|
+
- - ">="
|
262
278
|
- !ruby/object:Gem::Version
|
263
|
-
version: '2.
|
279
|
+
version: '2.5'
|
264
280
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
265
281
|
requirements:
|
266
282
|
- - ">="
|
267
283
|
- !ruby/object:Gem::Version
|
268
284
|
version: '0'
|
269
285
|
requirements: []
|
270
|
-
rubygems_version: 3.
|
286
|
+
rubygems_version: 3.1.2
|
271
287
|
signing_key:
|
272
288
|
specification_version: 4
|
273
289
|
summary: Official Ruby client for the Asana API
|
data/.travis.yml
DELETED
@@ -1,16 +0,0 @@
|
|
1
|
-
language: ruby
|
2
|
-
rvm:
|
3
|
-
- 2.3.6
|
4
|
-
- 2.4.3
|
5
|
-
- 2.5.0
|
6
|
-
- 2.7.1
|
7
|
-
- 3.0.0
|
8
|
-
deploy:
|
9
|
-
provider: rubygems
|
10
|
-
api_key:
|
11
|
-
secure: ZFzExKt6auBOcQyg8955GwlZW2OaS64Q+XHGSay2MzjALw1iiy5uuMdwkueCKrGWSv6/eBe9jjsmYBe3OfkUIpIBbUacnbEYeaC70AyucNjvFrrl0YVYHb7neojarJUmKz9bz9Pkju/jdxksaYaj58xfq5YPQDfjFtdmylvuNEYpujT6goPEbxG4U4PpIhhQOZRDRXXAPS+f7jHejTSK06kvJjiJw0d51VJtBbp+0TKNKL6BDKdOKjKeHuebuUmSw8crDyaYdnwYwmNg1cJrGOv2t76M08zoKkkIO2lwPMHisi1/+cbVcZfxM4SfdHJeU6cQuRdb0uCUbbj6GsGwT8vWP2mGUrLe4UV/GfZDmvK3MKeKIlkgig31a3Qny9yjn8EjSnKHYuHBbJvPQDPPpFUfgEneUxn2t4P6m+epkd1gldWqTWf8mhMR/6xAFT4s+BaxnMMJsTC3Ea+dZZ30EqCw/kx5B2Z1KVLgsxHeMN/Q+AeOcbOvlGDsFL0Mjk/PqDTW1AWKLs/D1ohcxjSmlNJGWR6JHa/Ei0GqjDE2+/ZGsKsRfcDD4kU5qnKdqdzDlbL3cL4tChzuWVcguYdrg1yZzqPrCPzmy+2D7Hphyaj9CPKEh7qwT+IQU5o/V2peOJUjKrMlJS4gFq6MvTDh5U59J88Kkg72DXhcEUcySkU=
|
12
|
-
gem: asana
|
13
|
-
on:
|
14
|
-
tags: true
|
15
|
-
repo: Asana/ruby-asana
|
16
|
-
ruby: '2.5.0'
|