tomo 1.20.1 → 1.20.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4e8510d10f460cc18fd2194c173c484767ca8e180f10c3f93f32dbab29d8960d
4
- data.tar.gz: d5074bc61f2ac66db6f366f02e32aebc552643dfeeffd56cc47a45be865bdcac
3
+ metadata.gz: dac3d53db053c18e86463d7cbfdb6390d490d3222828f93af3cc1086e6e04d17
4
+ data.tar.gz: 14e413e1ac8539482b2527c3b706c30a551f62e58c60cebd6c1933df7ecf8cbb
5
5
  SHA512:
6
- metadata.gz: a3ad075026dcd311609259cdc84fea94163ed08bb6fa1bc440a57520bc91833c4333a90586f092e147183c312ed418f81dcb52a29c8618f9f04f62dcfd72a46f
7
- data.tar.gz: cc54d86f47178c34c5a943aa756546329eb3e8925564ddbcc4fb287bff7b8760f00fb39d7e479b06202d9d2a3357a40a082e0ac3c8ef446108ac348aea49352e
6
+ metadata.gz: ab6add0f0d8e8e68044af9c810d2b741e54582268b4e1f10e3c128b34a3387502f8a691bff1532c0b6777af9c38ce79a1e2d13074b52c5f955ef8854b516fdbc
7
+ data.tar.gz: 9f4917e7df40b0dbbdab2fa75545f0e37ddf661ce38d910abca9c9ee7d997670250591c0121116e7bb75a55a2a3e412688a8fb67e93da237ed5e6db2be774e5b
data/LICENSE.txt CHANGED
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2024 Matt Brictson
3
+ Copyright (c) 2025 Matt Brictson
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
@@ -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.merge(default_chdir: paths.release))
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.merge(raise_on_error: false))
12
+ result = bundle(*args, **opts, raise_on_error: false)
13
13
  result.success?
14
14
  end
15
15
  end
@@ -10,7 +10,7 @@ module Tomo::Plugin::Core
10
10
  end
11
11
 
12
12
  def run?(*command, **run_opts)
13
- result = run(*command, **run_opts.merge(raise_on_error: false))
13
+ result = run(*command, **run_opts, raise_on_error: false)
14
14
  result.success?
15
15
  end
16
16
 
@@ -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
 
@@ -15,7 +15,7 @@ module Tomo::Plugin::Rails
15
15
  end
16
16
 
17
17
  def rake?(*args, **opts)
18
- result = rake(*args, **opts.merge(raise_on_error: false))
18
+ result = rake(*args, **opts, raise_on_error: false)
19
19
  result.success?
20
20
  end
21
21
 
data/lib/tomo/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Tomo
4
- VERSION = "1.20.1"
4
+ VERSION = "1.20.2"
5
5
  end
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.1
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: 2024-12-10 00:00:00.000000000 Z
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.5.23
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: []