forked from Shopify/erb_lint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
erb_lint.gemspec
37 lines (29 loc) · 1 KB
/
erb_lint.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
# frozen_string_literal: true
$LOAD_PATH.push(File.expand_path("../lib", __FILE__))
require "erb_lint/version"
Gem::Specification.new do |s|
s.name = "erb_lint"
s.version = ERBLint::VERSION
s.authors = ["Justin Chan", "Shopify Developers"]
s.email = ["[email protected]"]
s.summary = "ERB lint tool"
s.description = "ERB Linter tool."
s.homepage = "https://github.com/Shopify/erb-lint"
s.license = "MIT"
s.files = Dir["lib/**/*.rb", "exe/*"]
s.bindir = "exe"
s.executables = s.files.grep(%r{^exe/}) { |f| File.basename(f) }
s.required_ruby_version = ">= 2.7.0"
s.metadata = {
"allowed_push_host" => "https://rubygems.org",
}
s.add_dependency("activesupport")
s.add_dependency("better_html", ">= 2.0.1")
s.add_dependency("parser", ">= 2.7.1.4")
s.add_dependency("rainbow")
s.add_dependency("rubocop")
s.add_dependency("smart_properties")
s.add_development_dependency("rspec")
s.add_development_dependency("rubocop")
s.add_development_dependency("rubocop-shopify")
end