-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathevasion-db.gemspec
42 lines (35 loc) · 1.77 KB
/
evasion-db.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
40
41
42
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "evasion-db/version"
Gem::Specification.new do |s|
s.name = "fidius-evasiondb"
s.version = FIDIUS::EvasionDB::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Jens Färber", "Bernhard Katzmarski"]
s.email = ["jfaerber+evasiondb@tzi.de", "bkatzm+evasiondb@tzi.de"]
s.homepage = "http://fidius.me"
s.add_dependency('fidius-common')
s.add_dependency('activerecord')
s.summary = "The FIDIUS EvasionDB Gem provides a database which contains knowledge about "+
"metasploit exploits and their corresponding alerts/events produced by intrusion "+
"detection systems (IDS)."
s.description = s.summary + "\n\nIt includes a Metasploit plugin which supports the recording of "+
"thrown alerts during the execution of an exploit."
s.rubyforge_project = ""
s.add_dependency "activerecord" #, ">= 3.0.0"
s.add_dependency "activesupport" #, ">= 3.0.0"
s.add_dependency "fidius-common", "~> 0.0.4"
s.add_dependency "snortor", "~> 0.0.1"
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"]
# TODO: this raises error ERROR: While executing gem ... (Gem::InvalidSpecificationException)
# rdoc_options must be an Array of String
# with bundler 1.0.14
# ##################################################
#s.rdoc_options = '--title' << s.name <<
# '--main' << 'README.md' << '--show-hash' <<
# `git ls-files -- lib/*`.split("\n") <<
# 'README.md' << 'LICENSE' << 'CREDITS.md'
end