-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathem-ftpd.gemspec
More file actions
20 lines (18 loc) · 836 Bytes
/
Copy pathem-ftpd.gemspec
File metadata and controls
20 lines (18 loc) · 836 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Gem::Specification.new do |spec|
spec.name = "em-ftpd"
spec.version = "0.0.1"
spec.summary = "An FTP server framework"
spec.description = "Build a custom FTP server backed by a datastore of your choice"
spec.files = Dir.glob("{bin,examples,lib}/**/**/*") + ["Gemfile", "README.markdown","MIT-LICENSE"]
spec.executables << "em-ftpd"
spec.extra_rdoc_files = %w{README.markdown MIT-LICENSE }
spec.rdoc_options << '--title' << 'EM::FTPd Documentation' <<
'--main' << 'README.markdown' << '-q'
spec.authors = ["James Healy"]
spec.email = ["jimmy@deefa.com"]
spec.homepage = "http://github.com/yob/em-ftpd"
spec.required_ruby_version = ">=2.2"
spec.add_development_dependency("rake", ">= 10")
spec.add_development_dependency("rspec", "~>3.0")
spec.add_dependency('eventmachine')
end