rubocop-github/rubocop-github.gemspec

24 строки
698 B
Ruby
Исходник Обычный вид История

2018-09-13 16:58:59 +03:00
# frozen_string_literal: true
2016-12-10 09:41:28 +03:00
Gem::Specification.new do |s|
s.name = "rubocop-github"
2018-03-08 16:31:06 +03:00
s.version = "0.10.0"
2016-12-10 09:41:28 +03:00
s.summary = "RuboCop GitHub"
s.description = "Code style checking for GitHub Ruby repositories "
s.homepage = "https://github.com/github/rubocop-github"
s.license = "MIT"
2017-03-30 08:47:39 +03:00
s.files = Dir["README.md", "STYLEGUIDE.md", "LICENSE", "config/*.yml", "lib/**/*.rb", "guides/*.md"]
2016-12-10 09:41:28 +03:00
2017-11-22 20:13:32 +03:00
s.add_dependency "rubocop", "~> 0.51"
2016-12-10 09:41:28 +03:00
2017-03-23 01:43:33 +03:00
s.add_development_dependency "actionview", "~> 5.0"
2016-12-10 09:41:28 +03:00
s.add_development_dependency "minitest", "~> 5.10"
s.add_development_dependency "rake", "~> 12.0"
s.required_ruby_version = ">= 2.1.0"
2016-12-10 09:41:28 +03:00
s.email = "engineering@github.com"
s.authors = "GitHub"
end