shared-infrastructure 2.2.0 → 2.2.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/shared_infrastructure/nginx/builder.rb +2 -0
- data/lib/shared_infrastructure/version.rb +1 -1
- data/lib/shared_infrastructure.rb +19 -18
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2a25928cff5b222ea64339e74483a3626dadbb83adb9d6ed11fa3607e1229c97
|
4
|
+
data.tar.gz: 24631d7d64f1f7880964bb9c22c3b8186125491c454a4f4bcf78fbfbbe7d5b8d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 695f7adad005e48093c604eceb7bc77621cf39a1e43a2998034937b4681b3f432683d9f0b78146a3867a1dca247e665118b27aec2cfe2e73dd6ddaf1f441a952
|
7
|
+
data.tar.gz: 9e23713658947727b7bbe2bbec75b7050f9542bc88b0adff5031b7ab5ed55c6bd559acd666e2f0f70b48ba962d6192a79bf57f760974db5023c08b4db31f4298
|
@@ -1,20 +1,21 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
require "
|
4
|
-
require "shared_infrastructure/
|
5
|
-
require "shared_infrastructure/
|
6
|
-
require "shared_infrastructure/nginx/
|
7
|
-
require "shared_infrastructure/nginx/
|
8
|
-
require "shared_infrastructure/nginx/
|
9
|
-
require "shared_infrastructure/nginx/
|
10
|
-
require "shared_infrastructure/nginx/
|
11
|
-
require "shared_infrastructure/nginx/
|
12
|
-
require "shared_infrastructure/nginx/
|
13
|
-
require "shared_infrastructure/nginx/
|
14
|
-
require "shared_infrastructure/
|
15
|
-
require "shared_infrastructure/runner/
|
16
|
-
require "shared_infrastructure/runner/
|
17
|
-
require "shared_infrastructure/runner/
|
18
|
-
require "shared_infrastructure/
|
19
|
-
require "shared_infrastructure/systemd/
|
20
|
-
require "shared_infrastructure/
|
3
|
+
require "etc"
|
4
|
+
require "shared_infrastructure/output"
|
5
|
+
require "shared_infrastructure/domain"
|
6
|
+
require "shared_infrastructure/nginx/nginx"
|
7
|
+
require "shared_infrastructure/nginx/server_block"
|
8
|
+
require "shared_infrastructure/nginx/server"
|
9
|
+
require "shared_infrastructure/nginx/lines"
|
10
|
+
require "shared_infrastructure/nginx/listen"
|
11
|
+
require "shared_infrastructure/nginx/location"
|
12
|
+
require "shared_infrastructure/nginx/upstream"
|
13
|
+
require "shared_infrastructure/nginx/builder"
|
14
|
+
require "shared_infrastructure/nginx/accel"
|
15
|
+
require "shared_infrastructure/runner/base"
|
16
|
+
require "shared_infrastructure/runner/reverse_proxy"
|
17
|
+
require "shared_infrastructure/runner/static_site"
|
18
|
+
require "shared_infrastructure/runner/rails"
|
19
|
+
require "shared_infrastructure/systemd/systemd"
|
20
|
+
require "shared_infrastructure/systemd/rails"
|
21
|
+
require "shared_infrastructure/version"
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: shared-infrastructure
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.2.
|
4
|
+
version: 2.2.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Larry Reid
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-02-18 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: 'For static sites, Rails apps, and reverse proxies.
|
14
14
|
|
@@ -47,7 +47,7 @@ homepage: https://github.com/weenhanceit/infrastructure
|
|
47
47
|
licenses:
|
48
48
|
- MIT
|
49
49
|
metadata: {}
|
50
|
-
post_install_message:
|
50
|
+
post_install_message:
|
51
51
|
rdoc_options: []
|
52
52
|
require_paths:
|
53
53
|
- lib
|
@@ -62,8 +62,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
62
62
|
- !ruby/object:Gem::Version
|
63
63
|
version: '0'
|
64
64
|
requirements: []
|
65
|
-
rubygems_version: 3.
|
66
|
-
signing_key:
|
65
|
+
rubygems_version: 3.5.3
|
66
|
+
signing_key:
|
67
67
|
specification_version: 4
|
68
68
|
summary: Configure nginx, systemd, and/or Puma
|
69
69
|
test_files: []
|