flatware 2.0.0.rc3 → 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/lib/flatware/broadcaster.rb +3 -2
- data/lib/flatware/sink/client.rb +1 -1
- data/lib/flatware/version.rb +1 -1
- metadata +6 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5222385660f5b6600029905e67b2826d7c77c1618e97d9c431c8aaabe8b66f8e
|
|
4
|
+
data.tar.gz: 230f481ef3a14939a3a90122a6410b191b0e389da8fe7155f564ffe2e7c5fd0e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: dbaa1435a2ea802f4464e25032a12acbd87ef874af2aa9d9c1dbaac175674e2039d71e04e81cb39a4c66222b2150d3a9546d38787a3cc97eebb38b845359adca
|
|
7
|
+
data.tar.gz: '028b0922caf0ef307e517ea3d723efa7fd3be25d0309f4ab77da7c710c6e8775f4e11279ca661d80e2c1a4726901fd600138fab988b676e68202a92474172b56'
|
data/README.md
CHANGED
|
@@ -114,7 +114,7 @@ Flatware.configure do |conf|
|
|
|
114
114
|
end
|
|
115
115
|
|
|
116
116
|
conf.after_fork do |test_env_number|
|
|
117
|
-
config = ActiveRecord::Base.
|
|
117
|
+
config = ActiveRecord::Base.connection_db_config.configuration_hash
|
|
118
118
|
|
|
119
119
|
ActiveRecord::Base.establish_connection(
|
|
120
120
|
config.merge(
|
data/lib/flatware/broadcaster.rb
CHANGED
data/lib/flatware/sink/client.rb
CHANGED
|
@@ -11,7 +11,7 @@ module Flatware
|
|
|
11
11
|
@sink = DRbObject.new_with_uri sink_endpoint
|
|
12
12
|
end
|
|
13
13
|
|
|
14
|
-
%w[ready finished started progress checkpoint].each do |message|
|
|
14
|
+
%w[ready finished started progress message checkpoint].each do |message|
|
|
15
15
|
define_method message do |content|
|
|
16
16
|
push [message.to_sym, content]
|
|
17
17
|
end
|
data/lib/flatware/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: flatware
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.0.0
|
|
4
|
+
version: 2.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Brian Dunn
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2022-09-07 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: thor
|
|
@@ -62,14 +62,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
62
62
|
version: '2.6'
|
|
63
63
|
- - "<"
|
|
64
64
|
- !ruby/object:Gem::Version
|
|
65
|
-
version: '3.
|
|
65
|
+
version: '3.2'
|
|
66
66
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
67
67
|
requirements:
|
|
68
|
-
- - "
|
|
68
|
+
- - ">="
|
|
69
69
|
- !ruby/object:Gem::Version
|
|
70
|
-
version:
|
|
70
|
+
version: '0'
|
|
71
71
|
requirements: []
|
|
72
|
-
rubygems_version: 3.
|
|
72
|
+
rubygems_version: 3.3.7
|
|
73
73
|
signing_key:
|
|
74
74
|
specification_version: 4
|
|
75
75
|
summary: A distributed rspec and cucumber runner
|