forked from guard/guard-test
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathguard-test.gemspec
More file actions
25 lines (20 loc) · 880 Bytes
/
guard-test.gemspec
File metadata and controls
25 lines (20 loc) · 880 Bytes
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
# encoding: utf-8
Kernel.load File.expand_path('../lib/guard/test/version.rb', __FILE__)
Gem::Specification.new do |s|
s.name = 'guard-test'
s.version = Guard::TestVersion::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ['Rémy Coutable']
s.email = ['remy@rymai.me']
s.homepage = 'https://github.com/guard/guard-test'
s.summary = 'Guard gem for test-unit 2'
s.description = 'Guard::Test automatically run your tests on file modification.'
s.required_rubygems_version = '>= 1.3.6'
s.rubyforge_project = 'guard-test'
s.add_dependency 'guard', '>= 1.1.0'
s.add_dependency 'test-unit', '~> 2.2'
s.add_development_dependency 'bundler', '~> 1.1'
s.add_development_dependency 'rspec', '~> 2.10'
s.files = Dir.glob('{lib}/**/*') + %w[CHANGELOG.md LICENSE README.md]
s.require_path = 'lib'
end