forked from jeroenj/pronto-foodcritic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pronto-foodcritic.gemspec
40 lines (35 loc) · 1.1 KB
/
pronto-foodcritic.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 -*-
$LOAD_PATH.push File.expand_path('../lib', __FILE__)
require 'English'
require 'pronto/foodcritic/version'
Gem::Specification.new do |s|
s.name = 'pronto-foodcritic'
s.version = Pronto::FoodCriticVersion::VERSION
s.platform = Gem::Platform::RUBY
s.author = 'Mindaugas Mozūras'
s.email = '[email protected]'
s.homepage = 'http://github.com/mmozuras/pronto-foodcritic'
s.summary = 'Pronto runner for Food Critic, lint tool for chef'
s.licenses = ['MIT']
s.required_ruby_version = '>= 2.2.0'
s.rubygems_version = '1.8.23'
s.files = `git ls-files`.split($RS).reject do |file|
file =~ %r{^(?:
spec/.*
|Gemfile
|Rakefile
|\.rspec
|\.gitignore
|\.rubocop.yml
|\.travis.yml
)$}x
end
s.test_files = []
s.extra_rdoc_files = ['LICENSE', 'README.md']
s.require_paths = ['lib']
s.add_dependency('foodcritic', '~> 10', '>= 10.0.0')
s.add_dependency('pronto', '~> 0.9.0')
s.add_development_dependency('rake', '~> 12.0')
s.add_development_dependency('rspec', '~> 3.4')
s.add_development_dependency('rspec-its', '~> 1.2')
end