-
Notifications
You must be signed in to change notification settings - Fork 81
/
guard-jasmine.gemspec
34 lines (29 loc) · 1.29 KB
/
guard-jasmine.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
33
34
# -*- encoding: utf-8 -*-
$LOAD_PATH.push File.expand_path('../lib', __FILE__)
require 'guard/jasmine/version'
Gem::Specification.new do |s|
s.name = 'guard-jasmine'
s.version = Guard::JasmineVersion::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ['Michael Kessler', 'Nathan Stitt']
s.email = ['[email protected]', '[email protected]']
s.homepage = 'https://github.com/guard/guard-jasmine'
s.summary = 'Guard gem for headless testing with Jasmine'
s.description = 'Guard::Jasmine automatically tests your Jasmine specs on PhantomJS'
s.license = 'MIT'
s.required_rubygems_version = '>= 1.3.6'
s.rubyforge_project = 'guard-jasmine'
s.add_dependency 'guard', '~> 2.14'
s.add_dependency 'guard-compat', '~> 1.2'
s.add_dependency 'jasmine', '~> 3.1'
s.add_dependency 'multi_json', '~> 1.12'
s.add_dependency 'childprocess', '~> 1.0'
s.add_dependency 'thor', '~> 0.19'
# Coverage uses tilt for spec files. Works with Tilt both
# version 1 and 2, so we don't bother to lock the versions
s.add_dependency 'tilt'
s.add_development_dependency 'bundler'
s.files = Dir.glob('{bin,lib}/**/*') + %w(LICENSE README.md)
s.executables = ['guard-jasmine', 'guard-jasmine-debug']
s.require_path = 'lib'
end