forked from kerrizor/latent_object_detector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlatent_object_detector.gemspec
30 lines (27 loc) · 1.42 KB
/
latent_object_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
27
28
29
30
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'latent_object_detector'
require 'latent_object_detector/version'
Gem::Specification.new do |spec|
spec.name = "latent_object_detector"
spec.version = LatentObjectDetector::VERSION
spec.authors = ["Corey Ehmke", "Kerri Miller"]
spec.email = ["corey@idolhands.com", "kerrizor@kerrizor.com"]
spec.description = %q{Flags frequently used words in method names as
possible latent concepts.}
spec.summary = %q{Based on an original idea from Corey, this gem looks
at the methods defined on an object and looks for
repeated words contained in the method names, as
this can sometimes illuminate latent objects,
concepts, or relationships that don't currently
exist in the code (but should.)}
spec.homepage = "https://github.com/kerrizor/latent_object_detector"
spec.license = "MIT"
spec.files = `git ls-files`.split($/)
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.3"
spec.add_development_dependency "rake"
end