-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathflaw_detector.gemspec
26 lines (22 loc) · 1.03 KB
/
flaw_detector.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "flaw_detector/version"
Gem::Specification.new do |s|
s.name = "flaw_detector"
s.version = FlawDetector::VERSION
s.authors = ["Rikiya Ayukawa"]
s.email = ["dbc.ginriki@gmail.com"]
s.homepage = ""
s.summary = %q{The tool to detect code's flaw with static analysis}
s.description = %q{The tool detects code's flaw, which should be fixed, with static analysis of RubyVM bytecode. Therefore, it works for only ruby 1.9.x or 2.0.x .}
s.rubyforge_project = "flaw detector"
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.extensions = ["ext/insns_ext/extconf.rb"]
s.required_ruby_version = "> 1.9.0"
# specify any dependencies here; for example:
s.add_development_dependency "rspec"
# s.add_runtime_dependency "rest-client"
end