forked from forkbreak/fork_break
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfork_break.gemspec
24 lines (22 loc) · 1.2 KB
/
fork_break.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
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'fork_break/version'
Gem::Specification.new do |gem|
gem.authors = ['Petter Remen', 'Pedro Carriço']
gem.summary =
'Testing multiprocess behaviour is difficult and requires a way to synchronize processes at specific execution ' \
'points. This gem allows the parent process to control the behaviour of child processes using breakpoints. It was' \
'originally built for testing the behaviour of database transactions and locking mechanisms.'
gem.description = 'Fork with breakpoints for syncing child process execution'
gem.homepage = 'http://github.com/forkbreak/fork_break'
gem.licenses = ['MIT']
gem.files = `git ls-files`.split($OUTPUT_RECORD_SEPARATOR)
gem.executables = gem.files.grep(%r{^bin/}).map { |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = 'fork_break'
gem.require_paths = ['lib']
gem.version = ForkBreak::VERSION
gem.add_dependency 'fork', '= 1.0.1'
gem.add_development_dependency 'rspec', '~> 3.1', '>= 3.1.0'
gem.add_development_dependency 'rubocop', '~> 0.49.0'
end