activeyaml 0.1.4 → 0.1.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2a0ae13d0234df31efaf43a77ce974bc1c51fc250a1172ec6b0e3d01ecbc63cb
4
- data.tar.gz: 941f51b22c2da9e192797caaf0c332979743f87ce640c1526a41bcec843f6bb9
3
+ metadata.gz: df6ab1743032b2da062676da7582cfdf5728d3cfdde22005f967daf48a4b2e68
4
+ data.tar.gz: dfae3e19537aaa71bb84ec9925a7b02eeff496c2d6a415198b9a26cfd16665c0
5
5
  SHA512:
6
- metadata.gz: 52542244c4b5b9524817c7ae501918a7c3c52c5ef44e2c1ae71e26b960f7418a1bd753af511a4f287a0ed4fe6eaddfdc27864c37b7fb09d9e42b7320759e3cb3
7
- data.tar.gz: 4fe3c6de770022c413026f56a53aec1f1b642384490c181654630b90f25c7375000ed0a5730c86e496a81eb90f9db718e3625e05320eae857ba0953a77bd8a92
6
+ metadata.gz: 397f642b36da76e16faa2d3d033ae20394da142aa30d664ced8f1af54c9a168f1df83e7969295b9ab812e971406969f077ccd263b9f910801587f260dc7b3562
7
+ data.tar.gz: 3baea001da73ce93fdc6c180d6a47e3ad3bf15357e2424a2503661548fd431960e692da2f21c8b31f0a979512fcf3c525432530c5caf5c114e931bd54890b418
@@ -0,0 +1,32 @@
1
+ # frozen_string_literal: true
2
+
3
+ module ActiveYaml
4
+ # base doc
5
+ class BaseObject
6
+ attr_reader :hash
7
+
8
+ def initialize(hash)
9
+ @hash = hash
10
+ end
11
+
12
+ def method_missing(method, *args, &block)
13
+ method_name = method.to_s
14
+ if hash.key?(method_name)
15
+ value = hash[method_name]
16
+ return BaseObject.new(value) if value.is_a?(Hash)
17
+
18
+ value
19
+ else
20
+ super
21
+ end
22
+ end
23
+
24
+ def respond_to_missing?(method, include_private = false)
25
+ @hash.key?(method.to_s) || super
26
+ end
27
+
28
+ def inspect
29
+ hash
30
+ end
31
+ end
32
+ end
@@ -1,8 +1,24 @@
1
1
  # frozen_string_literal: true
2
2
 
3
+ require_relative 'base_object'
4
+
3
5
  module ActiveYaml
4
6
  # base mapper
5
7
  class MethodMapper
6
- def initialize; end
8
+ def method_missing(method, *args, &block)
9
+ method_name = method.to_s
10
+ if yaml_data[method_name]
11
+ value = yaml_data[method_name]
12
+ return value unless value.is_a?(Hash)
13
+
14
+ BaseObject.new(value)
15
+ else
16
+ super
17
+ end
18
+ end
19
+
20
+ def respond_to_missing?(method, include_private = false)
21
+ yaml_data[method.to_s] || super
22
+ end
7
23
  end
8
24
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ActiveYaml
4
- VERSION = '0.1.4'
4
+ VERSION = '0.1.5'
5
5
  end
data/lib/active_yaml.rb CHANGED
@@ -7,10 +7,6 @@ module ActiveYaml
7
7
  # base
8
8
  class Base < MethodMapper
9
9
  def self.yaml(file_path)
10
- define_method(:yaml_file_path) do
11
- @yaml_file_path = yaml_file_path
12
- end
13
-
14
10
  define_method(:yaml_data) do
15
11
  @yaml_data = Parser.parse(file_path)
16
12
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: activeyaml
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4
4
+ version: 0.1.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kirill Leonov
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-11-30 00:00:00.000000000 Z
11
+ date: 2023-12-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: psych
@@ -31,6 +31,7 @@ extensions: []
31
31
  extra_rdoc_files: []
32
32
  files:
33
33
  - lib/active_yaml.rb
34
+ - lib/active_yaml/base_object.rb
34
35
  - lib/active_yaml/method_mapper.rb
35
36
  - lib/active_yaml/parser.rb
36
37
  - lib/active_yaml/version.rb