-
Notifications
You must be signed in to change notification settings - Fork 22
/
yardstick.gemspec
28 lines (23 loc) · 1.1 KB
/
yardstick.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
# encoding: utf-8
require File.expand_path('../lib/yardstick/version', __FILE__)
Gem::Specification.new do |gem|
gem.name = 'yardstick'
gem.version = Yardstick::VERSION.dup
gem.authors = ['Dan Kubb']
gem.email = %w[[email protected]]
gem.description = 'Measure YARD documentation coverage'
gem.summary = 'A tool for verifying YARD documentation coverage'
gem.homepage = 'https://github.com/dkubb/yardstick'
gem.licenses = 'MIT'
gem.require_paths = %w[lib]
gem.files = `git ls-files`.split("\n")
gem.test_files = `git ls-files -- spec/{unit,integration}`.split("\n")
gem.extra_rdoc_files = %w[LICENSE README.md CONTRIBUTING.md TODO]
gem.executables = %w[yardstick]
gem.add_runtime_dependency('yard', '~> 0.8', '>= 0.8.7.2')
gem.add_runtime_dependency('concord', '~> 0.1.x')
gem.add_runtime_dependency('ice_nine', '~> 0.11')
gem.add_runtime_dependency('adamantium', '~> 0.2.x')
gem.add_runtime_dependency('abstract_type', '~> 0.0.x')
gem.add_development_dependency('bundler', '~> 1.6', '>= 1.6.1')
end