forked from guard/guard-jasmine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
guard-jasmine.gemspec
29 lines (24 loc) · 1001 Bytes
/
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
# -*- encoding: utf-8 -*-
$:.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']
s.email = ['[email protected]']
s.homepage = 'https://github.com/netzpirat/guard-jasmine'
s.summary = 'Guard gem for headless testing with Jasmine'
s.description = 'Guard::Jasmine automatically tests your Jasmine specs on PhantomJS'
s.required_rubygems_version = '>= 1.3.6'
s.rubyforge_project = 'guard-jasmine'
s.add_dependency 'guard', '>= 1.1.0'
s.add_dependency 'multi_json'
s.add_dependency 'childprocess'
s.add_dependency 'thor'
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