activeyaml 1.2.2 → 1.2.3

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: 9c066487217e81c6a2c31748288416cb7119548bb6c309ace6447f178b6b4fcf
4
- data.tar.gz: a539f959b3b447b962971a6906b252113753ff31b29cb8800bb7b49fc00642bc
3
+ metadata.gz: 34a8210111d3936d5b8cb7920578910bdcd291d36dab58522daa9224246c3322
4
+ data.tar.gz: cbbc821bc9bfc5665136bf06c3f1875c84eac68787fba94b974ae7a39702d231
5
5
  SHA512:
6
- metadata.gz: 58e3b1a95340185344f5d9b4525417356c15811804a0ac81158fbb14907729f38bf8af7dccf3e2fd9f63edffe005a4484d8bfabf7eea0d3fb25cc6e4ff06338e
7
- data.tar.gz: 34fd61b532cb72001b64a2e4c464262733b022c8adb743aa3dbb3a57e9adcbfc0c0d81d7b9d7f8e2d3dcc762e17e59275b4c16d5cfb1c5dd2e97e2c4505b10d7
6
+ metadata.gz: a062cbe0579482d39ed5cf78f8fd0691287a7c3edb9183d3930ae6b30c042a8b0e20dc46a183687caca4038d3788ea7b65d4371bc31d16c4f3fb4c827ca01f66
7
+ data.tar.gz: 1fe2e0ad2aeea0218f44ee97f574cd88a4d2d951e3559da6fccb98178db98deca0ad222c416825e7326e37a9d5aac9845d45884131b23d95809ca777bee1bba6
@@ -6,7 +6,7 @@ module ActiveYaml
6
6
  # A module containing methods that allow you to track method calls,
7
7
  # and compare them with data from the YML file
8
8
  module MethodMapping
9
- def method_missing(method, *args, &)
9
+ def method_missing(method, *args, &block)
10
10
  value = yaml_data[method.to_s]
11
11
 
12
12
  if value
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ActiveYaml
4
- VERSION = '1.2.2'
4
+ VERSION = '1.2.3'
5
5
  end
@@ -16,7 +16,7 @@ module ActiveYaml
16
16
 
17
17
  # The main logic of this class is implemented in this method.
18
18
  # Allows you to filter method calls and redirect them to a hash by key
19
- def method_missing(method, *args, &)
19
+ def method_missing(method, *args, &block)
20
20
  value = @hash[method.to_s]
21
21
 
22
22
  if value
data/lib/activeyaml.rb ADDED
@@ -0,0 +1,3 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative 'active_yaml'
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: 1.2.2
4
+ version: 1.2.3
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-12-27 00:00:00.000000000 Z
11
+ date: 2024-02-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: psych
@@ -37,6 +37,7 @@ files:
37
37
  - lib/active_yaml/parser.rb
38
38
  - lib/active_yaml/version.rb
39
39
  - lib/active_yaml/yaml_hash.rb
40
+ - lib/activeyaml.rb
40
41
  homepage: https://github.com/leonovk/activeyaml
41
42
  licenses:
42
43
  - MIT
@@ -52,14 +53,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
52
53
  requirements:
53
54
  - - ">="
54
55
  - !ruby/object:Gem::Version
55
- version: 3.1.0
56
+ version: '2.4'
56
57
  required_rubygems_version: !ruby/object:Gem::Requirement
57
58
  requirements:
58
59
  - - ">="
59
60
  - !ruby/object:Gem::Version
60
61
  version: '0'
61
62
  requirements: []
62
- rubygems_version: 3.4.10
63
+ rubygems_version: 3.1.6
63
64
  signing_key:
64
65
  specification_version: 4
65
66
  summary: yaml object-relational mapping