postspec 0.2.0 → 0.2.1
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/lib/postspec/frame.rb +2 -2
- data/lib/postspec/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b88f22ce1cf917e68dd66cc1e084e8e7b17ebcce32013ec55c630257449fb340
|
|
4
|
+
data.tar.gz: 40eb91843fbcadb5cf9c09422df74b407589f92b63b1b68111538bad28e36f6e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2f3ecf2cac38acf9d958e9b2adf114a8ba8b31b8ad4779a6cc423403ad19cf50672ac9e1dffd2efeabb931a8f0599884c5233ce28c406095bcd25ae271d48908
|
|
7
|
+
data.tar.gz: fb22f7b632084732c5cfbfd3522da455fecf07da27536611cf09a4a8e773b04979fdfa418167f4904b142eb7ea179adc87a1ffa62bc3477cf327edac7226ae80
|
data/lib/postspec/frame.rb
CHANGED
|
@@ -42,7 +42,7 @@ module Postspec
|
|
|
42
42
|
constrain search_path, [String], NilClass
|
|
43
43
|
constrain push_sql, String, [String], NilClass
|
|
44
44
|
constrain pop_sql, String, [String], NilClass
|
|
45
|
-
constrain ids, String => Integer
|
|
45
|
+
constrain ids, { String => Integer }
|
|
46
46
|
constrain fox_anchors, FixtureFox::Anchors, NilClass
|
|
47
47
|
@postspec = postspec
|
|
48
48
|
@parent = parent
|
|
@@ -129,7 +129,7 @@ module Postspec
|
|
|
129
129
|
def transaction?() false end
|
|
130
130
|
|
|
131
131
|
def initialize(postspec, ids, anchors = nil)
|
|
132
|
-
constrain ids, String => Integer
|
|
132
|
+
constrain ids, { String => Integer }
|
|
133
133
|
constrain anchors, FixtureFox::Anchors, NilClass
|
|
134
134
|
super(postspec, nil, nil, [], [], ids, anchors)
|
|
135
135
|
end
|
data/lib/postspec/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: postspec
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Claus Rasmussen
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2023-06-29 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: dry-inflector
|