forked from Maher4Ever/guard-phpunit
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathguard-phpunit2.gemspec
32 lines (26 loc) · 1.18 KB
/
guard-phpunit2.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path('../lib', __FILE__)
require 'guard/phpunit2/version'
Gem::Specification.new do |s|
s.name = "guard-phpunit2"
s.version = Guard::PHPUnit2Version::VERSION
s.authors = ["Maher Sallam", "Ramon Soares", "Marek Kalnik"]
s.homepage = ""
s.summary = %q{Guard gem for PHPUnit}
s.description = %q{Guard::PHPUnit automatically run your unit-tests written with the PHPUnit testing framework.}
s.license = "MIT"
s.required_rubygems_version = '>= 1.3.6'
s.rubyforge_project = 'guard-phpunit2'
s.add_dependency('guard-compat', '~> 1.2')
s.add_runtime_dependency 'guard', ['~> 2.0', '< 3.0']
s.add_development_dependency 'bundler'
s.add_development_dependency 'rspec'
s.add_development_dependency 'guard-rspec'
s.add_development_dependency 'yard'
s.add_development_dependency 'redcarpet'
s.add_development_dependency 'pimpmychangelog'
s.files = `git ls-files -- lib/*`.split("\n") + %w[LICENSE README.md CHANGELOG.md]
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.require_paths = ["lib"]
end