cucumber-blendle-steps 0.8.7 → 0.8.8
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +9 -0
- data/lib/cucumber/blendle/steps/model_steps.rb +1 -1
- data/lib/cucumber/blendle/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 07086baeca5e80c227695eddb44f4c39f271d136
|
4
|
+
data.tar.gz: 25a69eb34f299bfcf0a89fb8b27fe161d2db4ab1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a2727ea895aba990a55e0a00c70fdbd1ecd456c986c43ead8f9ee52b01111cb30d6681c4855c0871b8fdb0038870692d6b3cde56cc114eb067f5e5a1cbb09871
|
7
|
+
data.tar.gz: e9e5e3ed4f41ff46c144b2da48ec9fa680bdacbdd853eb8c5213d2c4919cdb991ca0ad6dea1a1ec20cbd490aeac73c2d9a838dccb830e670c0ec46bfc6161fd4
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# CHANGELOG
|
2
2
|
|
3
|
+
## [v0.8.7](https://github.com/blendle/cucumber-blendle-steps/tree/v0.8.7) (2016-06-02)
|
4
|
+
[Full Changelog](https://github.com/blendle/cucumber-blendle-steps/compare/v0.8.6...v0.8.7)
|
5
|
+
|
6
|
+
## [v0.8.6](https://github.com/blendle/cucumber-blendle-steps/tree/v0.8.6) (2016-05-21)
|
7
|
+
[Full Changelog](https://github.com/blendle/cucumber-blendle-steps/compare/v0.8.5...v0.8.6)
|
8
|
+
|
9
|
+
## [v0.8.5](https://github.com/blendle/cucumber-blendle-steps/tree/v0.8.5) (2016-05-13)
|
10
|
+
[Full Changelog](https://github.com/blendle/cucumber-blendle-steps/compare/v0.8.4...v0.8.5)
|
11
|
+
|
3
12
|
## [v0.8.4](https://github.com/blendle/cucumber-blendle-steps/tree/v0.8.4) (2016-05-05)
|
4
13
|
[Full Changelog](https://github.com/blendle/cucumber-blendle-steps/compare/v0.8.3...v0.8.4)
|
5
14
|
|
@@ -136,7 +136,7 @@ end
|
|
136
136
|
def row_finder(klass, hash)
|
137
137
|
ext = 'where'
|
138
138
|
query = hash.each_with_object({}) do |(key, value), q|
|
139
|
-
if defined?(Sequel::Postgres) && value.is_a?(Sequel::Postgres::JSONBHash)
|
139
|
+
if defined?(Sequel::Postgres::JSONBHash) && value.is_a?(Sequel::Postgres::JSONBHash)
|
140
140
|
ext = "where { Sequel.pg_jsonb(:#{key}).contains(#{value}) }"
|
141
141
|
else
|
142
142
|
q[key] = value
|