-
Notifications
You must be signed in to change notification settings - Fork 5
/
open-uri-and-write.gemspec
25 lines (22 loc) · 1.08 KB
/
open-uri-and-write.gemspec
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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "open-uri-and-write/version"
Gem::Specification.new do |s|
s.name = "open-uri-and-write"
s.version = OpenUriAndWrite::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Thomas Flemming"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/thomasfl/open-uri-and-write"
s.summary = %q{An easy to use wrapper for Net::Dav, for writing files to WebDAV enabled web servers.}
s.description = %q{Use normal file operations to write files to WebDAV enabled web servers.}
s.add_runtime_dependency "highline", "~>1.6.9"
s.add_runtime_dependency "net_dav", "~>0.5.0"
s.add_development_dependency "rspec", "~>2.5.0"
s.add_development_dependency "pry", "~>0.9.8.4"
s.add_development_dependency "dav4rack", "~>0.2.10"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
end