fork_break 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +0 -2
- data/fork_break.gemspec +3 -3
- metadata +6 -10
data/README.md
CHANGED
@@ -1,7 +1,5 @@
|
|
1
1
|
# ForkBreak
|
2
2
|
|
3
|
-
Fork with breakpoints, for testing multiprocess behaviour.
|
4
|
-
|
5
3
|
Testing multiprocess behaviour is difficult and requires a way to synchronize processes at
|
6
4
|
specific execution points. This gem allows the parent process to control the behaviour of child processes using
|
7
5
|
breakpoints. It was originally built for testing the behaviour of database transactions and locking mechanisms.
|
data/fork_break.gemspec
CHANGED
@@ -3,10 +3,10 @@
|
|
3
3
|
Gem::Specification.new do |gem|
|
4
4
|
gem.authors = ["Petter Remen"]
|
5
5
|
gem.email = ["petter.remen@gmail.com"]
|
6
|
-
gem.
|
6
|
+
gem.summary = %q{Testing multiprocess behaviour is difficult and requires a way to synchronize processes at
|
7
7
|
specific execution points. This gem allows the parent process to control the behaviour of child processes using
|
8
8
|
breakpoints. It was originally built for testing the behaviour of database transactions and locking mechanisms. }
|
9
|
-
gem.
|
9
|
+
gem.description = %q{Fork with breakpoints for syncing child process execution}
|
10
10
|
gem.homepage = "http://github.com/remen/fork_break"
|
11
11
|
|
12
12
|
gem.files = `git ls-files`.split($\)
|
@@ -14,7 +14,7 @@ breakpoints. It was originally built for testing the behaviour of database trans
|
|
14
14
|
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
15
15
|
gem.name = "fork_break"
|
16
16
|
gem.require_paths = ["lib"]
|
17
|
-
gem.version = "0.1.
|
17
|
+
gem.version = "0.1.1"
|
18
18
|
gem.add_dependency "fork"
|
19
19
|
gem.add_development_dependency "rspec"
|
20
20
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fork_break
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -43,14 +43,7 @@ dependencies:
|
|
43
43
|
- - ! '>='
|
44
44
|
- !ruby/object:Gem::Version
|
45
45
|
version: '0'
|
46
|
-
description:
|
47
|
-
synchronize processes at
|
48
|
-
|
49
|
-
specific execution points. This gem allows the parent process to control the behaviour
|
50
|
-
of child processes using
|
51
|
-
|
52
|
-
breakpoints. It was originally built for testing the behaviour of database transactions
|
53
|
-
and locking mechanisms. '
|
46
|
+
description: Fork with breakpoints for syncing child process execution
|
54
47
|
email:
|
55
48
|
- petter.remen@gmail.com
|
56
49
|
executables: []
|
@@ -90,7 +83,10 @@ rubyforge_project:
|
|
90
83
|
rubygems_version: 1.8.24
|
91
84
|
signing_key:
|
92
85
|
specification_version: 3
|
93
|
-
summary:
|
86
|
+
summary: Testing multiprocess behaviour is difficult and requires a way to synchronize
|
87
|
+
processes at specific execution points. This gem allows the parent process to control
|
88
|
+
the behaviour of child processes using breakpoints. It was originally built for
|
89
|
+
testing the behaviour of database transactions and locking mechanisms.
|
94
90
|
test_files:
|
95
91
|
- spec/fork_break_spec.rb
|
96
92
|
- spec/spec_helper.rb
|