forked from bka/snortor
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsnortor.gemspec
32 lines (26 loc) · 1021 Bytes
/
snortor.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "snortor/version"
Gem::Specification.new do |s|
s.name = "snortor"
s.version = Snortor::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Bernhard Katzmarski"]
s.email = ["[email protected]"]
s.homepage = "http://www.fidius.me"
s.summary = %q{Snortor provides an interface to configure snort rules. You can:
* import rules
* export rules
* find rules by message
* activate or deactivate single rules
* import/export possible via scp
}
s.description = %q{Descriptions are provided in doc and at fidius.me}
s.rubyforge_project = "snortor"
s.add_dependency "snort-rule", ">= 0.0.1"
s.add_dependency "net-scp", "~> 1.0.4"
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"]
end