-
Notifications
You must be signed in to change notification settings - Fork 9
/
guard-rubycritic.gemspec
30 lines (26 loc) · 1.19 KB
/
guard-rubycritic.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 "guard/rubycritic/version"
Gem::Specification.new do |spec|
spec.name = "guard-rubycritic"
spec.version = Guard::RubyCriticVersion::VERSION
spec.authors = ["Guilherme Simoes"]
spec.email = ["[email protected]"]
spec.description = <<-EOF
Ruby Critic is a tool that listens to modifications in Ruby classes, modules and methods and
reports any new code smells it finds.
EOF
spec.summary = "Listens to modifications and detects smells in Ruby files"
spec.homepage = "https://github.com/whitesmith/guard-rubycritic"
spec.license = "MIT"
spec.files = Dir.glob("{lib}/**/*") + %w[LICENSE.txt README.md]
spec.test_files = `git ls-files -- test/*`.split("\n")
spec.require_path = "lib"
spec.add_runtime_dependency "guard", "~> 2.6"
spec.add_runtime_dependency "rubycritic", ">= 2.9.3"
spec.add_development_dependency "bundler", "~> 1.3"
spec.add_development_dependency "rake"
spec.add_development_dependency "minitest", "~> 5.3"
spec.add_development_dependency "mocha", "~> 1.0"
end