webdav 0.2.0 → 0.2.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 +9 -0
- data/lib/WebDAV/VERSION.rb +1 -1
- data/webdav.gemspec +3 -3
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 729f6cfb2baee51ecad7601d7258c4dec159f3db1c7bacc9254a0c746c40b6a9
|
|
4
|
+
data.tar.gz: 78e35294e72cd51a715055de602e5d3671d8ff5fd6459bb36858d1b431379b1f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d743561ea73e92e0bf40f3c42b5fa7f9b3bb48f488c69d882b177a419c758f47c501a7aac6335649a518cc1f523e81d4cea2bd6dbd3e5307ba55ae135faa6c8a
|
|
7
|
+
data.tar.gz: f44bf6061e51020b7aa3bb08364be8e2ae030725aa2ce81e33e02dc6de6086bc87d447f4f11a6f0ab1702c62afcec63798f5a192389748d379b1a04922a78b18
|
data/CHANGELOG
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# CHANGELOG
|
|
2
2
|
|
|
3
|
+
## 20260821
|
|
4
|
+
|
|
5
|
+
0.2.1: + webdav.rb.gemspec, so that the gem resolves under both names.
|
|
6
|
+
|
|
7
|
+
1. + webdav.rb.gemspec: the same code published as webdav.rb, caldav being published as caldav.rb. rubygems has no notion of an alias, so the two are separate gems which must be kept at the same version by hand.
|
|
8
|
+
2. ~ webdav.gemspec: + a comment naming the second gemspec, this being the gem which already exists on rubygems.
|
|
9
|
+
3. gem-publish 0.2.0 is what makes this work: gem build and gem push each take one file, so the earlier `gem build *.gemspec` built whichever the shell listed first and webdav.rb was never built at all.
|
|
10
|
+
4. ~ WebDAV::VERSION: /0.2.0/0.2.1/
|
|
11
|
+
|
|
3
12
|
## 20260522
|
|
4
13
|
|
|
5
14
|
0.2.0: Rewrite MultiStatus#parse; align dependencies with http.rb 1.0.0; document WebDAV concepts.
|
data/lib/WebDAV/VERSION.rb
CHANGED
data/webdav.gemspec
CHANGED
|
@@ -26,14 +26,14 @@ Gem::Specification.new do |spec|
|
|
|
26
26
|
spec.require_paths = ['lib']
|
|
27
27
|
|
|
28
28
|
spec.files = [
|
|
29
|
-
'
|
|
29
|
+
Dir['lib/**/*.rb'],
|
|
30
|
+
Dir['test/**/*.rb'],
|
|
30
31
|
'CHANGELOG',
|
|
31
32
|
'Gemfile',
|
|
32
33
|
'LICENSE',
|
|
33
34
|
'Rakefile',
|
|
34
35
|
'README.md',
|
|
35
|
-
|
|
36
|
-
Dir['test/**/*.rb']
|
|
36
|
+
'webdav.gemspec',
|
|
37
37
|
].flatten
|
|
38
38
|
|
|
39
39
|
spec.dependencies = [
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: webdav
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- thoran
|
|
@@ -125,7 +125,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
125
125
|
- !ruby/object:Gem::Version
|
|
126
126
|
version: '0'
|
|
127
127
|
requirements: []
|
|
128
|
-
rubygems_version: 4.0.
|
|
128
|
+
rubygems_version: 4.0.18
|
|
129
129
|
specification_version: 4
|
|
130
130
|
summary: A Ruby WebDAV client library.
|
|
131
131
|
test_files: []
|