tomo 1.10.0 → 1.11.0
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/LICENSE.txt +1 -1
- data/lib/tomo/plugin/git/tasks.rb +8 -0
- data/lib/tomo/plugin/git.rb +3 -1
- data/lib/tomo/runtime/current.rb +1 -1
- data/lib/tomo/runtime/settings_interpolation.rb +1 -1
- data/lib/tomo/templates/config.rb.erb +1 -0
- data/lib/tomo/version.rb +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2f646a8ad8b9a55a908ead2765b2b48461f279328424ffae5ddd71adbf525099
|
4
|
+
data.tar.gz: 07b17c07811315a55e49e8b8e0e5d30f56ff88a618fc8ba8053c147f53fa0289
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1a28e6dcdf0ae942ade3eccad7d3c4cf2b8bc8ae1b843fb342d6bb15b35dacda4e07447a9d68cc7ccbe401bb3665fc48ac3ad82a1c0cf21c3d38b20151d52581
|
7
|
+
data.tar.gz: 7ed26ba43d56e602c8aebc59c29900ac53174c8dbf781cc357a16ad5cf5d7581caadd706d5efb4fc6befc30830dba6c322fb9e1910b3cfbfca5573d9bf962c0c
|
data/LICENSE.txt
CHANGED
@@ -3,6 +3,14 @@ require "time"
|
|
3
3
|
|
4
4
|
module Tomo::Plugin::Git
|
5
5
|
class Tasks < Tomo::TaskLibrary
|
6
|
+
def config
|
7
|
+
user_name = settings[:git_user_name] || remote.host.user
|
8
|
+
user_email = settings[:git_user_email] || "#{remote.host.user}@example.com"
|
9
|
+
|
10
|
+
remote.git("config", "--global", "user.name", user_name)
|
11
|
+
remote.git("config", "--global", "user.email", user_email)
|
12
|
+
end
|
13
|
+
|
6
14
|
def clone
|
7
15
|
require_setting :git_url
|
8
16
|
|
data/lib/tomo/plugin/git.rb
CHANGED
data/lib/tomo/runtime/current.rb
CHANGED
data/lib/tomo/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tomo
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.11.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Matt Brictson
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2022-02-26 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: Tomo is a feature-rich deployment tool that contains everything you need
|
14
14
|
to deploy a basic Rails app out of the box. It has an opinionated, production-tested
|
@@ -173,6 +173,7 @@ metadata:
|
|
173
173
|
source_code_uri: https://github.com/mattbrictson/tomo
|
174
174
|
homepage_uri: https://github.com/mattbrictson/tomo
|
175
175
|
documentation_uri: https://tomo-deploy.com/
|
176
|
+
rubygems_mfa_required: 'true'
|
176
177
|
post_install_message:
|
177
178
|
rdoc_options: []
|
178
179
|
require_paths:
|
@@ -188,7 +189,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
188
189
|
- !ruby/object:Gem::Version
|
189
190
|
version: '0'
|
190
191
|
requirements: []
|
191
|
-
rubygems_version: 3.
|
192
|
+
rubygems_version: 3.3.7
|
192
193
|
signing_key:
|
193
194
|
specification_version: 4
|
194
195
|
summary: A friendly CLI for deploying Rails apps ✨
|