-
Notifications
You must be signed in to change notification settings - Fork 55
Expand file tree
/
Copy pathguard-cucumber.gemspec
More file actions
25 lines (20 loc) · 870 Bytes
/
guard-cucumber.gemspec
File metadata and controls
25 lines (20 loc) · 870 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 -*-
$:.push File.expand_path('../lib', __FILE__)
require 'guard/cucumber/version'
Gem::Specification.new do |s|
s.name = 'guard-cucumber'
s.version = Guard::CucumberVersion::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ['Michael Kessler']
s.email = ['michi@flinkfinger.com']
s.homepage = 'http://github.com/netzpirat/guard-cucumber'
s.summary = 'Guard plugin for Cucumber'
s.description = 'Guard::Cucumber automatically run your features (much like autotest)'
s.required_rubygems_version = '>= 1.3.6'
s.rubyforge_project = 'guard-cucumber'
s.add_dependency 'guard', '>= 1.1.0'
s.add_dependency 'cucumber', '>= 1.2.0'
s.add_development_dependency 'bundler', '~> 1.1'
s.files = Dir.glob('{lib}/**/*') + %w[LICENSE README.md]
s.require_path = 'lib'
end