salestation 1.0.1 → 1.0.2
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/salestation/web/extractors.rb +3 -1
- data/salestation.gemspec +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e2f1a0952d479679a0e165cab5e87f2d5a6d49b7
|
|
4
|
+
data.tar.gz: 2b4a7e851aad8310f98c001fb8a0452fe757a244
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f993f4a6ee270c184337a32098346693ccc2eaaa8a2dc7ccfa195a2a4350f958f3542986330db96e82cb069f872b764623f28d0a8d8c9536110ebdeed9e5b619
|
|
7
|
+
data.tar.gz: ec9f62fceec3395c27d0ed8fd719ae3b5454ca0dc5e22bd6703ebbc25c7118b1d9747ad3a95acca423973f0f33aefc9f8d8bdf764a92c005a642d0ca86d784a8
|
|
@@ -119,7 +119,9 @@ module Salestation
|
|
|
119
119
|
extracted_data[filter] = request_hash[stringified_key] if request_hash.key?(stringified_key)
|
|
120
120
|
when Hash
|
|
121
121
|
filter.each do |key, nested_filters|
|
|
122
|
-
|
|
122
|
+
if request_hash.key?(key.to_s)
|
|
123
|
+
extracted_data[key] = extract(nested_filters, request_hash.fetch(key.to_s))
|
|
124
|
+
end
|
|
123
125
|
end
|
|
124
126
|
end
|
|
125
127
|
end
|
data/salestation.gemspec
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: salestation
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- SaleMove TechMovers
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-09-
|
|
11
|
+
date: 2018-09-07 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|