activestorage_webdav 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +16 -0
- data/.rspec +3 -0
- data/.ruby-version +1 -0
- data/.travis.yml +5 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/Gemfile +6 -0
- data/LICENSE +21 -0
- data/README-ruRU.md +45 -0
- data/README.md +43 -0
- data/Rakefile +6 -0
- data/activestorage_webdav.gemspec +31 -0
- data/bin/console +15 -0
- data/bin/setup +8 -0
- data/lib/active_storage/service/web_dav_service.rb +114 -0
- data/lib/activestorage_webdav.rb +5 -0
- data/lib/activestorage_webdav/version.rb +3 -0
- metadata +158 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: '007166075087a8196a8d8e34a8550f7a4fbb8386767235b60b473ea79c17a1fe'
|
4
|
+
data.tar.gz: 962563eb4bf25e0a40fd9466962fabe939f8b3ea62ef6d46d0cb3ba678ccc88a
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: '0487a80521f81a2a18f18bfd62b6918afb06ebea8c5cdce3cebe3e68cf4d92f856ce231bf225b452e3721987223890b966adc6be3bdebb39d8a5d98bc30daeb0'
|
7
|
+
data.tar.gz: cb032e6f468081adb147648e0dc6915f46d5633e5e99edf33a43ebed8b1893601cd89153e1ab5c0c59d0a1769b5146e993722b5da76b573de0696cf1db86478d
|
data/.gitignore
ADDED
data/.rspec
ADDED
data/.ruby-version
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
2.5.1
|
data/.travis.yml
ADDED
data/CODE_OF_CONDUCT.md
ADDED
@@ -0,0 +1,74 @@
|
|
1
|
+
# Contributor Covenant Code of Conduct
|
2
|
+
|
3
|
+
## Our Pledge
|
4
|
+
|
5
|
+
In the interest of fostering an open and welcoming environment, we as
|
6
|
+
contributors and maintainers pledge to making participation in our project and
|
7
|
+
our community a harassment-free experience for everyone, regardless of age, body
|
8
|
+
size, disability, ethnicity, gender identity and expression, level of experience,
|
9
|
+
nationality, personal appearance, race, religion, or sexual identity and
|
10
|
+
orientation.
|
11
|
+
|
12
|
+
## Our Standards
|
13
|
+
|
14
|
+
Examples of behavior that contributes to creating a positive environment
|
15
|
+
include:
|
16
|
+
|
17
|
+
* Using welcoming and inclusive language
|
18
|
+
* Being respectful of differing viewpoints and experiences
|
19
|
+
* Gracefully accepting constructive criticism
|
20
|
+
* Focusing on what is best for the community
|
21
|
+
* Showing empathy towards other community members
|
22
|
+
|
23
|
+
Examples of unacceptable behavior by participants include:
|
24
|
+
|
25
|
+
* The use of sexualized language or imagery and unwelcome sexual attention or
|
26
|
+
advances
|
27
|
+
* Trolling, insulting/derogatory comments, and personal or political attacks
|
28
|
+
* Public or private harassment
|
29
|
+
* Publishing others' private information, such as a physical or electronic
|
30
|
+
address, without explicit permission
|
31
|
+
* Other conduct which could reasonably be considered inappropriate in a
|
32
|
+
professional setting
|
33
|
+
|
34
|
+
## Our Responsibilities
|
35
|
+
|
36
|
+
Project maintainers are responsible for clarifying the standards of acceptable
|
37
|
+
behavior and are expected to take appropriate and fair corrective action in
|
38
|
+
response to any instances of unacceptable behavior.
|
39
|
+
|
40
|
+
Project maintainers have the right and responsibility to remove, edit, or
|
41
|
+
reject comments, commits, code, wiki edits, issues, and other contributions
|
42
|
+
that are not aligned to this Code of Conduct, or to ban temporarily or
|
43
|
+
permanently any contributor for other behaviors that they deem inappropriate,
|
44
|
+
threatening, offensive, or harmful.
|
45
|
+
|
46
|
+
## Scope
|
47
|
+
|
48
|
+
This Code of Conduct applies both within project spaces and in public spaces
|
49
|
+
when an individual is representing the project or its community. Examples of
|
50
|
+
representing a project or community include using an official project e-mail
|
51
|
+
address, posting via an official social media account, or acting as an appointed
|
52
|
+
representative at an online or offline event. Representation of a project may be
|
53
|
+
further defined and clarified by project maintainers.
|
54
|
+
|
55
|
+
## Enforcement
|
56
|
+
|
57
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
58
|
+
reported by contacting the project team at a.razumova@fun-box.ru. All
|
59
|
+
complaints will be reviewed and investigated and will result in a response that
|
60
|
+
is deemed necessary and appropriate to the circumstances. The project team is
|
61
|
+
obligated to maintain confidentiality with regard to the reporter of an incident.
|
62
|
+
Further details of specific enforcement policies may be posted separately.
|
63
|
+
|
64
|
+
Project maintainers who do not follow or enforce the Code of Conduct in good
|
65
|
+
faith may face temporary or permanent repercussions as determined by other
|
66
|
+
members of the project's leadership.
|
67
|
+
|
68
|
+
## Attribution
|
69
|
+
|
70
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
|
71
|
+
available at [http://contributor-covenant.org/version/1/4][version]
|
72
|
+
|
73
|
+
[homepage]: http://contributor-covenant.org
|
74
|
+
[version]: http://contributor-covenant.org/version/1/4/
|
data/Gemfile
ADDED
data/LICENSE
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
MIT License
|
2
|
+
|
3
|
+
Copyright (c) 2018 Anna Razumova
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
13
|
+
copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
+
SOFTWARE.
|
data/README-ruRU.md
ADDED
@@ -0,0 +1,45 @@
|
|
1
|
+
# ActiveStorageWebDAV
|
2
|
+
|
3
|
+
WebDAV сервис для ActiveStorage.
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Добавьте эту строку в Gemfile вашего приложения:
|
8
|
+
|
9
|
+
```ruby
|
10
|
+
gem 'activestorage_webdav'
|
11
|
+
```
|
12
|
+
|
13
|
+
Запустите:
|
14
|
+
|
15
|
+
$ bundle
|
16
|
+
|
17
|
+
Объявите webdav сервис в файле config/storage.yml с нужными параметрами:
|
18
|
+
|
19
|
+
```yml
|
20
|
+
webdav:
|
21
|
+
service: WebDAV
|
22
|
+
url: "http://path_to_your/webdav_server/"
|
23
|
+
```
|
24
|
+
|
25
|
+
## Использование
|
26
|
+
|
27
|
+
Чтобы использовать сервис WebDAV в среде разработки, нужно добавить следующее в config/environments/нужная_среда.rb:
|
28
|
+
|
29
|
+
```ruby.
|
30
|
+
config.active_storage.service = :webdav
|
31
|
+
```
|
32
|
+
|
33
|
+
## Сотрудничество
|
34
|
+
|
35
|
+
Сообщения об ошибках и pull requests принимаются здесь: https://github.com/[USERNAME]/activestorage_webdav. Для более продуктивного сотрудничества, придерживатесь кодекс поведения для проектов с открытым исходным кодом [Contributor Covenant] (http://contributor-covenant.org).
|
36
|
+
|
37
|
+
## Лицензия
|
38
|
+
|
39
|
+
Данный гем опубликован на условиях лицензии [MIT License](https://opensource.org/licenses/MIT).
|
40
|
+
|
41
|
+
## Этические правила поведения
|
42
|
+
|
43
|
+
Все, кто использует код проекта ActiveStorageWebDAV, обязуются соблюдать
|
44
|
+
[правила поведения](https://github.com/[USERNAME]/activestorage_webdav/blob/master/CODE_OF_CONDUCT.md).
|
45
|
+
|
data/README.md
ADDED
@@ -0,0 +1,43 @@
|
|
1
|
+
# ActiveStorageWebDAV
|
2
|
+
|
3
|
+
WebDAV service for ActiveStorage.
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add this line to your application's Gemfile:
|
8
|
+
|
9
|
+
```ruby
|
10
|
+
gem 'activestorage_webdav'
|
11
|
+
```
|
12
|
+
|
13
|
+
And then execute:
|
14
|
+
|
15
|
+
$ bundle
|
16
|
+
|
17
|
+
Set up webdav storage service in config/storage.yml:
|
18
|
+
|
19
|
+
```yml
|
20
|
+
webdav:
|
21
|
+
service: WebDAV
|
22
|
+
url: "http://path_to_your/webdav_server/"
|
23
|
+
```
|
24
|
+
|
25
|
+
## Usage
|
26
|
+
|
27
|
+
To use the WebDAV service in the development environment, you would add the following to config/environments/your_environment.rb:
|
28
|
+
|
29
|
+
```ruby.
|
30
|
+
config.active_storage.service = :webdav
|
31
|
+
```
|
32
|
+
|
33
|
+
## Contributing
|
34
|
+
|
35
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/activestorage_webdav. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
|
36
|
+
|
37
|
+
## License
|
38
|
+
|
39
|
+
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
40
|
+
|
41
|
+
## Code of Conduct
|
42
|
+
|
43
|
+
Everyone interacting in the Activestorage::Webdav project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/activestorage_webdav/blob/master/CODE_OF_CONDUCT.md).
|
data/Rakefile
ADDED
@@ -0,0 +1,31 @@
|
|
1
|
+
|
2
|
+
$LOAD_PATH.unshift(File.expand_path('../lib', __FILE__)).uniq!
|
3
|
+
require 'activestorage_webdav/version'
|
4
|
+
|
5
|
+
Gem::Specification.new do |spec|
|
6
|
+
spec.name = 'activestorage_webdav'
|
7
|
+
spec.version = ActivestorageWebdav::VERSION
|
8
|
+
spec.authors = ['Ann Razumova']
|
9
|
+
spec.email = ['hyrintalion@gmail.com']
|
10
|
+
|
11
|
+
spec.homepage = 'https://github.com/hyrintalion/activestorage-webdav'
|
12
|
+
spec.summary = 'ActiveStorage adapter for WebDAV.'
|
13
|
+
spec.description = 'ActiveStorage adapter for WebDAV.'
|
14
|
+
spec.license = 'MIT'
|
15
|
+
|
16
|
+
spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
17
|
+
f.match(%r{^(test|spec|features)/})
|
18
|
+
end
|
19
|
+
spec.bindir = 'exe'
|
20
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
21
|
+
spec.require_paths = ['lib']
|
22
|
+
|
23
|
+
spec.add_development_dependency 'bundler', '~> 1.16'
|
24
|
+
spec.add_development_dependency 'rake', '~> 10.0'
|
25
|
+
spec.add_development_dependency 'rspec', '~> 3.0'
|
26
|
+
spec.add_development_dependency 'webmock', '~> 2.1'
|
27
|
+
spec.add_development_dependency 'rack_dav'
|
28
|
+
|
29
|
+
spec.add_runtime_dependency 'activestorage', '~> 5.2'
|
30
|
+
spec.add_runtime_dependency 'net_dav', '~> 0.5.1'
|
31
|
+
end
|
data/bin/console
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require 'bundler/setup'
|
4
|
+
require 'activestorage_webdav'
|
5
|
+
require 'active_storage/service/web_dav_service'
|
6
|
+
|
7
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
8
|
+
# with your gem easier. You can also use a different console, if you like.
|
9
|
+
|
10
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
11
|
+
# require "pry"
|
12
|
+
# Pry.start
|
13
|
+
|
14
|
+
require 'irb'
|
15
|
+
IRB.start(__FILE__)
|
data/bin/setup
ADDED
@@ -0,0 +1,114 @@
|
|
1
|
+
require 'net/dav'
|
2
|
+
require 'active_support/core_ext/array'
|
3
|
+
|
4
|
+
module ActiveStorage
|
5
|
+
class Service::WebDAVService < Service
|
6
|
+
|
7
|
+
def initialize(args)
|
8
|
+
@path = args[:url]
|
9
|
+
return @webdav = args[:net_dav] if args[:net_dav]
|
10
|
+
@webdav = Net::DAV.new args[:url]
|
11
|
+
end
|
12
|
+
|
13
|
+
def upload(key, io, checksum: nil)
|
14
|
+
instrument :upload, key: key, checksum: checksum do
|
15
|
+
begin
|
16
|
+
full_path = path_for key
|
17
|
+
answer = @webdav.put(full_path, io, File.size(io))
|
18
|
+
rescue StandardError
|
19
|
+
raise ActiveStorage::IntegrityError
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
23
|
+
|
24
|
+
def url(key, expires_in:, disposition:, filename:, content_type:)
|
25
|
+
instrument :url, key: key do |payload|
|
26
|
+
full_path = path_for key
|
27
|
+
payload[:url] = full_path
|
28
|
+
full_path
|
29
|
+
end
|
30
|
+
end
|
31
|
+
|
32
|
+
def url_for_direct_upload(key, expires_in:, content_type:, content_length:, checksum:)
|
33
|
+
instrument :url, key: key do |payload|
|
34
|
+
full_path = path_for key
|
35
|
+
payload[:url] = full_path
|
36
|
+
full_path
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
def exist?(key)
|
41
|
+
instrument :exist, key: key do |payload|
|
42
|
+
answer = @webdav.exists? path_for key
|
43
|
+
payload[:exist] = answer
|
44
|
+
answer
|
45
|
+
end
|
46
|
+
end
|
47
|
+
|
48
|
+
def delete(key)
|
49
|
+
instrument :delete, key: key do
|
50
|
+
begin
|
51
|
+
@webdav.delete path_for key
|
52
|
+
rescue StandardError
|
53
|
+
# Ignore files already deleted
|
54
|
+
end
|
55
|
+
end
|
56
|
+
end
|
57
|
+
|
58
|
+
# Delete files at keys starting with the +prefix+.
|
59
|
+
def delete_prefixed(prefix)
|
60
|
+
instrument :delete_prefixed, prefix: prefix do
|
61
|
+
files = prefixed_filenames prefix
|
62
|
+
files.each do |filename|
|
63
|
+
url = path_for filename
|
64
|
+
@webdav.delete url
|
65
|
+
end
|
66
|
+
end
|
67
|
+
end
|
68
|
+
|
69
|
+
def download(key, &block)
|
70
|
+
full_path = path_for key
|
71
|
+
if block_given?
|
72
|
+
instrument :streaming_download, key: key do
|
73
|
+
@webdav.get(full_path, &block)
|
74
|
+
end
|
75
|
+
else
|
76
|
+
instrument :download, key: key do
|
77
|
+
@webdav.get(full_path)
|
78
|
+
end
|
79
|
+
end
|
80
|
+
end
|
81
|
+
|
82
|
+
def download_chunk(key, range)
|
83
|
+
instrument :download_chunk, key: key, range: range do
|
84
|
+
range_end = range.exclude_end? ? range.end - 1 : range.end
|
85
|
+
range_for_dav = "bytes=#{range.begin}-#{range_end}"
|
86
|
+
|
87
|
+
full_path = path_for key
|
88
|
+
@webdav.get(full_path, 'Range' => range_for_dav)
|
89
|
+
end
|
90
|
+
end
|
91
|
+
|
92
|
+
private
|
93
|
+
|
94
|
+
def prefixed_filenames(prefix)
|
95
|
+
options = <<XML
|
96
|
+
<?xml version="1.0"?>
|
97
|
+
<a:propfind xmlns:a="DAV:">
|
98
|
+
<a:prop><a:resourcetype/></a:prop>
|
99
|
+
</a:propfind>
|
100
|
+
XML
|
101
|
+
answer = @webdav.propfind(@path, options)
|
102
|
+
|
103
|
+
answer.xpath('//D:href').select do |href|
|
104
|
+
href = href.to_s.sub('<D:href>', '').sub('</D:href>', '').split('/').last
|
105
|
+
href if href.scan(prefix).size > 0
|
106
|
+
end
|
107
|
+
end
|
108
|
+
|
109
|
+
def path_for(key)
|
110
|
+
return key unless @path
|
111
|
+
URI.join(@path, key)
|
112
|
+
end
|
113
|
+
end
|
114
|
+
end
|
metadata
ADDED
@@ -0,0 +1,158 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: activestorage_webdav
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Ann Razumova
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2018-06-16 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.16'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.16'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '10.0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '10.0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rspec
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '3.0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '3.0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: webmock
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - "~>"
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '2.1'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - "~>"
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '2.1'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: rack_dav
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - ">="
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0'
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - ">="
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0'
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: activestorage
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - "~>"
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '5.2'
|
90
|
+
type: :runtime
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - "~>"
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: '5.2'
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: net_dav
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - "~>"
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: 0.5.1
|
104
|
+
type: :runtime
|
105
|
+
prerelease: false
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - "~>"
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: 0.5.1
|
111
|
+
description: ActiveStorage adapter for WebDAV.
|
112
|
+
email:
|
113
|
+
- hyrintalion@gmail.com
|
114
|
+
executables: []
|
115
|
+
extensions: []
|
116
|
+
extra_rdoc_files: []
|
117
|
+
files:
|
118
|
+
- ".gitignore"
|
119
|
+
- ".rspec"
|
120
|
+
- ".ruby-version"
|
121
|
+
- ".travis.yml"
|
122
|
+
- CODE_OF_CONDUCT.md
|
123
|
+
- Gemfile
|
124
|
+
- LICENSE
|
125
|
+
- README-ruRU.md
|
126
|
+
- README.md
|
127
|
+
- Rakefile
|
128
|
+
- activestorage_webdav.gemspec
|
129
|
+
- bin/console
|
130
|
+
- bin/setup
|
131
|
+
- lib/active_storage/service/web_dav_service.rb
|
132
|
+
- lib/activestorage_webdav.rb
|
133
|
+
- lib/activestorage_webdav/version.rb
|
134
|
+
homepage: https://github.com/hyrintalion/activestorage-webdav
|
135
|
+
licenses:
|
136
|
+
- MIT
|
137
|
+
metadata: {}
|
138
|
+
post_install_message:
|
139
|
+
rdoc_options: []
|
140
|
+
require_paths:
|
141
|
+
- lib
|
142
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
143
|
+
requirements:
|
144
|
+
- - ">="
|
145
|
+
- !ruby/object:Gem::Version
|
146
|
+
version: '0'
|
147
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
148
|
+
requirements:
|
149
|
+
- - ">="
|
150
|
+
- !ruby/object:Gem::Version
|
151
|
+
version: '0'
|
152
|
+
requirements: []
|
153
|
+
rubyforge_project:
|
154
|
+
rubygems_version: 2.7.6
|
155
|
+
signing_key:
|
156
|
+
specification_version: 4
|
157
|
+
summary: ActiveStorage adapter for WebDAV.
|
158
|
+
test_files: []
|