sct 0.1.26 → 0.1.27
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/cluster/lib/.DS_Store +0 -0
- data/cluster/lib/cluster.rb +0 -0
- data/cluster/lib/cluster/commands_generator.rb +0 -0
- data/cluster/lib/cluster/module.rb +0 -0
- data/cluster/lib/cluster/resources/.DS_Store +0 -0
- data/cluster/lib/cluster/resources/corefile.yml +0 -0
- data/cluster/lib/cluster/runner.rb +0 -0
- data/sct/lib/.DS_Store +0 -0
- data/sct/lib/sct.rb +0 -0
- data/sct/lib/sct/.DS_Store +0 -0
- data/sct/lib/sct/cli_tools_distributor.rb +0 -0
- data/sct/lib/sct/command.rb +0 -0
- data/sct/lib/sct/commands/hostfile.rb +0 -0
- data/sct/lib/sct/commands/init.rb +0 -0
- data/sct/lib/sct/commands/mysqlproxy.rb +0 -0
- data/sct/lib/sct/commands_generator.rb +14 -0
- data/sct/lib/sct/tools.rb +0 -0
- data/sct/lib/sct/version.rb +1 -1
- data/sct_core/lib/.DS_Store +0 -0
- data/sct_core/lib/sct_core.rb +0 -0
- data/sct_core/lib/sct_core/.DS_Store +0 -0
- data/sct_core/lib/sct_core/command_executor.rb +0 -0
- data/sct_core/lib/sct_core/config.rb +0 -0
- data/sct_core/lib/sct_core/core_ext/string.rb +0 -0
- data/sct_core/lib/sct_core/helper.rb +0 -0
- data/sct_core/lib/sct_core/module.rb +0 -0
- data/sct_core/lib/sct_core/sct_pty.rb +0 -0
- data/sct_core/lib/sct_core/ui/implementations/shell.rb +0 -0
- data/sct_core/lib/sct_core/ui/interface.rb +0 -0
- data/sct_core/lib/sct_core/ui/ui.rb +0 -0
- data/sct_core/lib/sct_core/update_checker/update_checker.rb +0 -0
- data/shell/README.md +0 -0
- data/shell/lib/shell.rb +0 -0
- data/shell/lib/shell/ClassLevelInheritableAttributes.rb +0 -0
- data/shell/lib/shell/commands_generator.rb +0 -0
- data/shell/lib/shell/docker/composer.rb +0 -0
- data/shell/lib/shell/docker/docker.rb +0 -0
- data/shell/lib/shell/docker/php.rb +0 -0
- data/shell/lib/shell/docker/yarn.rb +0 -0
- data/shell/lib/shell/module.rb +0 -0
- data/shell/lib/shell/runner.rb +0 -0
- data/shell/lib/shell/tools.rb +0 -0
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ff08000486ce837ef860abef5066f502d812fa618aee9cdc4ff1675de5e1db99
|
|
4
|
+
data.tar.gz: 82bb9f318eb66683a659df692022039b2c9e27896190f4d40273fb27d375b095
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4ec72ba0beb92e34c15e78a8d8ea8f25dc896ea783acf7404860bea66434c6c875ca41636e76f096024497badecadbb53917d5941eced8687e0df4076e00bb29
|
|
7
|
+
data.tar.gz: 13360a17d8c27c6cd6707585a35fd0c13503296be34b2f8a9fe918f9470e6f40c68a5d4c3c7af319d00e7de66c12553b67710d7a3da1a65dcd3ce173dba3bfac
|
data/cluster/lib/.DS_Store
CHANGED
|
File without changes
|
data/cluster/lib/cluster.rb
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
data/sct/lib/.DS_Store
CHANGED
|
File without changes
|
data/sct/lib/sct.rb
CHANGED
|
File without changes
|
data/sct/lib/sct/.DS_Store
CHANGED
|
File without changes
|
|
File without changes
|
data/sct/lib/sct/command.rb
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -50,6 +50,20 @@ module Sct
|
|
|
50
50
|
|
|
51
51
|
end
|
|
52
52
|
|
|
53
|
+
command :'cluster' do |c|
|
|
54
|
+
|
|
55
|
+
c.syntax = 'sct cluster'
|
|
56
|
+
c.description = 'make changes to the cluster'
|
|
57
|
+
|
|
58
|
+
end
|
|
59
|
+
|
|
60
|
+
command :'shell' do |c|
|
|
61
|
+
|
|
62
|
+
c.syntax = 'sct shell'
|
|
63
|
+
c.description = 'run commands from the shell using docker containers'
|
|
64
|
+
|
|
65
|
+
end
|
|
66
|
+
|
|
53
67
|
run!
|
|
54
68
|
end
|
|
55
69
|
end
|
data/sct/lib/sct/tools.rb
CHANGED
|
File without changes
|
data/sct/lib/sct/version.rb
CHANGED
data/sct_core/lib/.DS_Store
CHANGED
|
File without changes
|
data/sct_core/lib/sct_core.rb
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
data/shell/README.md
CHANGED
|
File without changes
|
data/shell/lib/shell.rb
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
data/shell/lib/shell/module.rb
CHANGED
|
File without changes
|
data/shell/lib/shell/runner.rb
CHANGED
|
File without changes
|
data/shell/lib/shell/tools.rb
CHANGED
|
File without changes
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: sct
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.27
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Reshad Farid
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-
|
|
11
|
+
date: 2020-09-21 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: colored
|