-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathjslint-v8.gemspec
30 lines (21 loc) · 1.02 KB
/
jslint-v8.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
# -*- encoding: utf-8 -*-
require File.expand_path("lib/jslint-v8/version", File.dirname(__FILE__))
Gem::Specification.new do |s|
s.name = %q{jslint-v8}
s.version = JSLintV8::Version::STRING
s.platform = Gem::Platform::RUBY
s.authors = ["William Howard"]
s.email = %q{whoward.tke@gmail.com}
s.homepage = %q{http://github.com/whoward/jslint-v8}
s.default_executable = %q{jslint-v8}
s.executables = ["jslint-v8"]
s.extra_rdoc_files = ["README.markdown"]
s.require_paths = ["lib"]
s.summary = %q{JSLint CLI and rake tasks via therubyracer (JavaScript V8 gem)}
s.description = "Ruby gem wrapper for a jslint cli. Uses the The Ruby Racer library for performance reasons targeted for usage in CI environments and backed up with a full test suite."
s.files = Dir.glob("lib/**/*.rb") + Dir.glob("lib/**/*.js") + %w(Gemfile bin/jslint-v8)
s.test_files = Dir.glob("test/**/*.rb")
s.add_dependency "therubyracer", "~> 0.12.0"
s.add_development_dependency "rake"
s.add_development_dependency "test-unit"
end