forked from AccessLint/accesslint.rb
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaccess_lint.gemspec
More file actions
28 lines (24 loc) · 1.05 KB
/
access_lint.gemspec
File metadata and controls
28 lines (24 loc) · 1.05 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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'access_lint/version'
Gem::Specification.new do |spec|
spec.name = "access_lint"
spec.version = AccessLint::VERSION
spec.authors = ["Cameron Cundiff"]
spec.email = ["ckundo@gmail.com"]
spec.description = %q{Run an accessibility audit on a file or URL from the command line.}
spec.summary = %q{AccessLint runs Google Accessibility Developer Tools assertions on a page via PhantomJS}
spec.homepage = "https://github.com/ckundo/access_lint"
spec.license = "MIT"
spec.files = `git ls-files`.split($/)
spec.test_files = spec.files.grep(%r{^spec/})
spec.require_paths = ["lib"]
spec.executables = ['access_lint']
spec.add_dependency "thor"
spec.add_dependency "awesome_print"
spec.add_dependency "command_line_reporter"
spec.add_development_dependency "bundler", "~> 1.3"
spec.add_development_dependency "rake"
spec.add_development_dependency "json"
end