forked from rubocop/rubocop-rspec
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrubocop-rspec.gemspec
47 lines (41 loc) · 1.43 KB
/
rubocop-rspec.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
41
42
43
44
45
46
47
$LOAD_PATH.unshift File.expand_path('lib', __dir__)
require 'rubocop/rspec/version'
Gem::Specification.new do |spec|
spec.name = 'rubocop-rspec'
spec.summary = 'Code style checking for RSpec files'
spec.description = <<-DESCRIPTION
Code style checking for RSpec files.
A plugin for the RuboCop code style enforcing & linting tool.
DESCRIPTION
spec.homepage = 'https://github.com/rubocop-hq/rubocop-rspec'
spec.authors = ['John Backus', 'Ian MacLeod', 'Nils Gemeinhardt']
spec.email = [
'johncbackus@gmail.com',
'ian@nevir.net',
'git@nilsgemeinhardt.de'
]
spec.licenses = ['MIT']
spec.version = RuboCop::RSpec::Version::STRING
spec.platform = Gem::Platform::RUBY
spec.required_ruby_version = '>= 2.2.0'
spec.require_paths = ['lib']
spec.files = Dir[
'{config,lib,spec}/**/*',
'*.md',
'*.gemspec',
'Gemfile',
'Rakefile'
]
spec.test_files = spec.files.grep(%r{^spec/})
spec.extra_rdoc_files = ['MIT-LICENSE.md', 'README.md']
spec.metadata = {
'changelog_uri' => 'https://github.com/rubocop-hq/rubocop-rspec/blob/master/CHANGELOG.md',
'documentation_uri' => 'https://rubocop-rspec.readthedocs.io/'
}
spec.add_runtime_dependency 'rubocop', '>= 0.60.0'
spec.add_development_dependency 'rack'
spec.add_development_dependency 'rake'
spec.add_development_dependency 'rspec', '>= 3.4'
spec.add_development_dependency 'simplecov'
spec.add_development_dependency 'yard'
end