forked from guard/guard-minitest
-
Notifications
You must be signed in to change notification settings - Fork 1
/
guard-minitest.gemspec
29 lines (23 loc) · 1.08 KB
/
guard-minitest.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/minitest/version'
Gem::Specification.new do |s|
s.name = 'guard-minitest'
s.version = Guard::MinitestVersion::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ['Yann Lugrin']
s.email = ['[email protected]']
s.homepage = 'http://rubygems.org/gems/guard-minitest'
s.summary = 'Guard gem for MiniTest framework'
s.description = 'Guard::Minitest automatically run your tests with MiniTest framework (much like autotest)'
s.required_rubygems_version = '>= 1.3.6'
s.rubyforge_project = 'guard-minitest'
s.add_dependency 'guard', '~> 1.1'
s.add_development_dependency 'rake'
s.add_development_dependency 'minitest', '~> 2.1'
s.add_development_dependency 'bundler', '~> 1.0'
s.add_development_dependency 'mocha', '~> 0.10'
s.files = Dir.glob('{lib}/**/*') + %w[LICENSE README.md CHANGELOG.md]
s.require_path = 'lib'
s.rdoc_options = ["--charset=UTF-8", "--main=README.rdoc", "--exclude='(lib|test|spec)|(Gem|Guard|Rake)file'"]
end