-
Notifications
You must be signed in to change notification settings - Fork 17
/
bind_log_analyzer.gemspec
29 lines (25 loc) · 1.17 KB
/
bind_log_analyzer.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "bind_log_analyzer/version"
Gem::Specification.new do |s|
s.name = "bind_log_analyzer"
s.version = BindLogAnalyzer::VERSION
s.authors = ["Tommaso Visconti"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/tommyblue/Bind-Log-Analyzer"
s.summary = %q{Log analysis and SQL storage for Bind DNS server}
s.description = %q{BindLogAnalyzer analyzes a Bind query log file and stores its data into a SQL database using ActiveRecord. It provides a fancy web interface to show some query stats and graphs.}
s.rubyforge_project = "bind_log_analyzer"
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"]
s.add_dependency "activerecord"
s.add_dependency "json"
s.add_dependency "sinatra"
s.add_dependency "haml"
s.add_development_dependency "rake"
s.add_development_dependency "rspec"
s.add_development_dependency "simplecov"
s.add_development_dependency "pry"
end