-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathnata2.gemspec
34 lines (31 loc) · 1.29 KB
/
nata2.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'nata2/version'
Gem::Specification.new do |spec|
spec.name = 'nata2'
spec.version = Nata2::VERSION
spec.authors = ['studio3104']
spec.email = ['[email protected]']
spec.summary = %q{Analyzer of MySQL slow query log}
spec.description = %q{Analyzer of MySQL slow query log}
spec.homepage = ''
spec.license = 'MIT'
spec.files = `git ls-files -z`.split("\x0")
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ['lib']
spec.add_development_dependency 'bundler', '~> 1.5'
spec.add_development_dependency 'rake'
spec.add_development_dependency 'rspec'
spec.add_development_dependency 'webmock'
spec.add_runtime_dependency 'sinatra'
spec.add_runtime_dependency 'sinatra-contrib'
spec.add_runtime_dependency 'slim', '= 2.0.2'
spec.add_runtime_dependency 'toml'
spec.add_runtime_dependency 'sequel'
spec.add_runtime_dependency 'sqlite3'
spec.add_runtime_dependency 'mysql2', '~> 0.3.20'
spec.add_runtime_dependency 'ridgepole'
spec.add_runtime_dependency 'focuslight-validator'
end