ru.Bee 2.4.0 → 2.4.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 066655ef03cfa0f000d95d634a06a9f1d40259ec45ea21d86e0ee85f74bf17ed
4
- data.tar.gz: 45d04a51041408d8bdd2e690618e92f288e73fda5cb4447515319cc6f498918b
3
+ metadata.gz: c4204ab4a146dba0a5c2be32845880e17d576b12d807f58de9024e8f31db8268
4
+ data.tar.gz: e5afe1588d9597034a3931a86631d1cc6f35cb63c4d03fa45a64bef30494c127
5
5
  SHA512:
6
- metadata.gz: 468195453447949e93d0ea7b18e5fea7384bbf80ecc07447df37b70731f698113a8e27d8015afcef1366cb6a463860ea67c4006519bc4315f5a0e72a73bbfc48
7
- data.tar.gz: 33e8dac0437cec2fd495d5fe17af96daf786696a3061a392fff6b31e352bea3025f29c8a8e2db131a2c6e781727648403e998cec24a327a0b41b76c208108ded
6
+ metadata.gz: 814450e1ae8f4fd6e206aa7fcfc0b021901bd00a4c7e8831ff94df5cae97d4c019981b4870310048977a5ff4f5cc6160d876bd91fc035fdb236988759d550c1a
7
+ data.tar.gz: 389a39ca1bd6f3853a53aa918c4e658de405bf035b53b98f14aa9e428b9bf27b1fd0cb8ba8b62190f446d0e932b11d743d194b265c401bba37866df98280dbb1
data/lib/db/test.db CHANGED
Binary file
@@ -7,7 +7,7 @@ module Rubee
7
7
  # autoload all rbs
8
8
  root_directory = File.join(Rubee::ROOT_PATH, '/lib')
9
9
  priority_order_require(root_directory, black_list)
10
- load_support(root_directory, black_list)
10
+
11
11
  load_inits(root_directory, black_list)
12
12
  # ensure sequel object is connected
13
13
  Rubee::SequelObject.reconnect!
@@ -58,6 +58,7 @@ module Rubee
58
58
  Dir[File.join(root_directory, 'rubee/async/**', '*.rb')].each do |file|
59
59
  require_relative file unless black_list.include?("#{file}.rb")
60
60
  end
61
+ load_support(root_directory, black_list)
61
62
  # app config and routes
62
63
  unless black_list.include?('base_configuration.rb')
63
64
  require_relative File.join(Rubee::APP_ROOT, Rubee::LIB,
data/lib/rubee.rb CHANGED
@@ -20,7 +20,7 @@ module Rubee
20
20
  RUBEE_SUPPORT = { "Rubee::Support::Hash" => Hash, "Rubee::Support::String" => String }
21
21
  end
22
22
 
23
- VERSION = '2.4.0'
23
+ VERSION = '2.4.1'
24
24
 
25
25
  require_relative 'rubee/router'
26
26
  require_relative 'rubee/logger'
data/readme.md CHANGED
@@ -1052,6 +1052,7 @@ Here are list of additionl APIs extended for:
1052
1052
  # By adding to configuration Rubee::Suport::Hash class or just applying all, Hash will tollerate string or symbol keys.
1053
1053
  {one: 1}[:one] # => 1
1054
1054
  {one: 1}["one"] # => 1
1055
+ ```
1055
1056
 
1056
1057
  # By adding to configuration Rubee::Support::String or just applying all, String will be enriched with handy helper methods.
1057
1058
  ```ruby
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ru.Bee
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.4.0
4
+ version: 2.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Oleg Saltykov