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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8daaac2f079c639abaa892b634f6400f1b0e75ffead282c4551dc8fb7fe45fda
4
- data.tar.gz: a383dca85331bc2cf43e443fc909a9612044ea2c0f73a33a7bc9c568f2db0370
3
+ metadata.gz: bdc3386e65af02b3a86031e7123e10391dc321de2b7559fb83e0639520db56a9
4
+ data.tar.gz: 440f1bd45fee01d4ed81bbb536672367419e5cef35dc973277d3f12a950124d4
5
5
  SHA512:
6
- metadata.gz: b169dce8d8edd85971c8e62c433b3485a863fa8327e84430e253d660dbc0ca5a89c0106830ecedbfdb52103fd12bfb0193b07504dbc50b2812ced3a12096595c
7
- data.tar.gz: c62702b40d3f826f4a63828e3122dada54376c8cd23f358b17a1c6650e6fc79bec2914f706c55d61c2ba0a087e88c2a848cdaec7410bda5b238d44b33f6b4f9d
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.1.221212](https://github.com/carlosjhr64/rafini/releases)
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.1
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
 
@@ -39,4 +39,7 @@ module Rafini
39
39
  end
40
40
  end
41
41
  end
42
+
43
+ using Requires
44
+ def Rafini.requires(*list) = Kernel.requires(*list)
42
45
  end
data/lib/rafini.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  module Rafini
2
- VERSION = '3.1.221212'
2
+ VERSION = '3.2.221213'
3
3
  # Constants
4
4
  autoload :Empty, 'rafini/empty'
5
5
  # Pure
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.1.221212
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-12 00:00:00.000000000 Z
11
+ date: 2022-12-13 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: 'Just a collection of useful refinements.
14
14