forked from sds/haml-lint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
haml_lint.gemspec
32 lines (25 loc) · 1.02 KB
/
haml_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
$LOAD_PATH << File.expand_path('../lib', __FILE__)
require 'haml_lint/constants'
require 'haml_lint/version'
Gem::Specification.new do |s|
s.name = 'haml_lint'
s.version = HamlLint::VERSION
s.license = 'MIT'
s.summary = 'HAML lint tool'
s.description = 'Configurable tool for writing clean and consistent HAML'
s.authors = ['Brigade Engineering', 'Shane da Silva']
s.email = ['[email protected]', '[email protected]']
s.homepage = HamlLint::REPO_URL
s.require_paths = ['lib']
s.executables = ['haml-lint']
s.files = Dir['config/**.yml'] +
Dir['lib/**/*.rb']
s.required_ruby_version = '>= 1.9.3'
s.add_dependency 'haml', '~> 4.0'
s.add_dependency 'rake', '~> 10.0'
s.add_dependency 'rubocop', '>= 0.36.0'
s.add_dependency 'sysexits', '~> 1.1'
s.add_dependency 'parser', '>= 2.0.0'
s.add_development_dependency 'rspec', '~> 3.0'
s.add_development_dependency 'rspec-its', '~> 1.0'
end