rafini 3.1.221212 → 3.2.221213
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 +9 -2
- data/lib/rafini/requires.rb +3 -0
- data/lib/rafini.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: bdc3386e65af02b3a86031e7123e10391dc321de2b7559fb83e0639520db56a9
|
|
4
|
+
data.tar.gz: 440f1bd45fee01d4ed81bbb536672367419e5cef35dc973277d3f12a950124d4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 29397cbfc1807873786d8770fd0b2fe5d2a1712492e1079cb568d6f39e8147abca80240cdd7f7885b16d2c90e4e453b7026cfcdc296ec921ee8bf17a9cd2b411
|
|
7
|
+
data.tar.gz: ece7843e819e9c4745286f2f77052b9fbdd1a521d3f174fd8d652dd5d7d63650185a09410d457150fca8458f273965c9af6252f5883d56e3e33dcafc9fa8008b
|
data/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Rafini
|
|
2
2
|
|
|
3
|
-
* [VERSION 3.
|
|
3
|
+
* [VERSION 3.2.221213](https://github.com/carlosjhr64/rafini/releases)
|
|
4
4
|
* [github](https://github.com/carlosjhr64/rafini)
|
|
5
5
|
* [rubygems](https://rubygems.org/gems/rafini)
|
|
6
6
|
|
|
@@ -13,6 +13,8 @@ Just a collection of useful refinements.
|
|
|
13
13
|
$ gem install rafini
|
|
14
14
|
```
|
|
15
15
|
## SYNOPSIS:
|
|
16
|
+
|
|
17
|
+
Note that `Rafini` auto-loads assets as requested.
|
|
16
18
|
```ruby
|
|
17
19
|
require 'rafini'
|
|
18
20
|
```
|
|
@@ -126,8 +128,13 @@ using Rafini::Requires
|
|
|
126
128
|
|
|
127
129
|
requires'
|
|
128
130
|
ruby ~>3.0
|
|
129
|
-
rafini ~>3.
|
|
131
|
+
rafini ~>3.2
|
|
130
132
|
json ~>2.0' #=> ["json"]
|
|
133
|
+
## You can also say:
|
|
134
|
+
# require 'rafini/requires'
|
|
135
|
+
# Rafini.requires...
|
|
136
|
+
## But you wont be able to test for Rafini's VERSION
|
|
137
|
+
## unless you've also required 'rafini'.
|
|
131
138
|
```
|
|
132
139
|
## LICENSE:
|
|
133
140
|
|
data/lib/rafini/requires.rb
CHANGED
data/lib/rafini.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rafini
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.
|
|
4
|
+
version: 3.2.221213
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- CarlosJHR64
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2022-12-
|
|
11
|
+
date: 2022-12-13 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: 'Just a collection of useful refinements.
|
|
14
14
|
|