rspeckled 0.0.36 → 0.0.37
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
- checksums.yaml.gz.sig +0 -0
- data/lib/rspeckled/helpers/patterns.rb +4 -0
- data/lib/rspeckled/plugins/foreign_keys.rb +1 -1
- data/lib/rspeckled/plugins/sidekiq.rb +1 -1
- data/lib/rspeckled/version.rb +1 -1
- data.tar.gz.sig +0 -0
- metadata +3 -4
- metadata.gz.sig +0 -0
- data/Rakefile +0 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: bc9b52e63e745a1c065a658bab950bf9243a3682
|
|
4
|
+
data.tar.gz: b78eef21efaeacd8ade719a902ff3fda2bde5671
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 53b9a7d34fd92acffbeda78e85aff367fe4b98d0d257e704d9bf15c4cb2a7a73685e265b220b234a49f9e004a1edab9e77c001798a2e525e793736153eb076ea
|
|
7
|
+
data.tar.gz: 65500aac8e95aab218287ff784b94038e2756fae3c8ff6f711959430bc6af9350bd0140045c64a1aa564f1de6e4a492066316d7d32f8f6b6d00cf832d7a2937f
|
checksums.yaml.gz.sig
CHANGED
|
Binary file
|
|
@@ -57,7 +57,7 @@ RSpec.configure do |config|
|
|
|
57
57
|
if foreign_keys_to_disable.blank?
|
|
58
58
|
puts 'You asked to disable foreign keys but there were no foreign keys found to disable'
|
|
59
59
|
else
|
|
60
|
-
ActiveRecord::Base.connection.execute('SET CONSTRAINTS
|
|
60
|
+
ActiveRecord::Base.connection.execute('SET CONSTRAINTS %<key_pattern>s DEFERRED' % { :key_pattern => foreign_keys_to_disable }) unless foreign_keys_to_disable.empty?
|
|
61
61
|
end
|
|
62
62
|
|
|
63
63
|
example.run
|
data/lib/rspeckled/version.rb
CHANGED
data.tar.gz.sig
CHANGED
|
Binary file
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rspeckled
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.37
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- thegranddesign
|
|
@@ -31,7 +31,7 @@ cert_chain:
|
|
|
31
31
|
Y2GAoHKstmfIVhc4XHOPpmTd2o/C29O9oaRgjrkfQEhF/KvJ/PhoV5hvokzsCyI5
|
|
32
32
|
iUeXPfvrGD/itYIBCgk+fnzyQQ4QtE5hTQaWQ3o2
|
|
33
33
|
-----END CERTIFICATE-----
|
|
34
|
-
date:
|
|
34
|
+
date: 2018-02-24 00:00:00.000000000 Z
|
|
35
35
|
dependencies:
|
|
36
36
|
- !ruby/object:Gem::Dependency
|
|
37
37
|
name: rspec
|
|
@@ -99,7 +99,6 @@ extra_rdoc_files: []
|
|
|
99
99
|
files:
|
|
100
100
|
- LICENSE.txt
|
|
101
101
|
- README.md
|
|
102
|
-
- Rakefile
|
|
103
102
|
- lib/rspeckled.rb
|
|
104
103
|
- lib/rspeckled/helpers.rb
|
|
105
104
|
- lib/rspeckled/helpers/factories.rb
|
|
@@ -174,7 +173,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
174
173
|
version: '0'
|
|
175
174
|
requirements: []
|
|
176
175
|
rubyforge_project:
|
|
177
|
-
rubygems_version: 2.6.
|
|
176
|
+
rubygems_version: 2.6.14
|
|
178
177
|
signing_key:
|
|
179
178
|
specification_version: 4
|
|
180
179
|
summary: Stop Copying and Pasting Your RSpec Configuration
|
metadata.gz.sig
CHANGED
|
Binary file
|
data/Rakefile
DELETED