gazer 0.2.10 → 0.2.11
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/Gemfile.lock +1 -1
- data/lib/gzr/commands/dashboard/import.rb +1 -1
- data/lib/gzr/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: 06f601cf31c565c5acb866715043daa466342a06
|
4
|
+
data.tar.gz: b8097b7d6e0d3b396c90d9acb020c8aae79428d5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3833dee0739467059dd54d3e6d406ee44988ac6d664f14a788565f1b6c44a5c805504b3dbc61fceec10c7c1bc2559cf59606f09176ecadeff3a9766a28093074
|
7
|
+
data.tar.gz: 9150f64b991be3c7ad9edd6d4c731368a8626f72e8b6a80969ecd9e84586947735361ab95f3cdcd942032db191a64b93bd5eedc8d133426932283924ab4de9ff
|
data/Gemfile.lock
CHANGED
@@ -94,7 +94,7 @@ module Gzr
|
|
94
94
|
title_used = search_dashboards_by_title(source[:title], target_space_id).fetch(0,nil)
|
95
95
|
existing_dashboard = search_dashboards_by_slug(source[:slug], target_space_id).fetch(0,nil) if source[:slug]
|
96
96
|
if existing_dashboard then
|
97
|
-
title_used = false if title_used.id == existing_dashboard.id
|
97
|
+
title_used = false if title_used && title_used.id == existing_dashboard.id
|
98
98
|
else
|
99
99
|
existing_dashboard = title_used
|
100
100
|
title_used = false
|
data/lib/gzr/version.rb
CHANGED