webdav 0.2.0 → 0.2.2

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: 112d0cec672b4fba93b1b1b356ba14d148982ae94b9063c7df8ff0116ab2f775
4
- data.tar.gz: 0e94db83b43f2dd4efed30a214931086d29278fb5eab5dc3cc0b4cecf1fdb051
3
+ metadata.gz: 5f997a9cf6037eb202d5a5d506fbbce598c959283a814b0efe35dbc4f7269788
4
+ data.tar.gz: 281f7cf2ccc22f57d5f19683bc0b2e7bc23ca446efd636dfa7cd643b5be7a5ff
5
5
  SHA512:
6
- metadata.gz: 1684e452204e2e57250698d6acd09d7603bd51fcaeea1ddb679edf7bb2d80ae7310ad122ffb3917b5d9fa1bfe0e6e4952e4c79c5db74068a554a73c4d793a165
7
- data.tar.gz: 686bf1a9d4729235642d694379663ee5e9711291d5d524013a22ce05c10aac66b4235477cb8085e5208316830793f4cc58ef2ae6c26308ec7bb13ceacad70fc9
6
+ metadata.gz: f8701fdd32e92e49936800fe52b8aa75084f8d898fd7dbce9c38ffd1f62551d66edd10eb4961ad5b84f5b4d60cecaa2a54fd4c8f1d25d418b4ba45ce53e320a1
7
+ data.tar.gz: c23240bfac93ea558a0dc67fc694af589bd06476e7397d4008a09e6f3bc2f3063a603ddbc41904813e33662ed94d375c3797b0fe20054ba1b6c8799527a02931
data/CHANGELOG CHANGED
@@ -1,5 +1,23 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## 20260826
4
+
5
+ 0.2.2: ~ Gemfile, which bundler has been unable to parse since 0.2.1.
6
+
7
+ 1. ~ Gemfile: /gemspec/gemspec name: 'webdav'/. The bare gemspec directive refuses outright where it finds more than one gemspec to choose from, and 0.2.1 added webdav.rb.gemspec beside webdav.gemspec without the Gemfile following. Either name resolves the same dependencies, the two files differing only in their own; the one already on rubygems is the one named.
8
+ 2. Nothing had reported it: the Rakefile is a plain rake/testtask with no bundler/setup, so rake test never goes through bundler and has gone on passing against whatever the system Ruby holds. http.rb, rexml, minitest, minitest-mock and rake are declared here and nowhere else, so from 20260821 to now bundler could resolve none of them.
9
+ 3. ~ WebDAV::VERSION: /0.2.1/0.2.2/
10
+
11
+
12
+ ## 20260821
13
+
14
+ 0.2.1: + webdav.rb.gemspec, so that the gem resolves under both names.
15
+
16
+ 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.
17
+ 2. ~ webdav.gemspec: + a comment naming the second gemspec, this being the gem which already exists on rubygems.
18
+ 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.
19
+ 4. ~ WebDAV::VERSION: /0.2.0/0.2.1/
20
+
3
21
  ## 20260522
4
22
 
5
23
  0.2.0: Rewrite MultiStatus#parse; align dependencies with http.rb 1.0.0; document WebDAV concepts.
data/Gemfile CHANGED
@@ -1,3 +1,3 @@
1
1
  source 'https://rubygems.org'
2
2
 
3
- gemspec
3
+ gemspec name: 'webdav'
@@ -2,5 +2,5 @@
2
2
  # WebDAV::VERSION
3
3
 
4
4
  class WebDAV
5
- VERSION = '0.2.0'
5
+ VERSION = '0.2.2'
6
6
  end
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
- 'webdav.gemspec',
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
- Dir['lib/**/*.rb'],
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.0
4
+ version: 0.2.2
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.12
128
+ rubygems_version: 4.0.19
129
129
  specification_version: 4
130
130
  summary: A Ruby WebDAV client library.
131
131
  test_files: []