-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathguard-slim_lint.gemspec
More file actions
35 lines (28 loc) · 1.24 KB
/
Copy pathguard-slim_lint.gemspec
File metadata and controls
35 lines (28 loc) · 1.24 KB
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
# frozen_string_literal: true
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'guard/slimlint/version'
Gem::Specification.new do |spec|
spec.name = 'guard-slim_lint'
spec.version = Guard::SlimLintVersion::VERSION
spec.authors = ['Yasuhiko Katoh']
spec.email = ['toyasyu@gmail.com']
spec.summary = 'Guard plugin for Slim-Lint'
spec.description = 'Guard::SlimLint automatically runs Slim Lint tools.'
spec.homepage = 'https://github.com/yatmsu/guard-slim-lint'
spec.license = 'MIT'
spec.files = `git ls-files -z`.split("\x0").reject do |f|
f.match(%r{^(test|spec|features)/})
end
spec.bindir = 'exe'
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ['lib']
spec.required_ruby_version = '>= 2.5.9'
spec.add_dependency 'guard', '~> 2.2'
spec.add_dependency 'guard-compat', '~> 1.2'
spec.add_runtime_dependency 'slim_lint', '~> 0.17'
spec.add_development_dependency 'guard-rspec', '~> 4.7.3'
spec.add_development_dependency 'guard-rubocop', '~> 1.5.0'
spec.add_development_dependency 'rake', '~> 12.3'
spec.add_development_dependency 'rspec', '~> 3.7.0'
end