-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathyardcheck.gemspec
More file actions
25 lines (20 loc) · 856 Bytes
/
yardcheck.gemspec
File metadata and controls
25 lines (20 loc) · 856 Bytes
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
# frozen_string_literal: true
require File.expand_path('../lib/yardcheck/version', __FILE__)
Gem::Specification.new do |spec|
spec.name = 'yardcheck'
spec.version = Yardcheck::VERSION
spec.authors = %w[John Backus]
spec.email = %w[johncbackus@gmail.com]
spec.summary = 'Validate YARD docs by running specs'
spec.description = 'Verify that your YARD @param and @return types are correct'
spec.homepage = 'https://github.com/backus/yardcheck'
spec.files = `git ls-files`.split("\n")
spec.require_paths = %w[lib]
spec.executables = %w[yardcheck]
spec.add_dependency 'yard', '~> 0.9'
spec.add_dependency 'concord', '~> 0.1'
spec.add_dependency 'anima', '~> 0.3'
spec.add_dependency 'rspec', '~> 3.4'
spec.add_dependency 'coderay', '~> 1.1'
spec.add_dependency 'parser'
end