-
Notifications
You must be signed in to change notification settings - Fork 17
/
guard-konacha.gemspec
28 lines (23 loc) · 958 Bytes
/
guard-konacha.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/konacha/version'
Gem::Specification.new do |s|
s.name = 'guard-konacha'
s.version = Guard::KonachaVersion::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ['Alex Gibbons']
s.email = ['[email protected]']
s.homepage = 'https://github.com/alexgb/guard-konacha'
s.summary = 'Guard plugin for Konacha'
s.description = 'Automatically run konacha tests'
s.license = 'MIT'
s.add_dependency 'guard', '>= 1.1'
s.add_dependency 'konacha', '>= 3.0'
s.add_development_dependency 'rspec', '>= 2.13'
s.add_development_dependency 'timecop'
s.add_development_dependency 'simplecov'
s.add_development_dependency 'poltergeist'
s.files = Dir.glob('{lib}/**/*') + %w[LICENSE Readme.md]
s.require_path = 'lib'
s.rdoc_options = ["--charset=UTF-8", "--main=README.md", "--exclude='lib|Gemfile'"]
end