tomo 1.20.0 → 1.20.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/LICENSE.txt +1 -1
- data/lib/tomo/plugin/bundler/helpers.rb +2 -2
- data/lib/tomo/plugin/core/helpers.rb +1 -1
- data/lib/tomo/plugin/puma/systemd/service.erb +0 -2
- data/lib/tomo/plugin/rails/helpers.rb +1 -1
- data/lib/tomo/version.rb +1 -1
- metadata +3 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: dac3d53db053c18e86463d7cbfdb6390d490d3222828f93af3cc1086e6e04d17
|
4
|
+
data.tar.gz: 14e413e1ac8539482b2527c3b706c30a551f62e58c60cebd6c1933df7ecf8cbb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ab6add0f0d8e8e68044af9c810d2b741e54582268b4e1f10e3c128b34a3387502f8a691bff1532c0b6777af9c38ce79a1e2d13074b52c5f955ef8854b516fdbc
|
7
|
+
data.tar.gz: 9f4917e7df40b0dbbdab2fa75545f0e37ddf661ce38d910abca9c9ee7d997670250591c0121116e7bb75a55a2a3e412688a8fb67e93da237ed5e6db2be774e5b
|
data/LICENSE.txt
CHANGED
@@ -4,12 +4,12 @@ module Tomo::Plugin::Bundler
|
|
4
4
|
module Helpers
|
5
5
|
def bundle(*args, **opts)
|
6
6
|
prepend("bundle") do
|
7
|
-
run(*args, **opts
|
7
|
+
run(*args, **opts, default_chdir: paths.release)
|
8
8
|
end
|
9
9
|
end
|
10
10
|
|
11
11
|
def bundle?(*args, **opts)
|
12
|
-
result = bundle(*args, **opts
|
12
|
+
result = bundle(*args, **opts, raise_on_error: false)
|
13
13
|
result.success?
|
14
14
|
end
|
15
15
|
end
|
@@ -8,9 +8,7 @@ ConditionPathExists=<%= paths.current %>
|
|
8
8
|
ExecStart=/bin/bash -lc 'exec bundle exec --keep-file-descriptors puma -C config/puma.rb -b tcp://<%= settings[:puma_host] %>:<%= settings[:puma_port] %>'
|
9
9
|
KillMode=mixed
|
10
10
|
Restart=always
|
11
|
-
StandardError=syslog
|
12
11
|
StandardInput=null
|
13
|
-
StandardOutput=syslog
|
14
12
|
SyslogIdentifier=%n
|
15
13
|
TimeoutStopSec=5
|
16
14
|
|
data/lib/tomo/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tomo
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.20.
|
4
|
+
version: 1.20.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Matt Brictson
|
8
|
-
autorequire:
|
9
8
|
bindir: exe
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 2025-01-25 00:00:00.000000000 Z
|
12
11
|
dependencies: []
|
13
12
|
description: Tomo is a feature-rich deployment tool that contains everything you need
|
14
13
|
to deploy a basic Rails app out of the box. It has an opinionated, production-tested
|
@@ -175,7 +174,6 @@ metadata:
|
|
175
174
|
homepage_uri: https://github.com/mattbrictson/tomo
|
176
175
|
documentation_uri: https://tomo.mattbrictson.com/
|
177
176
|
rubygems_mfa_required: 'true'
|
178
|
-
post_install_message:
|
179
177
|
rdoc_options: []
|
180
178
|
require_paths:
|
181
179
|
- lib
|
@@ -190,8 +188,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
190
188
|
- !ruby/object:Gem::Version
|
191
189
|
version: '0'
|
192
190
|
requirements: []
|
193
|
-
rubygems_version: 3.
|
194
|
-
signing_key:
|
191
|
+
rubygems_version: 3.6.3
|
195
192
|
specification_version: 4
|
196
193
|
summary: A friendly CLI for deploying Rails apps ✨
|
197
194
|
test_files: []
|