# coding: utf-8 # Libs # APP_ROOT = File.expand_path(File.dirname(__FILE__) + '/../') APP_LIBS = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(APP_LIBS) unless $LOAD_PATH.include?(APP_LIBS) require 'rest-ftp-daemon/config' Gem::Specification.new do |spec| spec.name = Settings[:app_name] spec.date = Time.now.strftime("%Y-%m-%d") spec.authors = ["Bruno MEDICI"] spec.email = "rest-ftp-daemon@bmconseil.com" spec.description = "This is a pretty simple FTP client daemon, controlled through a RESTfull 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.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } spec.require_paths = ["lib"] spec.version = Settings[:app_ver] spec.required_ruby_version = '>= 1.9.3' spec.add_development_dependency "bundler", "~> 1.6" spec.add_development_dependency "rake" spec.add_runtime_dependency "thin", "~> 1.6" spec.add_runtime_dependency "grape" spec.add_runtime_dependency "settingslogic" spec.add_runtime_dependency "haml" spec.add_runtime_dependency "json" spec.add_runtime_dependency "double-bag-ftps" spec.add_runtime_dependency "facter" spec.add_runtime_dependency "sys-cpu" end