forked from Maher4Ever/guard-phpunit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
guard-phpunit.gemspec
29 lines (24 loc) · 1.07 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
29
# -*- 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 = ["maher@sallam.me"]
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', '~> 1.1'
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") + Dir.glob('{lib}/**/PHPUnit/**/*') + %w[LICENSE README.md CHANGELOG.md]
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.require_paths = ["lib"]
end