-
Notifications
You must be signed in to change notification settings - Fork 5
/
arachni-rpc-em.gemspec
39 lines (30 loc) · 1.61 KB
/
arachni-rpc-em.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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
=begin
This file is part of the Arachni-RPC EM project and may be subject to
redistribution and commercial restrictions. Please see the Arachni-RPC EM
web site for more information on licensing and terms of use.
=end
Gem::Specification.new do |s|
require File.expand_path( File.dirname( __FILE__ ) ) + '/lib/arachni/rpc/em/version'
s.name = 'arachni-rpc-em'
s.version = Arachni::RPC::EM::VERSION
s.date = Time.now.strftime('%Y-%m-%d')
s.summary = 'The RPC client/server implementation of the Arachni web application security scanner framework.'
s.homepage = 'https://github.com/Arachni/arachni-rpc-em'
s.email = '[email protected]'
s.authors = [ 'Tasos Laskos' ]
s.files = %w( README.md Rakefile LICENSE.md CHANGELOG.md )
s.files += Dir.glob('{lib,examples}/**/**')
s.test_files = Dir.glob('spec/**/**')
s.extra_rdoc_files = %w( README.md LICENSE.md CHANGELOG.md )
s.rdoc_options = ['--charset=UTF-8']
s.add_dependency 'eventmachine', '~> 1.0.0'
s.add_dependency 'em-synchrony', '>= 1.0.0'
s.add_dependency 'arachni-rpc', '0.1.3'
s.add_development_dependency 'rake'
s.add_development_dependency 'rspec'
s.description = <<description
EventMachine-based client and server implementation of Arachni-RPC supporting
TLS encryption, asynchronous and synchronous requests and
capable of handling remote asynchronous calls that require a block.
description
end