forked from splitwise/erb-lint
-
Notifications
You must be signed in to change notification settings - Fork 4
/
erb_lint.gemspec
38 lines (30 loc) · 1.02 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
38
# 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']
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.5.0'
s.metadata = {
"allowed_push_host" => "https://rubygems.org",
}
s.add_dependency('better_html', '~> 1.0.7')
s.add_dependency('html_tokenizer')
s.add_dependency('rubocop')
s.add_dependency('parser', '>= 2.7.1.4')
s.add_dependency('activesupport')
s.add_dependency('smart_properties')
s.add_dependency('rainbow')
s.add_development_dependency('rspec')
s.add_development_dependency('rubocop')
s.add_development_dependency('rubocop-shopify')
end