forked from keegnotrub/dav4rack
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdav4rack.gemspec
More file actions
25 lines (21 loc) · 831 Bytes
/
dav4rack.gemspec
File metadata and controls
25 lines (21 loc) · 831 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
$LOAD_PATH << File.expand_path("lib", __dir__)
require 'dav4rack/version'
Gem::Specification.new do |s|
s.name = 'dav4rack'
s.version = DAV4Rack::VERSION
s.summary = 'WebDAV handler for Rack'
s.author = 'Chris Roberts'
s.email = 'chrisroberts.code@gmail.com'
s.homepage = 'http://github.com/chrisroberts/dav4rack'
s.description = 'WebDAV handler for Rack'
s.license = "MIT"
s.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
s.files = `git ls-files -- lib/*`.split("\n")
s.require_paths = ["lib"]
s.add_runtime_dependency 'nokogiri', '>= 1.4.2'
s.add_runtime_dependency 'uuidtools', '~> 2.1.1'
s.add_runtime_dependency 'rack', '~> 3.0'
s.add_runtime_dependency 'webrick'
s.add_development_dependency("rspec", "~> 3.0")
s.add_development_dependency("debug")
end