-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathspecjour.gemspec
36 lines (27 loc) · 1.12 KB
/
specjour.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
lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)
require 'specjour'
Gem::Specification.new do |s|
s.required_rubygems_version = '>= 1.3.6'
s.version = Specjour::VERSION
s.name = 'specjour'
s.authors = ['Sandro Turriate']
s.email = '[email protected]'
s.homepage = 'https://github.com/sandro/specjour'
s.summary = 'Distribute your spec suite amongst your LAN via Bonjour.'
s.description = <<-EOD
Specjour splits your RSpec suite across multiple machines, and multiple
cores per machine, to run super-parallel-fast! Also works with Cucumber.
EOD
s.default_executable = 'specjour'
s.executables = ['specjour']
s.require_path = 'lib'
s.files = Dir.glob('lib/**/*') + %w(MIT_LICENSE README.markdown History.markdown Rakefile bin/specjour)
s.add_runtime_dependency('dnssd', ['= 2.0.0'])
s.add_runtime_dependency('thor', ['>= 0.14.0'])
s.add_development_dependency('rspec', ['>= 2.12'])
s.add_development_dependency('rr')
s.add_development_dependency('cucumber', ['>= 1.2.1'])
s.add_development_dependency('yard')
s.add_development_dependency('byebug')
end