forked from cucumber/aruba
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharuba.gemspec
38 lines (32 loc) · 1.47 KB
/
aruba.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
30
31
32
33
34
35
36
37
38
# -*- encoding: utf-8 -*-
lib = ::File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'aruba/version'
Gem::Specification.new do |spec|
spec.name = 'aruba'
spec.version = Aruba::VERSION
spec.author = "Aslak Hellesøy, Matt Wynne and other Aruba Contributors"
spec.description = 'Extension for popular TDD and BDD frameworks like "Cucumber", "RSpec" and "Minitest" to make testing commandline applications meaningful, easy and fun.'
spec.summary = "aruba-#{spec.version}"
spec.license = 'MIT'
spec.email = '[email protected]'
spec.homepage = 'http://github.com/cucumber/aruba'
spec.add_runtime_dependency 'cucumber', '~> 2.4', '>= 2.4.0'
spec.add_runtime_dependency 'childprocess', '~> 0.7.1'
spec.add_runtime_dependency 'ffi', '~> 1.9', '>= 1.9.10'
spec.add_runtime_dependency 'rspec-expectations', '~> 3.4', '>= 3.4.0'
spec.add_runtime_dependency 'contracts', '~> 0.14'
spec.add_runtime_dependency 'thor', '~> 0.19'
spec.add_development_dependency 'bundler', '~> 1.11'
spec.rubygems_version = ">= 1.6.1"
spec.required_ruby_version = '>= 1.9.3'
# spec.post_install_message = <<-EOS
# EOS
spec.files = `git ls-files -z`.split("\x0").reject do |f|
f.match(%r{^(test|spec|features)/})
end
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.rdoc_options = ["--charset=UTF-8"]
spec.bindir = "exe"
spec.require_paths = ["lib"]
end