fixed_width_columns 0.0.6 → 0.0.7
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 +5 -5
- data/lib/fixed_width_columns/library.rb +1 -1
- data/lib/fixed_width_columns/version.rb +1 -1
- metadata +3 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: e97c0f82dea52721c1c5a24912ab08a668df05a219fbe0880c029f512ae63078
|
4
|
+
data.tar.gz: d11c2994ce17acaacb4c35ca54a88df5fda4d6c857bbbe434a65ce4cf88b6444
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b21f31685f5791033be3b89d33c2b94f0a54f4ba28ecf583d80a34abedf233b668bbbe2e9a1caa56672b9f417e437cd3bf6ecc81d04de0e887d04c5d186b87d7
|
7
|
+
data.tar.gz: '08bf1dba401d0cd1bdf02b774f9ed9e0aac7adc513e3c8d13d81f2975ed88614e9a09b6ebd50d1a582be4cea0a7ba862f72b516272f37a0cdb700b97ccf571a1'
|
@@ -16,7 +16,7 @@ module FixedWidthColumns
|
|
16
16
|
|
17
17
|
def load_export_configs_for klass
|
18
18
|
path = File.join config_root, "#{klass}.yml"
|
19
|
-
return [] unless File.
|
19
|
+
return [] unless File.exist?(path)
|
20
20
|
cfgs = YAML::load File.read path
|
21
21
|
cfgs.map { |k,v| FixedWidthColumns::Config.new v.merge("target" => klass, "name" => k) }
|
22
22
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fixed_width_columns
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Conan Dalton
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2025-04-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aduki
|
@@ -123,8 +123,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
123
123
|
- !ruby/object:Gem::Version
|
124
124
|
version: '0'
|
125
125
|
requirements: []
|
126
|
-
|
127
|
-
rubygems_version: 2.2.2
|
126
|
+
rubygems_version: 3.0.3.1
|
128
127
|
signing_key:
|
129
128
|
specification_version: 4
|
130
129
|
summary: Generate fixed-width-column textfiles quickly and easily
|