microslop_one_drive 3.1.0 → 4.0.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9db184b4df0a4b6a58972d944c9c9abea1e898d81be33f180fc041fbd79c2a99
4
- data.tar.gz: 21d761f38fb51a2985f49e082dd592f1f3e9361d39a38749ba44715360d9899d
3
+ metadata.gz: b67b506f45cdbaf68c26070ae5f63167d4a951a0d92718a0c8e752ba64ee519e
4
+ data.tar.gz: a4bf7735cf0e7b4758830fcaab56842d5f1fd8c36aef946fe29ae18c82d8e2e1
5
5
  SHA512:
6
- metadata.gz: fa9435c4a163c94012c88461c9330048ae08870a4cdf9fc0d4f8a31895aeac85ae3948fa5b420e4ec06bd00f2b202bdac25c968ad58dc36a1d905b0aff60ac55
7
- data.tar.gz: ebd2a33ffbf3880edc209a176371c15963df82642f6ed69167b32cf0867eadf5fddf2b06cab59b936c509a1df82cded8b2a6728b4e10513d7680f1835601c17b
6
+ metadata.gz: 1868c6c9533d47d93226862a1015d20b9947238ed547e737319bb27294efabe568cc65adf4cd172fe718e0f05e541814d59f6fbd303d65c9d5c17a4cb01941d5
7
+ data.tar.gz: 0e3cdecf71b3230726887ef2b40c301fac68a5fc84018791338940b889f9808cf93e635f6e19617cb5e6ac301030c905e03eafb1f95646e89e7b03cdcea1a361
data/README.md CHANGED
@@ -1,5 +1,7 @@
1
1
  # MicroslopOneDrive
2
2
 
3
+ [![Gem Version](https://badge.fury.io/rb/microslop_one_drive.svg?icon=si%3Arubygems)](https://badge.fury.io/rb/microslop_one_drive)
4
+
3
5
  Microslop OneDrive API client.
4
6
 
5
7
  See <https://learn.microsoft.com/en-us/onedrive/developer/rest-api/>
@@ -11,7 +11,6 @@ module MicroslopOneDrive
11
11
  include Endpoints::DriveItem
12
12
  include Endpoints::DriveItemExists
13
13
  include Endpoints::Delta
14
- include Endpoints::SharedWithMe
15
14
  include Endpoints::Permissions
16
15
  include Endpoints::Batch
17
16
  include Endpoints::BatchPermissions
@@ -1,3 +1,3 @@
1
1
  module MicroslopOneDrive
2
- VERSION = "3.1.0".freeze
2
+ VERSION = "4.0.0".freeze
3
3
  end
@@ -47,7 +47,6 @@ require_relative "microslop_one_drive/endpoints/drive_exists"
47
47
  require_relative "microslop_one_drive/endpoints/drive_item"
48
48
  require_relative "microslop_one_drive/endpoints/drive_item_exists"
49
49
  require_relative "microslop_one_drive/endpoints/delta"
50
- require_relative "microslop_one_drive/endpoints/shared_with_me"
51
50
  require_relative "microslop_one_drive/endpoints/permissions"
52
51
  require_relative "microslop_one_drive/endpoints/batch"
53
52
  require_relative "microslop_one_drive/endpoints/batch_permissions"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: microslop_one_drive
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.1.0
4
+ version: 4.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bradley Marques
@@ -55,7 +55,6 @@ files:
55
55
  - lib/microslop_one_drive/endpoints/drive_item_exists.rb
56
56
  - lib/microslop_one_drive/endpoints/me.rb
57
57
  - lib/microslop_one_drive/endpoints/permissions.rb
58
- - lib/microslop_one_drive/endpoints/shared_with_me.rb
59
58
  - lib/microslop_one_drive/endpoints/supports_sites.rb
60
59
  - lib/microslop_one_drive/errors/client_error.rb
61
60
  - lib/microslop_one_drive/file.rb
@@ -1,14 +0,0 @@
1
- module MicroslopOneDrive
2
- module Endpoints
3
- module SharedWithMe
4
- # Gets the Drive Items shared with the current user.
5
- #
6
- # @return [MicroslopOneDrive::SharedWithMeList]
7
- def shared_with_me
8
- response = get(path: "me/drive/sharedWithMe")
9
- handle_error(response) unless response.success?
10
- MicroslopOneDrive::ListResponses::SharedWithMeList.new(response.parsed_response)
11
- end
12
- end
13
- end
14
- end