spout 0.10.0.beta2 → 0.10.0.beta3

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 576ed6dafb25a7cac3d41903b706e53369a21a16
4
- data.tar.gz: ea0b29fb9b520374ffcd6971da21a0cad5677751
3
+ metadata.gz: 68f5308e9b55f6c7a0dd6fd7184fa8643fa9ca1e
4
+ data.tar.gz: 6bb5a3e732fbfca9ea6a752b3e029b0d1581bace
5
5
  SHA512:
6
- metadata.gz: 1c04feea6e21057e705a05775cddee9067e101eb4ee2af73b52eb38ff0c405146e720121fa659b59f8adb0b037482d7112dc9098390600f9550a98cc1080ebf4
7
- data.tar.gz: 4f1894cc7e8115144a914c7c5cddff7d7c3a8ef50120362b1079b10ce565023cf8198b23a62e87c92f37267703ca0573de7e70547f8d2251994f59c01c8733ea
6
+ metadata.gz: 9a152beb8154388704a261e95ff945e7b2eb95a84d30020d1ab9bf769d7fbde89765bad647507d4bbed67d53cd12c7350b2021f459bf2252d9fa84b43f0eb19d
7
+ data.tar.gz: 0a023ee991019318d3879066b870b3a52072ec9ea702dc72826a78344bd45b3c0a40e9930899a20af73693d7d69a584d88c64b15df9400c8e52fb166aa6009f1
data/CHANGELOG.md CHANGED
@@ -4,6 +4,7 @@
4
4
  - **Import Command**
5
5
  - `spout import` now changes variables with all caps `display_name` to use title case instead
6
6
  - Display names that use mixed case are unaffected
7
+ - `spout import --domains` now marks options as `"missing": true` if the option value starts with a dot `.` or a dash `-`
7
8
  - **Testing Changes**
8
9
  - Tests now include checks to assure that variable display_name fields don't exceed 255 length requirement
9
10
  - `include Spout::Tests::VariableDisplayNameLength`
@@ -98,6 +98,7 @@ EOT
98
98
  hash['value'] = row.delete('value').to_s
99
99
  hash['display_name'] = row.delete('display_name').to_s
100
100
  hash['description'] = row.delete('description').to_s
101
+ hash['missing'] = true if hash['value'].match(/^[\.-]/)
101
102
 
102
103
  domains[domain_name]["options"] << hash
103
104
  end
data/lib/spout/version.rb CHANGED
@@ -3,7 +3,7 @@ module Spout
3
3
  MAJOR = 0
4
4
  MINOR = 10
5
5
  TINY = 0
6
- BUILD = "beta2" # nil, "pre", "rc", "rc2"
6
+ BUILD = "beta3" # nil, "pre", "rc", "rc2"
7
7
 
8
8
  STRING = [MAJOR, MINOR, TINY, BUILD].compact.join('.')
9
9
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: spout
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.10.0.beta2
4
+ version: 0.10.0.beta3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Remo Mueller