-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathrailsdav.gemspec
13 lines (13 loc) · 943 Bytes
/
railsdav.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
Gem::Specification.new do |s|
s.name = 'railsdav'
s.version = '0.1.5'
s.date = Time.now
s.authors = ['Willem van Kerkhof']
s.licenses = ['MIT']
s.summary = %q{Make your Rails 3/4/5 resources accessible via WebDAV}
s.homepage = %q{http://github.com/wvk/railsdav}
s.description = %q{Provides basic Rails 3/4/5 extensions for making your business resources accessible via WebDAV. This gem does by no means by no means implement the full WebDAV semantics, but it suffices to access your app with client(-libs) such as Konqueror, cadaver, davfs2 or NetDrive}
s.files = %w(README.md init.rb lib/railsdav.rb lib/railsdav/routing_extensions.rb lib/railsdav/request_extensions.rb lib/railsdav/renderer/response_collector.rb lib/railsdav/renderer/response_type_selector.rb lib/railsdav/controller_extensions.rb lib/railsdav/renderer.rb lib/railsdav/renderer/resource_descriptor.rb
)
end