waylon-core 0.1.8 → 0.1.9
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/Gemfile.lock +2 -2
- data/lib/waylon/config.rb +4 -5
- data/lib/waylon/storage.rb +6 -1
- data/lib/waylon/version.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: 628f00817729895a327ec3adff832ba15fdb071da3762a061eb637b0492b2953
|
|
4
|
+
data.tar.gz: 17276d8b5acbdaf2b5c90766329d53ec8fe42d0afae64f7aa062ad0a4cb1a381
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6724d7e8ee142b43534ca17fd53d729272d83ab0f6e5f3ef0cf1b07ac63a552bc8393a167b1d6f324cf809fd27bb88f6379375929f130481a16b1ef69f24068e
|
|
7
|
+
data.tar.gz: 800fa36240abe3b85afc58951efa01c519fa6802d74d9fe92a67eb5719e3d25dfc2348f6d38dc347be7ccf9d6c7c1a6e4f4ca92d3117c04775a67ed151295a3e
|
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
waylon-core (0.1.
|
|
4
|
+
waylon-core (0.1.9)
|
|
5
5
|
addressable (~> 2.8)
|
|
6
6
|
faraday (~> 1.8)
|
|
7
7
|
i18n (~> 1.8)
|
|
@@ -50,7 +50,7 @@ GEM
|
|
|
50
50
|
moneta (1.5.1)
|
|
51
51
|
mono_logger (1.1.1)
|
|
52
52
|
multi_json (1.15.0)
|
|
53
|
-
multipart-post (2.2.
|
|
53
|
+
multipart-post (2.2.3)
|
|
54
54
|
mustermann (1.1.1)
|
|
55
55
|
ruby2_keywords (~> 0.0.1)
|
|
56
56
|
nio4r (2.5.8)
|
data/lib/waylon/config.rb
CHANGED
|
@@ -32,11 +32,10 @@ module Waylon
|
|
|
32
32
|
|
|
33
33
|
# Load in the config from env variables
|
|
34
34
|
# @return [Boolean] Was the configuration loaded?
|
|
35
|
-
def load_env
|
|
35
|
+
def load_env
|
|
36
36
|
@schema ||= {}
|
|
37
37
|
self["global.log.level"] = ENV.fetch("LOG_LEVEL", "info")
|
|
38
|
-
self["global.redis
|
|
39
|
-
self["global.redis.port"] = ENV.fetch("REDIS_PORT", "6379")
|
|
38
|
+
self["global.redis"] = ENV.fetch("REDIS", "localhost:6379")
|
|
40
39
|
self["global.admins"] = ENV.fetch("GLOBAL_ADMINS", "")
|
|
41
40
|
ENV.keys.grep(/CONF_/).each do |env_key|
|
|
42
41
|
conf_key = env_key.downcase.split("_")[1..].join(".")
|
|
@@ -49,13 +48,13 @@ module Waylon
|
|
|
49
48
|
# Provides the redis host used for most of Waylon's brain
|
|
50
49
|
# @return [String] The redis host
|
|
51
50
|
def redis_host
|
|
52
|
-
self["global.redis.
|
|
51
|
+
self["global.redis"].split(":").first
|
|
53
52
|
end
|
|
54
53
|
|
|
55
54
|
# Provides the redis port used for most of Waylon's brain
|
|
56
55
|
# @return [String] The redis host
|
|
57
56
|
def redis_port
|
|
58
|
-
self["global.redis.
|
|
57
|
+
self["global.redis"].split(":").last
|
|
59
58
|
end
|
|
60
59
|
|
|
61
60
|
# Clear the configuration
|
data/lib/waylon/storage.rb
CHANGED
|
@@ -1,11 +1,16 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
|
+
Waylon::Cache = Moneta.new(
|
|
4
|
+
:Redis,
|
|
5
|
+
url: "redis://#{ENV.fetch("REDIS", "localhost:6379")}/1"
|
|
6
|
+
)
|
|
7
|
+
|
|
3
8
|
module Waylon
|
|
4
9
|
# Used for working with the Moneta store
|
|
5
10
|
module Storage
|
|
6
11
|
Store = Moneta.new(
|
|
7
12
|
:Redis,
|
|
8
|
-
url: "redis://#{ENV.fetch("REDIS", "localhost:6379")}/
|
|
13
|
+
url: "redis://#{ENV.fetch("REDIS", "localhost:6379")}/2"
|
|
9
14
|
)
|
|
10
15
|
|
|
11
16
|
def self.cipher
|
data/lib/waylon/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: waylon-core
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.9
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jonathan Gnagy
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2022-06-
|
|
11
|
+
date: 2022-06-19 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: addressable
|