-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrubocop-blueapron.gemspec
More file actions
37 lines (29 loc) · 1.3 KB
/
rubocop-blueapron.gemspec
File metadata and controls
37 lines (29 loc) · 1.3 KB
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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'rubocop/blueapron/version'
Gem::Specification.new do |spec|
spec.name = 'rubocop-blueapron'
spec.version = RuboCop::Blueapron::VERSION
spec.authors = ['Blue Apron Engineering']
spec.email = ['engineering@blueapron.com']
spec.license = 'MIT'
spec.summary = 'Blue Apron Style Guide RuboCop extension.'
spec.description = 'Blue Apron Style Guide RuboCop extension.'
spec.homepage = 'https://github.com/blueapron/rubocop-blueapron'
spec.metadata['allowed_push_host'] = 'https://rubygems.org'
spec.files = Dir['config/*.yml', 'lib/**/*.rb']
spec.test_files = Dir['spec/**/*.rb']
spec.extra_rdoc_files = ['LICENSE.txt', 'README.md']
spec.require_paths = ['lib']
spec.add_runtime_dependency 'rubocop', '~> 0.55'
spec.add_development_dependency 'bundler', '~> 1.9'
spec.add_development_dependency 'pry', '~> 0.10'
spec.add_development_dependency 'rake', '~> 12.0'
spec.add_development_dependency 'rspec', '~> 3.4'
spec.add_development_dependency 'simplecov', '~> 0.11'
if ENV['CIRCLECI']
spec.add_development_dependency 'codeclimate-test-reporter'
spec.add_development_dependency 'rspec_junit_formatter'
end
end