forked from Maher4Ever/guard-phpunit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathguard-phpunit.gemspec
28 lines (23 loc) · 1.09 KB
/
guard-phpunit.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require 'guard/phpunit/version'
Gem::Specification.new do |s|
s.name = "guard-phpunit"
s.version = Guard::PHPUnitVersion::VERSION
s.authors = ["Maher Sallam"]
s.email = ["[email protected]"]
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.required_rubygems_version = '>= 1.3.6'
s.rubyforge_project = 'guard-phpunit'
s.add_runtime_dependency 'guard', '~> 0.10.0'
s.add_development_dependency 'bundler', '~> 1.0.21'
s.add_development_dependency 'rspec', '~> 2.7.0'
s.add_development_dependency 'guard-rspec', '~> 0.6.0'
s.add_development_dependency 'yard', '~> 0.7.4'
s.add_development_dependency 'redcarpet', '~> 2.0.0'
s.files = `git ls-files -- lib/*`.split("\n") + Dir.glob('{lib}/**/PHPUnit/**/*') + %w[LICENSE README.md]
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.require_paths = ["lib"]
end