cucumber-blendle-steps 0.6.0 → 0.6.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/CHANGELOG.md +3 -0
- data/lib/cucumber/blendle/steps/model_steps.rb +1 -0
- data/lib/cucumber/blendle/support/dump.rb +1 -1
- data/lib/cucumber/blendle/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 25d26ba860c0da9719eee16fa5eb3fc3641b548c
|
|
4
|
+
data.tar.gz: 02d274db34686c0fdc268b703ef9b9590204a0c3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4f282a1af2de84a312ab33344d9471c20b651403cf3f08204897bd0088515ff8a26dd8a4fd001f9441b97d74d71fb603fb8a3b3465f43a2d0c12edba94b592b4
|
|
7
|
+
data.tar.gz: 6f49f335cf4f12530d428fc2972dda432b01f9fe017e0e0d289099a75ee95c898a5e07ffc5e645255e3ad828128d0ac21ffde72f076d5dcf5ba8b528342a9933
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
# CHANGELOG
|
|
2
2
|
|
|
3
|
+
## [v0.6.0](https://github.com/blendle/cucumber-blendle-steps/tree/v0.6.0) (2016-03-16)
|
|
4
|
+
[Full Changelog](https://github.com/blendle/cucumber-blendle-steps/compare/v0.5.1...v0.6.0)
|
|
5
|
+
|
|
3
6
|
## [v0.5.1](https://github.com/blendle/cucumber-blendle-steps/tree/v0.5.1) (2016-03-12)
|
|
4
7
|
[Full Changelog](https://github.com/blendle/cucumber-blendle-steps/compare/v0.5.0...v0.5.1)
|
|
5
8
|
|
|
@@ -95,6 +95,7 @@ def parse_row(row, object_name)
|
|
|
95
95
|
hash = row.map do |attribute, value|
|
|
96
96
|
column = schema.reverse.find { |c| c.first.to_s == attribute.to_s } || []
|
|
97
97
|
|
|
98
|
+
next [attribute.to_sym, Sequel.pg_array(value)] if value.is_a?(Array)
|
|
98
99
|
next [attribute.to_sym, value] unless value.is_a?(String)
|
|
99
100
|
|
|
100
101
|
value = case column.last.to_h[:type]
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: cucumber-blendle-steps
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.6.
|
|
4
|
+
version: 0.6.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jean Mertz
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-03-
|
|
11
|
+
date: 2016-03-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activesupport
|
|
@@ -352,7 +352,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
352
352
|
version: '0'
|
|
353
353
|
requirements: []
|
|
354
354
|
rubyforge_project:
|
|
355
|
-
rubygems_version: 2.
|
|
355
|
+
rubygems_version: 2.5.1
|
|
356
356
|
signing_key:
|
|
357
357
|
specification_version: 4
|
|
358
358
|
summary: Cucumber steps used by all of Blendle Ruby projects
|