exercism-config 0.65.0 → 0.66.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 +4 -4
- data/lib/exercism/tooling_job.rb +4 -4
- data/lib/exercism_config/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ef54401db2ec45fcd48ae7bd12a88537d46df71d371739588c7d7cc7e34f3109
|
4
|
+
data.tar.gz: f4729fc4ea1efb5a51d1e6ad1f47ddd75d312807a277ec6ad84ce10591ce39bc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d970f9ebeea112c6d548ffbd47c46e99c98a3bad9a7aa71a7d7eac48f59a790f8707455ff182e5cce70842f784c5665992079e4994ab3a874234c83a1ec42976
|
7
|
+
data.tar.gz: c92ec0a05dfa0105f31a40dc1cb3df7c09cced6cc29937e33031d98d484f55df52025d2ce9c13ccdf879369b23717dfd37f2ce548acb097b704ba3463fc0b6f6
|
data/lib/exercism/tooling_job.rb
CHANGED
@@ -44,21 +44,21 @@ module Exercism
|
|
44
44
|
|
45
45
|
def initialize(id, data)
|
46
46
|
@id = id
|
47
|
-
@data = data.freeze
|
47
|
+
@data = data.transform_keys(&:to_sym).freeze
|
48
48
|
end
|
49
49
|
|
50
50
|
def to_h
|
51
51
|
data.to_h
|
52
52
|
end
|
53
53
|
|
54
|
-
def respond_to_missing?(meth)
|
55
|
-
data.key?(meth
|
54
|
+
def respond_to_missing?(meth, include_all = true)
|
55
|
+
data.key?(meth) || super
|
56
56
|
end
|
57
57
|
|
58
58
|
def method_missing(meth)
|
59
59
|
super unless respond_to_missing?(meth)
|
60
60
|
|
61
|
-
data[meth
|
61
|
+
data[meth]
|
62
62
|
end
|
63
63
|
|
64
64
|
def locked!
|