ribose 0.3.1 → 0.5.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/test.yml +27 -0
- data/.rubocop.yml +8 -643
- data/CHANGELOG.adoc +36 -0
- data/README.adoc +842 -0
- data/lib/ribose/actions/create.rb +1 -1
- data/lib/ribose/client.rb +26 -8
- data/lib/ribose/configuration.rb +20 -3
- data/lib/ribose/connection.rb +15 -0
- data/lib/ribose/event.rb +1 -1
- data/lib/ribose/file_uploader.rb +21 -3
- data/lib/ribose/file_version.rb +58 -7
- data/lib/ribose/request.rb +46 -10
- data/lib/ribose/response/raise_error.rb +0 -2
- data/lib/ribose/session.rb +40 -16
- data/lib/ribose/space.rb +4 -0
- data/lib/ribose/space_file.rb +16 -1
- data/lib/ribose/user.rb +9 -5
- data/lib/ribose/version.rb +1 -1
- data/lib/ribose/version_uploader.rb +27 -0
- data/ribose.gemspec +4 -5
- data/spec/ribose/client_spec.rb +18 -19
- data/spec/ribose/config_spec.rb +0 -1
- data/spec/ribose/connection_spec.rb +11 -0
- data/spec/ribose/file_uploader_spec.rb +16 -3
- data/spec/ribose/file_version_spec.rb +56 -0
- data/spec/ribose/message_spec.rb +3 -2
- data/spec/ribose/session_spec.rb +18 -24
- data/spec/ribose/space_file_spec.rb +32 -1
- data/spec/ribose/space_spec.rb +12 -1
- data/spec/ribose/user_spec.rb +2 -2
- data/spec/spec_helper.rb +2 -1
- data/spec/support/fake_ribose_api.rb +34 -7
- data/spec/support/file_upload_stub.rb +21 -15
- metadata +24 -38
- data/.travis.yml +0 -5
- data/CHANGELOG.md +0 -5
- data/README.md +0 -745
data/CHANGELOG.adoc
ADDED
@@ -0,0 +1,36 @@
|
|
1
|
+
== 0.5.0 (2021-12-30)
|
2
|
+
|
3
|
+
Features:
|
4
|
+
|
5
|
+
* Adopt changes for new API authentication
|
6
|
+
* Add support for ruby 3.0 and drop ruby 2.4
|
7
|
+
|
8
|
+
== 0.4.0 (2018-12-15)
|
9
|
+
|
10
|
+
Features:
|
11
|
+
|
12
|
+
* Add new interface to remove a user's space
|
13
|
+
* Add an interface to disconnect a connection
|
14
|
+
* Interface to create & download file version
|
15
|
+
|
16
|
+
Fixes:
|
17
|
+
|
18
|
+
* Fix the unknown file upload related issues
|
19
|
+
|
20
|
+
== 0.3.2 (2018-06-28)
|
21
|
+
|
22
|
+
Features:
|
23
|
+
|
24
|
+
* Add interface for calendar event resources
|
25
|
+
* Add interface for space category, file icon
|
26
|
+
* Add interface to fetch file version and etc.
|
27
|
+
|
28
|
+
Fixes:
|
29
|
+
|
30
|
+
* Fix file upload related error
|
31
|
+
|
32
|
+
== 0.2.0 (2017-11-30)
|
33
|
+
|
34
|
+
Features:
|
35
|
+
|
36
|
+
* Initial functional release.
|