lab42_data_class 0.1.0 → 0.1.1
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/README.md +19 -0
- data/lib/lab42/data_class/proxy.rb +1 -0
- data/lib/lab42/data_class/version.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c4e2d75e76874aa4cce514081f4be6cd1ab19d827b8e8bb60645f4036a202402
|
4
|
+
data.tar.gz: 4f2dd94d174acd1ea78b70b5063709566ba16b323d8d549221fdecaf10d184d3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: da62522c51b10954ca4dd86e4b2edcf31a13497a1ec65d169a6944d95c0c7aa6b53d8fb3d7f025ea369420ee8676a312db16c7120677f22753b61996a745bfee
|
7
|
+
data.tar.gz: fc638df334bfb4ad58934d2e9736aad751465cb078a106f47758edbd7265bb9f49a48ef1d0af3d5626b14d7376c20e8be3880fdd53c17e9e26beeeb6e3bf02db
|
data/README.md
CHANGED
@@ -8,6 +8,25 @@
|
|
8
8
|
|
9
9
|
A dataclass with an immutable API (you can still change the state of the object with metaprogramming and `lab42_immutable` is not ready yet!)
|
10
10
|
|
11
|
+
## Usage
|
12
|
+
|
13
|
+
```sh
|
14
|
+
gem install lab42_data_class
|
15
|
+
```
|
16
|
+
|
17
|
+
With bundler
|
18
|
+
|
19
|
+
```ruby
|
20
|
+
gem 'lab42_data_class'
|
21
|
+
```
|
22
|
+
|
23
|
+
In your code
|
24
|
+
|
25
|
+
```ruby
|
26
|
+
require 'lab42/data_class'
|
27
|
+
```
|
28
|
+
|
29
|
+
|
11
30
|
## So what does it do?
|
12
31
|
|
13
32
|
Well let us [speculate about](https://github.com/RobertDober/speculate_about) it to find out:
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: lab42_data_class
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Robert Dober
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-01-
|
11
|
+
date: 2022-01-21 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: introduces a new Kernel function DataClass
|
14
14
|
email: robert.dober@gmail.com
|
@@ -26,7 +26,7 @@ homepage: https://github.com/robertdober/lab42_data_class
|
|
26
26
|
licenses:
|
27
27
|
- Apache-2.0
|
28
28
|
metadata: {}
|
29
|
-
post_install_message:
|
29
|
+
post_install_message:
|
30
30
|
rdoc_options: []
|
31
31
|
require_paths:
|
32
32
|
- lib
|
@@ -42,7 +42,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
42
42
|
version: '0'
|
43
43
|
requirements: []
|
44
44
|
rubygems_version: 3.3.3
|
45
|
-
signing_key:
|
45
|
+
signing_key:
|
46
46
|
specification_version: 4
|
47
47
|
summary: Finally a dataclass in ruby
|
48
48
|
test_files: []
|