rubocop-github/rubocop-github.gemspec

26 строки
764 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"
2024-01-03 22:31:35 +03:00
s.version = "0.21.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
s.add_dependency "rubocop", ">= 1.37"
s.add_dependency "rubocop-performance", ">= 1.15"
s.add_dependency "rubocop-rails", ">= 2.17"
2016-12-10 09:41:28 +03:00
s.add_development_dependency "actionview"
s.add_development_dependency "minitest"
s.add_development_dependency "rake"
2016-12-10 09:41:28 +03:00
2024-02-12 23:09:45 +03:00
s.required_ruby_version = ">= 3.0.0"
2016-12-10 09:41:28 +03:00
s.email = "engineering@github.com"
s.authors = "GitHub"
end