-
Notifications
You must be signed in to change notification settings - Fork 23
/
coffeelint.gemspec
27 lines (23 loc) · 1.06 KB
/
coffeelint.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
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'coffeelint/version'
Gem::Specification.new do |gem|
gem.name = "coffeelint"
gem.version = Coffeelint::VERSION
gem.authors = ["Zachary Bush"]
gem.email = ["zach@zmbush.com"]
gem.description = %q{Ruby bindings for coffeelint}
gem.summary = %q{Ruby bindings for coffeelint along with railtie to add rake task to rails}
gem.homepage = "https://github.com/zipcodeman/coffeelint-ruby"
gem.licenses = ["MIT"]
gem.files = `git ls-files`.split($/) + %w(coffeelint/lib/coffeelint.js) - %w(bin/coffeelint)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ["lib"]
gem.add_dependency "coffee-script"
gem.add_dependency "json"
gem.add_dependency "execjs"
gem.add_development_dependency 'rspec', '~> 3.4.0'
gem.add_development_dependency 'rake', '~>11.3.0'
end