-
Notifications
You must be signed in to change notification settings - Fork 3
/
zombie_scout.gemspec
32 lines (27 loc) · 1.04 KB
/
zombie_scout.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
# coding: utf-8
require 'date'
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'zombie_scout/version'
Gem::Specification.new do |s|
s.name = 'zombie_scout'
s.version = ZombieScout::VERSION
s.date = Date.today.to_s
s.summary = "Find dead methods in your Ruby app"
s.description = "
zombie_scout finds methods in classes in your ruby project,
and then searches for calls to them, and tells you which ones
are never called.".strip.gsub(/^\s*/, '')
s.homepage = 'https://github.com/danbernier/zombie_scout'
s.license = 'ASL2'
s.authors = ["Dan Bernier"]
s.email = ['[email protected]']
s.files = `git ls-files -z`.split("\x0")
s.executables = s.files.grep(%r{^bin/}) { |f| File.basename(f) }
s.test_files = s.files.grep(%r{^(test|spec|features)/})
s.require_paths = ["lib"]
s.add_dependency('parser')
s.add_dependency('thor')
s.add_dependency('flog')
s.add_development_dependency "bundler"
end