forked from turboladen/tailor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailor.gemspec
41 lines (34 loc) · 1.55 KB
/
tailor.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
35
36
37
38
39
40
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "tailor/version"
Gem::Specification.new do |s|
s.name = "tailor"
s.version = Tailor::VERSION
s.author = "Steve Loveless"
s.summary = "A Ruby style & complexity measurer"
s.description = <<-DESC
tailor parses Ruby files and measures them with some style and static analysis
"rulers". Default values for the Rulers are based on a number of style guides
in the Ruby community as well as what seems to be common. More on this here
http://wiki.github.com/turboladen/tailor.
tailor's goal is to help you be consistent with your code, throughout your
project, whatever style that may be.
DESC
s.email = "[email protected]"
s.homepage = "http://github.com/turboladen/tailor"
s.extra_rdoc_files = %w(History.rdoc README.rdoc)
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
s.add_runtime_dependency %q<log_switch>, ">= 0.3.0"
s.add_runtime_dependency %q<term-ansicolor>, ">= 1.0.5"
s.add_runtime_dependency %q<text-table>, ">= 1.2.2"
s.add_development_dependency %q<aruba>
s.add_development_dependency %q<bundler>
s.add_development_dependency %q<cucumber>, ">= 1.0.2"
s.add_development_dependency %q<fakefs>, ">= 0.4.2"
s.add_development_dependency %q<rake>
s.add_development_dependency %q<rspec>, ">= 2.5.0"
s.add_development_dependency %q<simplecov>, ">= 0.4.0"
s.add_development_dependency %q<yard>, ">= 0.7.0"
end