rack-webdav 0.4.1 → 0.4.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 +4 -4
- data/LICENSE +23 -1
- data/lib/rack-webdav/version.rb +1 -1
- data/rack-webdav.gemspec +9 -5
- metadata +5 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 43db150f50bda6ebc40e2fcac2684ab96c1a90ac
|
|
4
|
+
data.tar.gz: fe75dfa791f91c6d4489b268c47315ab509b10ff
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 296a499b062662184e7da39840918ce7b1892be2a27e5ef8867ef0c068c2f4f7f1522a93332e8478af18b89c1ca457b76a89a6fa3130285134321f0bb3c575a5
|
|
7
|
+
data.tar.gz: 238656df1091b804a97b9f2cb398dc4e322c6013266002461d8e382fc5b676f9f794603f43888790b32fc0742c6b48522c7d74086b11c482d27f9dc1a8c92afc
|
data/LICENSE
CHANGED
|
@@ -1,4 +1,26 @@
|
|
|
1
|
-
|
|
1
|
+
License
|
|
2
|
+
-------
|
|
3
|
+
|
|
4
|
+
Copyright (c) 2017 Koki Oyatsu <kaishuu0123@gmail.com>
|
|
5
|
+
|
|
6
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
7
|
+
of this software and associated documentation files (the "Software"), to
|
|
8
|
+
deal in the Software without restriction, including without limitation the
|
|
9
|
+
rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
|
10
|
+
sell copies of the Software, and to permit persons to whom the Software is
|
|
11
|
+
furnished to do so, subject to the following conditions:
|
|
12
|
+
|
|
13
|
+
The above copyright notice and this permission notice shall be included in
|
|
14
|
+
all copies or substantial portions of the Software.
|
|
15
|
+
|
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
17
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
18
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
19
|
+
THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
20
|
+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
21
|
+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
22
|
+
|
|
23
|
+
DAV4Rack license:
|
|
2
24
|
|
|
3
25
|
Copyright (c) 2010 Chris Roberts <chrisroberts.code@gmail.com>
|
|
4
26
|
|
data/lib/rack-webdav/version.rb
CHANGED
data/rack-webdav.gemspec
CHANGED
|
@@ -3,17 +3,22 @@ require File.expand_path("../lib/rack-webdav/version", __FILE__)
|
|
|
3
3
|
Gem::Specification.new do |s|
|
|
4
4
|
s.name = 'rack-webdav'
|
|
5
5
|
s.version = RackWebDAV::VERSION
|
|
6
|
-
|
|
6
|
+
|
|
7
|
+
s.required_ruby_version = '>= 1.9.3'
|
|
8
|
+
|
|
7
9
|
s.author = 'Koki Oyatsu'
|
|
8
10
|
s.email = 'kaishuu0123@gmail.com'
|
|
11
|
+
s.summary = 'WebDAV handler for Rack'
|
|
12
|
+
s.description = 'WebDAV handler for Rack (dav4rack based)'
|
|
9
13
|
s.homepage = 'http://github.com/kaishuu0123/rack-webdav'
|
|
10
|
-
s.
|
|
11
|
-
|
|
14
|
+
s.licenses = ['MIT']
|
|
15
|
+
|
|
12
16
|
s.has_rdoc = true
|
|
13
17
|
s.extra_rdoc_files = ['README.rdoc']
|
|
14
18
|
|
|
19
|
+
s.executables = ['rack-webdav']
|
|
20
|
+
s.require_paths = ['lib']
|
|
15
21
|
s.files = Dir.glob('{bin,lib}/**/*') + %w{rack-webdav.gemspec .gitignore README.rdoc LICENSE}
|
|
16
|
-
s.require_path = 'lib'
|
|
17
22
|
|
|
18
23
|
s.add_dependency 'nokogiri', '>= 1.4.2'
|
|
19
24
|
s.add_dependency 'uuidtools', '~> 2.1.1'
|
|
@@ -27,5 +32,4 @@ Gem::Specification.new do |s|
|
|
|
27
32
|
s.add_development_dependency 'awesome_print'
|
|
28
33
|
s.add_development_dependency 'hirb'
|
|
29
34
|
s.add_development_dependency 'hirb-unicode'
|
|
30
|
-
|
|
31
35
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rack-webdav
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.4.
|
|
4
|
+
version: 0.4.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Koki Oyatsu
|
|
@@ -150,7 +150,7 @@ dependencies:
|
|
|
150
150
|
- - ">="
|
|
151
151
|
- !ruby/object:Gem::Version
|
|
152
152
|
version: '0'
|
|
153
|
-
description: WebDAV handler for Rack
|
|
153
|
+
description: WebDAV handler for Rack (dav4rack based)
|
|
154
154
|
email: kaishuu0123@gmail.com
|
|
155
155
|
executables:
|
|
156
156
|
- rack-webdav
|
|
@@ -181,7 +181,8 @@ files:
|
|
|
181
181
|
- lib/rack-webdav/version.rb
|
|
182
182
|
- rack-webdav.gemspec
|
|
183
183
|
homepage: http://github.com/kaishuu0123/rack-webdav
|
|
184
|
-
licenses:
|
|
184
|
+
licenses:
|
|
185
|
+
- MIT
|
|
185
186
|
metadata: {}
|
|
186
187
|
post_install_message:
|
|
187
188
|
rdoc_options: []
|
|
@@ -191,7 +192,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
191
192
|
requirements:
|
|
192
193
|
- - ">="
|
|
193
194
|
- !ruby/object:Gem::Version
|
|
194
|
-
version:
|
|
195
|
+
version: 1.9.3
|
|
195
196
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
196
197
|
requirements:
|
|
197
198
|
- - ">="
|