tomo 1.20.1 → 1.20.3

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: 4e8510d10f460cc18fd2194c173c484767ca8e180f10c3f93f32dbab29d8960d
4
- data.tar.gz: d5074bc61f2ac66db6f366f02e32aebc552643dfeeffd56cc47a45be865bdcac
3
+ metadata.gz: 36f41f85965651a3d63c2e38d800950d3dc725cd74c0089ac67954b5174f72a9
4
+ data.tar.gz: c08730260a28aa24909906adffd5c1e8c2bf6242f8d24bbd5bf4a25d950d36f7
5
5
  SHA512:
6
- metadata.gz: a3ad075026dcd311609259cdc84fea94163ed08bb6fa1bc440a57520bc91833c4333a90586f092e147183c312ed418f81dcb52a29c8618f9f04f62dcfd72a46f
7
- data.tar.gz: cc54d86f47178c34c5a943aa756546329eb3e8925564ddbcc4fb287bff7b8760f00fb39d7e479b06202d9d2a3357a40a082e0ac3c8ef446108ac348aea49352e
6
+ metadata.gz: 1c6320cc0ece0ede078cbe064c9b46b0a07a67055877c66823bf916ee333b9fb3b0bb1d497c6a44a33511efe312138c6783f9a0ebe2589422899b7a26c315218
7
+ data.tar.gz: b238053c2d80970d5610f2e30d58437bbd97ce67b4dfacffbe0490c68c1b4a22e384876d1a16f94241c9e850888702963f163bb9701e56b633bb8a70cd79f225
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
 
@@ -11,7 +11,7 @@ module Tomo
11
11
  end
12
12
 
13
13
  def success?
14
- status == true || status == 0
14
+ [true, 0].include?(status)
15
15
  end
16
16
  end
17
17
  end
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.3"
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.3
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: 1980-01-02 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.7
195
192
  specification_version: 4
196
193
  summary: A friendly CLI for deploying Rails apps ✨
197
194
  test_files: []