nextcloud-client 0.0.2 → 0.1.1
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 +6 -0
- data/lib/nextcloud-client/version/nextcloud-client.rb +1 -1
- data/nextcloud-client.gemspec +7 -0
- metadata +6 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0ddd1b4567f5597baad07499ca3949d3f65ff7d1e3792ed56e7664cd43ad2e27
|
4
|
+
data.tar.gz: 3a8f543b80e5be2b4a53f7258e50978e226dde60398e24570dacc085a025a8bb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1097e23f5d11a59f23b286ed4bf559084f0eca9f50adc8dca3b42b21ee89872f8fa99d8048f485ca51e20cfbde3f9b5e20b5293b219ad6580095498d7e5c606b
|
7
|
+
data.tar.gz: f9373fcfd8c107c1ee5efc3319dc41aa37479adb16182ac74036028ef945e0be0c233b60da4313d9e67d4c0254c4d49afecef2e8b9aec8a39e4ada0b61cc31ca
|
data/CHANGELOG.md
CHANGED
data/nextcloud-client.gemspec
CHANGED
@@ -11,9 +11,16 @@ Gem::Specification.new do |spec|
|
|
11
11
|
spec.description = "Nextcloud OCS and WebDAV API endpoints wrapper in Ruby for user provisioning, file and directory
|
12
12
|
management, sharing (including Federated Cloud Sharing), group and application operations."
|
13
13
|
spec.homepage = "https://github.com/baraidrissa/nextcloud-client"
|
14
|
+
spec.metadata["changelog_uri"] = "https://github.com/baraidrissa/nextcloud-client/blob/main/CHANGELOG.md"
|
14
15
|
spec.license = "MIT"
|
15
16
|
|
16
17
|
spec.required_ruby_version = ">= 3.3.5"
|
18
|
+
spec.post_install_message = <<~MESSAGE
|
19
|
+
Ciao, thanks for installing `nextcloud_client`!
|
20
|
+
|
21
|
+
If you like it, don’t forget to leave a ⭐ on the repo or send a PR — contributions are welcome!
|
22
|
+
MESSAGE
|
23
|
+
|
17
24
|
# Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
|
18
25
|
# to allow pushing to a single host or delete this section to allow pushing to any host.
|
19
26
|
if spec.respond_to?(:metadata)
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: nextcloud-client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Idrissa Bara
|
@@ -195,9 +195,13 @@ homepage: https://github.com/baraidrissa/nextcloud-client
|
|
195
195
|
licenses:
|
196
196
|
- MIT
|
197
197
|
metadata:
|
198
|
+
changelog_uri: https://github.com/baraidrissa/nextcloud-client/blob/main/CHANGELOG.md
|
198
199
|
allowed_push_host: https://rubygems.org
|
199
200
|
yard.run: yri
|
200
|
-
post_install_message:
|
201
|
+
post_install_message: |
|
202
|
+
Ciao, thanks for installing `nextcloud_client`!
|
203
|
+
|
204
|
+
If you like it, don’t forget to leave a ⭐ on the repo or send a PR — contributions are welcome!
|
201
205
|
rdoc_options: []
|
202
206
|
require_paths:
|
203
207
|
- lib
|