11# frozen_string_literal: true
22
33Gem ::Specification . new do |s |
4- s . name = "erblint-github"
5- s . version = "0.0.1"
6- s . summary = "erblint GitHub"
7- s . description = "Code style checking for GitHub Ruby repositories"
8- s . homepage = "https://github.com/github/erblint-github"
9- s . license = "MIT"
10-
11- s . files = Dir [ "README.md" , "LICENSE" ]
12-
13- s . required_ruby_version = ">= 2.5.0"
14-
15- s . email = [ "opensource+erblint-github@github.com" ]
16- s . authors = [ "GitHub Open Source" ]
17- end
4+ s . name = "erblint-github"
5+ s . version = "0.0.1"
6+ s . summary = "erblint GitHub"
7+ s . description = "Code style checking for GitHub Ruby repositories"
8+ s . homepage = "https://github.com/github/erblint-github"
9+ s . license = "MIT"
10+
11+ s . files = Dir [ "README.md" , "LICENSE" , "lib/**/*" ]
12+ s . require_paths = [ "lib" ]
13+
14+ s . required_ruby_version = ">= 2.5.0"
15+
16+ s . email = [ "opensource+erblint-github@github.com" ]
17+ s . authors = [ "GitHub Open Source" ]
18+
19+ s . add_runtime_dependency "actionview" , ">= 5.0.0"
20+ s . add_runtime_dependency "activesupport" , ">= 5.0.0"
21+
22+ s . add_development_dependency "erb_lint"
23+ s . add_development_dependency "minitest" , "~> 5.14"
24+ s . add_development_dependency "mocha"
25+ s . add_development_dependency "rake" , "~> 12.0"
26+
27+ s . add_development_dependency "rubocop" , "= 1.13.0"
28+ s . add_development_dependency "rubocop-github" , "~> 0.16.0"
29+ end
0 commit comments