rest-ftp-daemon.gemspec in rest-ftp-daemon-0.222.0 vs rest-ftp-daemon.gemspec in rest-ftp-daemon-0.230.0

- old
+ new

@@ -14,11 +14,13 @@ spec.description = "This is a pretty simple FTP client daemon, controlled through a RESTful API" spec.summary = "RESTful FTP client daemon" spec.homepage = "http://github.com/bmedici/rest-ftp-daemon" spec.licenses = ["MIT"] - spec.files = `git ls-files -z`.split("\x0") + spec.files = `git ls-files -z`.split("\x0").reject do |f| + f == 'dashboard.png' + end spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } spec.require_paths = ["lib"] spec.version = APP_VER #spec.required_ruby_version = '>= 1.9.3' @@ -26,16 +28,19 @@ spec.add_development_dependency "bundler", "~> 1.6" spec.add_development_dependency "rake" spec.add_development_dependency "rspec", "~> 3.1" spec.add_development_dependency "http", "~> 0.8" + spec.add_development_dependency "rubocop", "~> 0.32.0" + spec.add_development_dependency "pry" spec.add_runtime_dependency "thin", "~> 1.6" spec.add_runtime_dependency "grape" spec.add_runtime_dependency "grape-entity" spec.add_runtime_dependency "settingslogic" spec.add_runtime_dependency "haml" spec.add_runtime_dependency "json" + spec.add_runtime_dependency "net-sftp" spec.add_runtime_dependency "double-bag-ftps" spec.add_runtime_dependency "facter" spec.add_runtime_dependency "sys-cpu" spec.add_runtime_dependency "timeout" spec.add_runtime_dependency "get_process_mem"