discourse_api 0.37.0 → 0.38.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/CHANGELOG.md +5 -0
- data/lib/discourse_api/api/groups.rb +7 -1
- data/lib/discourse_api/client.rb +1 -1
- data/lib/discourse_api/single_sign_on.rb +3 -2
- data/lib/discourse_api/version.rb +1 -1
- data/spec/discourse_api/api/api_key_spec.rb +10 -10
- data/spec/discourse_api/api/backups_spec.rb +3 -3
- data/spec/discourse_api/api/badges_spec.rb +5 -5
- data/spec/discourse_api/api/categories_spec.rb +8 -8
- data/spec/discourse_api/api/email_spec.rb +5 -5
- data/spec/discourse_api/api/groups_spec.rb +31 -23
- data/spec/discourse_api/api/notifications_spec.rb +3 -3
- data/spec/discourse_api/api/polls_spec.rb +7 -7
- data/spec/discourse_api/api/posts_spec.rb +7 -7
- data/spec/discourse_api/api/private_messages_spec.rb +7 -7
- data/spec/discourse_api/api/search_spec.rb +3 -3
- data/spec/discourse_api/api/site_settings_spec.rb +3 -3
- data/spec/discourse_api/api/sso_spec.rb +1 -1
- data/spec/discourse_api/api/topics_spec.rb +14 -14
- data/spec/discourse_api/api/uploads_spec.rb +2 -2
- data/spec/discourse_api/api/user_actions_spec.rb +5 -5
- data/spec/discourse_api/api/users_spec.rb +42 -42
- data/spec/discourse_api/client_spec.rb +20 -20
- data/spec/fixtures/members_2.json +437 -0
- data/spec/spec_helper.rb +4 -0
- metadata +4 -2
data/spec/spec_helper.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: discourse_api
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.38.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Sam Saffron
|
@@ -11,7 +11,7 @@ authors:
|
|
11
11
|
autorequire:
|
12
12
|
bindir: bin
|
13
13
|
cert_chain: []
|
14
|
-
date: 2019-
|
14
|
+
date: 2019-10-18 00:00:00.000000000 Z
|
15
15
|
dependencies:
|
16
16
|
- !ruby/object:Gem::Dependency
|
17
17
|
name: faraday
|
@@ -285,6 +285,7 @@ files:
|
|
285
285
|
- spec/fixtures/latest.json
|
286
286
|
- spec/fixtures/members_0.json
|
287
287
|
- spec/fixtures/members_1.json
|
288
|
+
- spec/fixtures/members_2.json
|
288
289
|
- spec/fixtures/new.json
|
289
290
|
- spec/fixtures/notifications.json
|
290
291
|
- spec/fixtures/polls_toggle_status.json
|
@@ -375,6 +376,7 @@ test_files:
|
|
375
376
|
- spec/fixtures/latest.json
|
376
377
|
- spec/fixtures/members_0.json
|
377
378
|
- spec/fixtures/members_1.json
|
379
|
+
- spec/fixtures/members_2.json
|
378
380
|
- spec/fixtures/new.json
|
379
381
|
- spec/fixtures/notifications.json
|
380
382
|
- spec/fixtures/polls_toggle_status.json
|