eac_ruby_utils 0.35.0 → 0.36.0
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
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5ba02fdc9d6fb66a14fbaf450133ad2ff83c8e0950ffa48bd8a26dcd217162be
|
4
|
+
data.tar.gz: 8720f2d7da61a357a578c8005079739c127a3afb464e7a83b32516f2c81f34db
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6fa38e552ff8a9f8808614aa67e55eb5a50b837891f0bcd3d6e909bea3ba739307c661a7754f91b048bb600be23fa6ce049d487d6d098931073a54fb70128f00
|
7
|
+
data.tar.gz: 68156f1fc6a1bab01b5524d4568aed52e3361cb46d3306aec17f82da80400c8802b2f8e65f78252de5271160b4fcf5b1eb689d73d21e9f82b95bcdf93ac4b7a4
|
@@ -4,6 +4,7 @@ require 'active_support/hash_with_indifferent_access'
|
|
4
4
|
require 'active_support/core_ext/string/inflections'
|
5
5
|
require_relative 'integer_list'
|
6
6
|
require_relative 'string_list'
|
7
|
+
require_relative 'symbol_list'
|
7
8
|
|
8
9
|
module EacRubyUtils
|
9
10
|
module Listable
|
@@ -14,18 +15,10 @@ module EacRubyUtils
|
|
14
15
|
@source = source
|
15
16
|
end
|
16
17
|
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
)
|
22
|
-
end
|
23
|
-
|
24
|
-
def add_string(item, *labels)
|
25
|
-
check_acts_as_listable_new_item(item)
|
26
|
-
acts_as_listable_items[item] = ::EacRubyUtils::Listable::StringList.new(
|
27
|
-
self, item, labels
|
28
|
-
)
|
18
|
+
%w[integer string symbol].each do |list_type|
|
19
|
+
define_method "add_#{list_type}" do |item, *labels|
|
20
|
+
add(::EacRubyUtils::Listable.const_get("#{list_type}_list".camelize), item, labels)
|
21
|
+
end
|
29
22
|
end
|
30
23
|
|
31
24
|
def method_missing(name, *args, &block)
|
@@ -43,6 +36,11 @@ module EacRubyUtils
|
|
43
36
|
|
44
37
|
private
|
45
38
|
|
39
|
+
def add(list_class, item, labels)
|
40
|
+
check_acts_as_listable_new_item(item)
|
41
|
+
acts_as_listable_items[item] = list_class.new(self, item, labels)
|
42
|
+
end
|
43
|
+
|
46
44
|
def check_acts_as_listable_new_item(item)
|
47
45
|
return unless acts_as_listable_items.key?(item)
|
48
46
|
|
@@ -0,0 +1,19 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require_relative 'list'
|
4
|
+
|
5
|
+
module EacRubyUtils
|
6
|
+
module Listable
|
7
|
+
class SymbolList < ::EacRubyUtils::Listable::List
|
8
|
+
protected
|
9
|
+
|
10
|
+
def parse_labels(labels)
|
11
|
+
if labels.first.is_a?(Hash)
|
12
|
+
Hash[labels.first.map { |k, v| [k.to_sym, v.to_sym] }]
|
13
|
+
else
|
14
|
+
Hash[labels.map { |v| [v.to_sym, v.to_sym] }]
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: eac_ruby_utils
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.36.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Esquilo Azul Company
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-06-
|
11
|
+
date: 2020-06-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|
@@ -155,6 +155,7 @@ files:
|
|
155
155
|
- lib/eac_ruby_utils/listable/list.rb
|
156
156
|
- lib/eac_ruby_utils/listable/lists.rb
|
157
157
|
- lib/eac_ruby_utils/listable/string_list.rb
|
158
|
+
- lib/eac_ruby_utils/listable/symbol_list.rb
|
158
159
|
- lib/eac_ruby_utils/listable/value.rb
|
159
160
|
- lib/eac_ruby_utils/on_clean_ruby_environment.rb
|
160
161
|
- lib/eac_ruby_utils/options_consumer.rb
|