takeltau 0.34.9
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 +7 -0
- data/LICENSE +674 -0
- data/README.md +235 -0
- data/bin/tau +6 -0
- data/lib/Thorfile +3 -0
- data/lib/takeltau.rb +257 -0
- data/lib/takeltau/bit/check/cli.rb +23 -0
- data/lib/takeltau/bit/check/workspace.rb +37 -0
- data/lib/takeltau/bit/cli.rb +18 -0
- data/lib/takeltau/bit/clipboard/cli.rb +73 -0
- data/lib/takeltau/bit/clipboard/copy.rb +142 -0
- data/lib/takeltau/bit/clipboard/lib.rb +143 -0
- data/lib/takeltau/bit/clipboard/paste.rb +60 -0
- data/lib/takeltau/bit/clipboard/pull.rb +37 -0
- data/lib/takeltau/bit/clipboard/push.rb +37 -0
- data/lib/takeltau/bit/require/cli.rb +57 -0
- data/lib/takeltau/bit/require/export.rb +34 -0
- data/lib/takeltau/bit/require/import.rb +133 -0
- data/lib/takeltau/bit/require/lib.rb +19 -0
- data/lib/takeltau/bit/scope/add.rb +55 -0
- data/lib/takeltau/bit/scope/cli.rb +74 -0
- data/lib/takeltau/bit/scope/list.rb +41 -0
- data/lib/takeltau/bit/scope/new.rb +44 -0
- data/lib/takeltau/bit/scope/ssh.rb +13 -0
- data/lib/takeltau/completion/cli.rb +24 -0
- data/lib/takeltau/default.yml +95 -0
- data/lib/takeltau/docker/check/cli.rb +23 -0
- data/lib/takeltau/docker/check/daemon.rb +27 -0
- data/lib/takeltau/docker/cli.rb +15 -0
- data/lib/takeltau/docker/container/check/cli.rb +57 -0
- data/lib/takeltau/docker/container/check/existing.rb +32 -0
- data/lib/takeltau/docker/container/check/network.rb +32 -0
- data/lib/takeltau/docker/container/check/orphaned.rb +32 -0
- data/lib/takeltau/docker/container/clean.rb +40 -0
- data/lib/takeltau/docker/container/cli.rb +118 -0
- data/lib/takeltau/docker/container/command.rb +38 -0
- data/lib/takeltau/docker/container/daemon.rb +17 -0
- data/lib/takeltau/docker/container/lib.rb +181 -0
- data/lib/takeltau/docker/container/login.rb +58 -0
- data/lib/takeltau/docker/container/prune.rb +31 -0
- data/lib/takeltau/docker/image/cli.rb +39 -0
- data/lib/takeltau/docker/image/tag/check.rb +42 -0
- data/lib/takeltau/docker/image/tag/cli.rb +68 -0
- data/lib/takeltau/docker/image/tag/latest.rb +24 -0
- data/lib/takeltau/docker/image/tag/list.rb +19 -0
- data/lib/takeltau/docker/image/update.rb +27 -0
- data/lib/takeltau/git/check/bit.rb +26 -0
- data/lib/takeltau/git/check/clean.rb +46 -0
- data/lib/takeltau/git/check/cli.rb +49 -0
- data/lib/takeltau/git/check/workspace.rb +34 -0
- data/lib/takeltau/git/cli.rb +9 -0
- data/lib/takeltau/info/cli.rb +12 -0
- data/lib/takeltau/info/project/cli.rb +69 -0
- data/lib/takeltau/info/status/bar.rb +112 -0
- data/lib/takeltau/info/status/cli.rb +107 -0
- data/lib/takeltau/info/status/git.rb +47 -0
- data/lib/takeltau/info/status/gopass.rb +37 -0
- data/lib/takeltau/info/status/gpg.rb +39 -0
- data/lib/takeltau/info/status/lib.rb +46 -0
- data/lib/takeltau/info/status/ssh.rb +46 -0
- data/lib/takeltau/init/cli.rb +12 -0
- data/lib/takeltau/init/lib.rb +86 -0
- data/lib/takeltau/init/packer/cli.rb +82 -0
- data/lib/takeltau/init/packer/docker.rb +64 -0
- data/lib/takeltau/init/packer/templates/ansiblelint.tt +3 -0
- data/lib/takeltau/init/packer/templates/bitrequireyml.tt +13 -0
- data/lib/takeltau/init/packer/templates/groupvarsprojectyml.tt +2 -0
- data/lib/takeltau/init/packer/templates/playbooksiteyml.tt +6 -0
- data/lib/takeltau/init/packer/templates/projectyml.tt +19 -0
- data/lib/takeltau/init/takelage/cli.rb +70 -0
- data/lib/takeltau/init/takelage/rake.rb +61 -0
- data/lib/takeltau/init/takelage/templates/bitrequireyml.tt +5 -0
- data/lib/takeltau/init/takelage/templates/projectyml.tt +3 -0
- data/lib/takeltau/init/templates/Rakefile.tt +3 -0
- data/lib/takeltau/init/templates/gitignore.tt +16 -0
- data/lib/takeltau/lib/config.rb +130 -0
- data/lib/takeltau/lib/logging.rb +49 -0
- data/lib/takeltau/lib/project.rb +72 -0
- data/lib/takeltau/lib/subcmd.rb +18 -0
- data/lib/takeltau/lib/system.rb +194 -0
- data/lib/takeltau/mutagen/check/cli.rb +40 -0
- data/lib/takeltau/mutagen/check/daemon.rb +76 -0
- data/lib/takeltau/mutagen/cli.rb +12 -0
- data/lib/takeltau/mutagen/socket/check.rb +33 -0
- data/lib/takeltau/mutagen/socket/cli.rb +103 -0
- data/lib/takeltau/mutagen/socket/create.rb +47 -0
- data/lib/takeltau/mutagen/socket/list.rb +33 -0
- data/lib/takeltau/mutagen/socket/terminate.rb +32 -0
- data/lib/takeltau/mutagen/socket/tidy.rb +21 -0
- data/lib/takeltau/self/cli.rb +43 -0
- data/lib/takeltau/self/config/cli.rb +82 -0
- data/lib/takeltau/self/list.rb +35 -0
- data/lib/takeltau/version +1 -0
- metadata +319 -0
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
module Takeltau
|
|
4
|
+
# takeltau bit
|
|
5
|
+
class SelfConfig < SubCommandBase
|
|
6
|
+
include LoggingModule
|
|
7
|
+
include SystemModule
|
|
8
|
+
include ConfigModule
|
|
9
|
+
|
|
10
|
+
#
|
|
11
|
+
# config defaults
|
|
12
|
+
#
|
|
13
|
+
desc 'default', 'Print takeltau default configuration'
|
|
14
|
+
long_desc <<-LONGDESC.gsub("\n", "\x5")
|
|
15
|
+
Print takeltau default configuration
|
|
16
|
+
This command will print the takeltau default configuration in YAML format.
|
|
17
|
+
You can use it as a starting point for your own configuration by
|
|
18
|
+
redirecting the output to your local takeltau configuration file
|
|
19
|
+
(which is by default ~/.takelage.yml):
|
|
20
|
+
|
|
21
|
+
tau self config defaults > ~/.takelage.yml
|
|
22
|
+
LONGDESC
|
|
23
|
+
# Print takeltau default configuration.
|
|
24
|
+
def default
|
|
25
|
+
config_default_yaml = hash_to_yaml(config.default)
|
|
26
|
+
exit false if config_default_yaml == false
|
|
27
|
+
say config_default_yaml
|
|
28
|
+
true
|
|
29
|
+
end
|
|
30
|
+
|
|
31
|
+
#
|
|
32
|
+
# config home
|
|
33
|
+
#
|
|
34
|
+
desc 'home', 'Print takeltau home config file configuration'
|
|
35
|
+
long_desc <<-LONGDESC.gsub("\n", "\x5")
|
|
36
|
+
Print takeltau home config file configuration
|
|
37
|
+
This command will print the configuration read from the takeltau
|
|
38
|
+
configuration file in your home directory ~/.takeltau.yml).
|
|
39
|
+
LONGDESC
|
|
40
|
+
# Print takeltau home config file configuration.
|
|
41
|
+
def home
|
|
42
|
+
config_home_yaml = hash_to_yaml(config.home)
|
|
43
|
+
exit false if config_home_yaml == false
|
|
44
|
+
say config_home_yaml
|
|
45
|
+
true
|
|
46
|
+
end
|
|
47
|
+
|
|
48
|
+
#
|
|
49
|
+
# config project
|
|
50
|
+
#
|
|
51
|
+
desc 'project', 'Print takeltau project config file configuration'
|
|
52
|
+
long_desc <<-LONGDESC.gsub("\n", "\x5")
|
|
53
|
+
Print takeltau project config file configuration
|
|
54
|
+
This command will print the configuration read from the takeltau
|
|
55
|
+
configuration file .takeltau.yml in your home directory).
|
|
56
|
+
LONGDESC
|
|
57
|
+
# Print takeltau home config file configuration.
|
|
58
|
+
def project
|
|
59
|
+
config_project_yaml = hash_to_yaml(config.project)
|
|
60
|
+
exit false if config_project_yaml == false
|
|
61
|
+
say config_project_yaml
|
|
62
|
+
true
|
|
63
|
+
end
|
|
64
|
+
|
|
65
|
+
#
|
|
66
|
+
# config active
|
|
67
|
+
#
|
|
68
|
+
desc 'active', 'Print active takeltau configuration'
|
|
69
|
+
long_desc <<-LONGDESC.gsub("\n", "\x5")
|
|
70
|
+
Print active takeltau configuration
|
|
71
|
+
This command will print the configuration read from the takeltau
|
|
72
|
+
configuration file (which is by default ~/.takeltau.yml).
|
|
73
|
+
LONGDESC
|
|
74
|
+
# Print active takeltau configuration.
|
|
75
|
+
def active
|
|
76
|
+
config_active_yaml = hash_to_yaml(config.active)
|
|
77
|
+
exit false if config_active_yaml == false
|
|
78
|
+
say config_active_yaml
|
|
79
|
+
true
|
|
80
|
+
end
|
|
81
|
+
end
|
|
82
|
+
end
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
# takeltau self list
|
|
4
|
+
module SelfList
|
|
5
|
+
# Backend method for config self.
|
|
6
|
+
def self_list
|
|
7
|
+
_manipulate_output_(_get_thor_list_)
|
|
8
|
+
end
|
|
9
|
+
|
|
10
|
+
private
|
|
11
|
+
|
|
12
|
+
# Get output of thor list command.
|
|
13
|
+
def _get_thor_list_
|
|
14
|
+
# use Thorfile which requires relative takelage.rb
|
|
15
|
+
thorfile_dir = "#{File.dirname(__FILE__)}/../"
|
|
16
|
+
|
|
17
|
+
# use thor list to get the list of commands and subcommands
|
|
18
|
+
cmd_thor_list = "bash -c '" \
|
|
19
|
+
"cd #{thorfile_dir} && " \
|
|
20
|
+
'thor list' \
|
|
21
|
+
"'"
|
|
22
|
+
|
|
23
|
+
# call thor list command
|
|
24
|
+
`#{cmd_thor_list}`
|
|
25
|
+
end
|
|
26
|
+
|
|
27
|
+
# Manipulate output of thor list command.
|
|
28
|
+
def _manipulate_output_(thor_list)
|
|
29
|
+
tau_list = thor_list.gsub("takeltau\n", '')
|
|
30
|
+
tau_list.gsub!("------\n", '')
|
|
31
|
+
tau_list.gsub!('thor ', 'tau ')
|
|
32
|
+
tau_list.gsub!(/(.*)takeltau:c_l_i:(.*)#(.*)/, '\1\2 #\3')
|
|
33
|
+
tau_list.gsub!(/.*COMMAND.*\n/, '')
|
|
34
|
+
end
|
|
35
|
+
end
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
0.34.9
|
metadata
ADDED
|
@@ -0,0 +1,319 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: takeltau
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.34.9
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Takelwerk
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2019-12-08 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: docker_registry2
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - "~>"
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: '1.9'
|
|
20
|
+
type: :runtime
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - "~>"
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: '1.9'
|
|
27
|
+
- !ruby/object:Gem::Dependency
|
|
28
|
+
name: fylla
|
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
|
30
|
+
requirements:
|
|
31
|
+
- - "~>"
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: '0.5'
|
|
34
|
+
type: :runtime
|
|
35
|
+
prerelease: false
|
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
37
|
+
requirements:
|
|
38
|
+
- - "~>"
|
|
39
|
+
- !ruby/object:Gem::Version
|
|
40
|
+
version: '0.5'
|
|
41
|
+
- !ruby/object:Gem::Dependency
|
|
42
|
+
name: json
|
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
|
44
|
+
requirements:
|
|
45
|
+
- - "~>"
|
|
46
|
+
- !ruby/object:Gem::Version
|
|
47
|
+
version: '2.1'
|
|
48
|
+
type: :runtime
|
|
49
|
+
prerelease: false
|
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
51
|
+
requirements:
|
|
52
|
+
- - "~>"
|
|
53
|
+
- !ruby/object:Gem::Version
|
|
54
|
+
version: '2.1'
|
|
55
|
+
- !ruby/object:Gem::Dependency
|
|
56
|
+
name: logger
|
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
|
58
|
+
requirements:
|
|
59
|
+
- - "~>"
|
|
60
|
+
- !ruby/object:Gem::Version
|
|
61
|
+
version: '1.4'
|
|
62
|
+
type: :runtime
|
|
63
|
+
prerelease: false
|
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
65
|
+
requirements:
|
|
66
|
+
- - "~>"
|
|
67
|
+
- !ruby/object:Gem::Version
|
|
68
|
+
version: '1.4'
|
|
69
|
+
- !ruby/object:Gem::Dependency
|
|
70
|
+
name: rake
|
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
|
72
|
+
requirements:
|
|
73
|
+
- - "~>"
|
|
74
|
+
- !ruby/object:Gem::Version
|
|
75
|
+
version: '12.3'
|
|
76
|
+
type: :runtime
|
|
77
|
+
prerelease: false
|
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
79
|
+
requirements:
|
|
80
|
+
- - "~>"
|
|
81
|
+
- !ruby/object:Gem::Version
|
|
82
|
+
version: '12.3'
|
|
83
|
+
- !ruby/object:Gem::Dependency
|
|
84
|
+
name: thor
|
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
|
86
|
+
requirements:
|
|
87
|
+
- - "~>"
|
|
88
|
+
- !ruby/object:Gem::Version
|
|
89
|
+
version: '1.0'
|
|
90
|
+
type: :runtime
|
|
91
|
+
prerelease: false
|
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
93
|
+
requirements:
|
|
94
|
+
- - "~>"
|
|
95
|
+
- !ruby/object:Gem::Version
|
|
96
|
+
version: '1.0'
|
|
97
|
+
- !ruby/object:Gem::Dependency
|
|
98
|
+
name: version_sorter
|
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
|
100
|
+
requirements:
|
|
101
|
+
- - "~>"
|
|
102
|
+
- !ruby/object:Gem::Version
|
|
103
|
+
version: '2.2'
|
|
104
|
+
type: :runtime
|
|
105
|
+
prerelease: false
|
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
107
|
+
requirements:
|
|
108
|
+
- - "~>"
|
|
109
|
+
- !ruby/object:Gem::Version
|
|
110
|
+
version: '2.2'
|
|
111
|
+
- !ruby/object:Gem::Dependency
|
|
112
|
+
name: aruba
|
|
113
|
+
requirement: !ruby/object:Gem::Requirement
|
|
114
|
+
requirements:
|
|
115
|
+
- - "~>"
|
|
116
|
+
- !ruby/object:Gem::Version
|
|
117
|
+
version: '1.0'
|
|
118
|
+
type: :development
|
|
119
|
+
prerelease: false
|
|
120
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
121
|
+
requirements:
|
|
122
|
+
- - "~>"
|
|
123
|
+
- !ruby/object:Gem::Version
|
|
124
|
+
version: '1.0'
|
|
125
|
+
- !ruby/object:Gem::Dependency
|
|
126
|
+
name: bundler
|
|
127
|
+
requirement: !ruby/object:Gem::Requirement
|
|
128
|
+
requirements:
|
|
129
|
+
- - "~>"
|
|
130
|
+
- !ruby/object:Gem::Version
|
|
131
|
+
version: '2.2'
|
|
132
|
+
type: :development
|
|
133
|
+
prerelease: false
|
|
134
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
135
|
+
requirements:
|
|
136
|
+
- - "~>"
|
|
137
|
+
- !ruby/object:Gem::Version
|
|
138
|
+
version: '2.2'
|
|
139
|
+
- !ruby/object:Gem::Dependency
|
|
140
|
+
name: cucumber
|
|
141
|
+
requirement: !ruby/object:Gem::Requirement
|
|
142
|
+
requirements:
|
|
143
|
+
- - "~>"
|
|
144
|
+
- !ruby/object:Gem::Version
|
|
145
|
+
version: '3.1'
|
|
146
|
+
type: :development
|
|
147
|
+
prerelease: false
|
|
148
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
149
|
+
requirements:
|
|
150
|
+
- - "~>"
|
|
151
|
+
- !ruby/object:Gem::Version
|
|
152
|
+
version: '3.1'
|
|
153
|
+
- !ruby/object:Gem::Dependency
|
|
154
|
+
name: rake
|
|
155
|
+
requirement: !ruby/object:Gem::Requirement
|
|
156
|
+
requirements:
|
|
157
|
+
- - "~>"
|
|
158
|
+
- !ruby/object:Gem::Version
|
|
159
|
+
version: '13.0'
|
|
160
|
+
type: :development
|
|
161
|
+
prerelease: false
|
|
162
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
163
|
+
requirements:
|
|
164
|
+
- - "~>"
|
|
165
|
+
- !ruby/object:Gem::Version
|
|
166
|
+
version: '13.0'
|
|
167
|
+
- !ruby/object:Gem::Dependency
|
|
168
|
+
name: rspec
|
|
169
|
+
requirement: !ruby/object:Gem::Requirement
|
|
170
|
+
requirements:
|
|
171
|
+
- - "~>"
|
|
172
|
+
- !ruby/object:Gem::Version
|
|
173
|
+
version: '3.9'
|
|
174
|
+
type: :development
|
|
175
|
+
prerelease: false
|
|
176
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
177
|
+
requirements:
|
|
178
|
+
- - "~>"
|
|
179
|
+
- !ruby/object:Gem::Version
|
|
180
|
+
version: '3.9'
|
|
181
|
+
- !ruby/object:Gem::Dependency
|
|
182
|
+
name: yard
|
|
183
|
+
requirement: !ruby/object:Gem::Requirement
|
|
184
|
+
requirements:
|
|
185
|
+
- - "~>"
|
|
186
|
+
- !ruby/object:Gem::Version
|
|
187
|
+
version: '0.9'
|
|
188
|
+
type: :development
|
|
189
|
+
prerelease: false
|
|
190
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
191
|
+
requirements:
|
|
192
|
+
- - "~>"
|
|
193
|
+
- !ruby/object:Gem::Version
|
|
194
|
+
version: '0.9'
|
|
195
|
+
description: tau is a thor command line script to tame the takelage devops workflow
|
|
196
|
+
email:
|
|
197
|
+
- takeltau@takelwerk.net
|
|
198
|
+
executables:
|
|
199
|
+
- tau
|
|
200
|
+
extensions: []
|
|
201
|
+
extra_rdoc_files: []
|
|
202
|
+
files:
|
|
203
|
+
- LICENSE
|
|
204
|
+
- README.md
|
|
205
|
+
- bin/tau
|
|
206
|
+
- lib/Thorfile
|
|
207
|
+
- lib/takeltau.rb
|
|
208
|
+
- lib/takeltau/bit/check/cli.rb
|
|
209
|
+
- lib/takeltau/bit/check/workspace.rb
|
|
210
|
+
- lib/takeltau/bit/cli.rb
|
|
211
|
+
- lib/takeltau/bit/clipboard/cli.rb
|
|
212
|
+
- lib/takeltau/bit/clipboard/copy.rb
|
|
213
|
+
- lib/takeltau/bit/clipboard/lib.rb
|
|
214
|
+
- lib/takeltau/bit/clipboard/paste.rb
|
|
215
|
+
- lib/takeltau/bit/clipboard/pull.rb
|
|
216
|
+
- lib/takeltau/bit/clipboard/push.rb
|
|
217
|
+
- lib/takeltau/bit/require/cli.rb
|
|
218
|
+
- lib/takeltau/bit/require/export.rb
|
|
219
|
+
- lib/takeltau/bit/require/import.rb
|
|
220
|
+
- lib/takeltau/bit/require/lib.rb
|
|
221
|
+
- lib/takeltau/bit/scope/add.rb
|
|
222
|
+
- lib/takeltau/bit/scope/cli.rb
|
|
223
|
+
- lib/takeltau/bit/scope/list.rb
|
|
224
|
+
- lib/takeltau/bit/scope/new.rb
|
|
225
|
+
- lib/takeltau/bit/scope/ssh.rb
|
|
226
|
+
- lib/takeltau/completion/cli.rb
|
|
227
|
+
- lib/takeltau/default.yml
|
|
228
|
+
- lib/takeltau/docker/check/cli.rb
|
|
229
|
+
- lib/takeltau/docker/check/daemon.rb
|
|
230
|
+
- lib/takeltau/docker/cli.rb
|
|
231
|
+
- lib/takeltau/docker/container/check/cli.rb
|
|
232
|
+
- lib/takeltau/docker/container/check/existing.rb
|
|
233
|
+
- lib/takeltau/docker/container/check/network.rb
|
|
234
|
+
- lib/takeltau/docker/container/check/orphaned.rb
|
|
235
|
+
- lib/takeltau/docker/container/clean.rb
|
|
236
|
+
- lib/takeltau/docker/container/cli.rb
|
|
237
|
+
- lib/takeltau/docker/container/command.rb
|
|
238
|
+
- lib/takeltau/docker/container/daemon.rb
|
|
239
|
+
- lib/takeltau/docker/container/lib.rb
|
|
240
|
+
- lib/takeltau/docker/container/login.rb
|
|
241
|
+
- lib/takeltau/docker/container/prune.rb
|
|
242
|
+
- lib/takeltau/docker/image/cli.rb
|
|
243
|
+
- lib/takeltau/docker/image/tag/check.rb
|
|
244
|
+
- lib/takeltau/docker/image/tag/cli.rb
|
|
245
|
+
- lib/takeltau/docker/image/tag/latest.rb
|
|
246
|
+
- lib/takeltau/docker/image/tag/list.rb
|
|
247
|
+
- lib/takeltau/docker/image/update.rb
|
|
248
|
+
- lib/takeltau/git/check/bit.rb
|
|
249
|
+
- lib/takeltau/git/check/clean.rb
|
|
250
|
+
- lib/takeltau/git/check/cli.rb
|
|
251
|
+
- lib/takeltau/git/check/workspace.rb
|
|
252
|
+
- lib/takeltau/git/cli.rb
|
|
253
|
+
- lib/takeltau/info/cli.rb
|
|
254
|
+
- lib/takeltau/info/project/cli.rb
|
|
255
|
+
- lib/takeltau/info/status/bar.rb
|
|
256
|
+
- lib/takeltau/info/status/cli.rb
|
|
257
|
+
- lib/takeltau/info/status/git.rb
|
|
258
|
+
- lib/takeltau/info/status/gopass.rb
|
|
259
|
+
- lib/takeltau/info/status/gpg.rb
|
|
260
|
+
- lib/takeltau/info/status/lib.rb
|
|
261
|
+
- lib/takeltau/info/status/ssh.rb
|
|
262
|
+
- lib/takeltau/init/cli.rb
|
|
263
|
+
- lib/takeltau/init/lib.rb
|
|
264
|
+
- lib/takeltau/init/packer/cli.rb
|
|
265
|
+
- lib/takeltau/init/packer/docker.rb
|
|
266
|
+
- lib/takeltau/init/packer/templates/ansiblelint.tt
|
|
267
|
+
- lib/takeltau/init/packer/templates/bitrequireyml.tt
|
|
268
|
+
- lib/takeltau/init/packer/templates/groupvarsprojectyml.tt
|
|
269
|
+
- lib/takeltau/init/packer/templates/playbooksiteyml.tt
|
|
270
|
+
- lib/takeltau/init/packer/templates/projectyml.tt
|
|
271
|
+
- lib/takeltau/init/takelage/cli.rb
|
|
272
|
+
- lib/takeltau/init/takelage/rake.rb
|
|
273
|
+
- lib/takeltau/init/takelage/templates/bitrequireyml.tt
|
|
274
|
+
- lib/takeltau/init/takelage/templates/projectyml.tt
|
|
275
|
+
- lib/takeltau/init/templates/Rakefile.tt
|
|
276
|
+
- lib/takeltau/init/templates/gitignore.tt
|
|
277
|
+
- lib/takeltau/lib/config.rb
|
|
278
|
+
- lib/takeltau/lib/logging.rb
|
|
279
|
+
- lib/takeltau/lib/project.rb
|
|
280
|
+
- lib/takeltau/lib/subcmd.rb
|
|
281
|
+
- lib/takeltau/lib/system.rb
|
|
282
|
+
- lib/takeltau/mutagen/check/cli.rb
|
|
283
|
+
- lib/takeltau/mutagen/check/daemon.rb
|
|
284
|
+
- lib/takeltau/mutagen/cli.rb
|
|
285
|
+
- lib/takeltau/mutagen/socket/check.rb
|
|
286
|
+
- lib/takeltau/mutagen/socket/cli.rb
|
|
287
|
+
- lib/takeltau/mutagen/socket/create.rb
|
|
288
|
+
- lib/takeltau/mutagen/socket/list.rb
|
|
289
|
+
- lib/takeltau/mutagen/socket/terminate.rb
|
|
290
|
+
- lib/takeltau/mutagen/socket/tidy.rb
|
|
291
|
+
- lib/takeltau/self/cli.rb
|
|
292
|
+
- lib/takeltau/self/config/cli.rb
|
|
293
|
+
- lib/takeltau/self/list.rb
|
|
294
|
+
- lib/takeltau/version
|
|
295
|
+
homepage: https://github.com/takelwerk/takelage-cli
|
|
296
|
+
licenses:
|
|
297
|
+
- GPL-3.0
|
|
298
|
+
metadata:
|
|
299
|
+
yard.run: yard
|
|
300
|
+
post_install_message:
|
|
301
|
+
rdoc_options: []
|
|
302
|
+
require_paths:
|
|
303
|
+
- lib
|
|
304
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
305
|
+
requirements:
|
|
306
|
+
- - ">="
|
|
307
|
+
- !ruby/object:Gem::Version
|
|
308
|
+
version: '2.5'
|
|
309
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
310
|
+
requirements:
|
|
311
|
+
- - ">="
|
|
312
|
+
- !ruby/object:Gem::Version
|
|
313
|
+
version: '0'
|
|
314
|
+
requirements: []
|
|
315
|
+
rubygems_version: 3.2.3
|
|
316
|
+
signing_key:
|
|
317
|
+
specification_version: 4
|
|
318
|
+
summary: takelage devops workflow cli
|
|
319
|
+
test_files: []
|