omg-attrs 0.1.2 → 0.1.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/ext/array.rb +3 -0
- data/lib/ext/hash.rb +3 -0
- data/lib/ext/object.rb +1 -1
- data/lib/{attrs.rb → omg-attrs.rb} +0 -2
- metadata +10 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8f5242d20de8f2253239d5f6ee6b119b5f4b6aafac735c25ae23d7356544837b
|
4
|
+
data.tar.gz: e874a1007387dc281f83606ef3258180ac6f9711549de94f4034cab321cb1ad8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b64c0922ed85ca40f71631a51515172f894565440f42a4a26a203a750601d790ba888fb6ed1bdf40fca37383ff15272c6338ebf4b7d1b7a5e990910a2767f0da
|
7
|
+
data.tar.gz: 483e9b78988c4ba7b3b527ed13f800401f1fb21207ec4b46b360bb16b2a2bae9485ec5a3fd2dd3236070c8acc0fe13257e6e4fac8011446864722ae7327f1f8d
|
data/lib/ext/array.rb
CHANGED
data/lib/ext/hash.rb
CHANGED
data/lib/ext/object.rb
CHANGED
metadata
CHANGED
@@ -1,26 +1,31 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: omg-attrs
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Matthew Greenfield
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-09-
|
11
|
+
date: 2024-09-05 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
|
-
description:
|
13
|
+
description: |
|
14
|
+
- Adds `Object#attrs` method for querying nested attributes
|
15
|
+
- Adds `Array#where` to return a subset of elements matching a condition
|
16
|
+
- Adds `Array#find_by` to return the first element matching a condition
|
17
|
+
- Adds `Object#match?` to check if an object matches a condition
|
18
|
+
- Adds `Hash#method_missing` to allow {a: 1}.a instead of {a: 1}[:a]
|
14
19
|
email:
|
15
20
|
- mattgreenfield1@gmail.com
|
16
21
|
executables: []
|
17
22
|
extensions: []
|
18
23
|
extra_rdoc_files: []
|
19
24
|
files:
|
20
|
-
- lib/attrs.rb
|
21
25
|
- lib/ext/array.rb
|
22
26
|
- lib/ext/hash.rb
|
23
27
|
- lib/ext/object.rb
|
28
|
+
- lib/omg-attrs.rb
|
24
29
|
homepage: https://github.com/omgreenfield/attrs
|
25
30
|
licenses:
|
26
31
|
- MIT
|
@@ -45,5 +50,5 @@ requirements: []
|
|
45
50
|
rubygems_version: 3.5.17
|
46
51
|
signing_key:
|
47
52
|
specification_version: 4
|
48
|
-
summary:
|
53
|
+
summary: Gives objects methods to query nested attributes
|
49
54
|
test_files: []
|