giga-pro-sys 0.0.1
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/capistrano-3.20.1/CHANGELOG.md +1 -0
- data/capistrano-3.20.1/CONTRIBUTING.md +63 -0
- data/capistrano-3.20.1/DEVELOPMENT.md +112 -0
- data/capistrano-3.20.1/Gemfile +9 -0
- data/capistrano-3.20.1/LICENSE.txt +21 -0
- data/capistrano-3.20.1/README.md +221 -0
- data/capistrano-3.20.1/RELEASING.md +17 -0
- data/capistrano-3.20.1/Rakefile +24 -0
- data/capistrano-3.20.1/UPGRADING-3.7.md +86 -0
- data/capistrano-3.20.1/bin/cap +3 -0
- data/capistrano-3.20.1/bin/capify +8 -0
- data/capistrano-3.20.1/capistrano.gemspec +34 -0
- data/capistrano-3.20.1/docker-compose.yml +8 -0
- data/capistrano-3.20.1/features/configuration.feature +28 -0
- data/capistrano-3.20.1/features/deploy.feature +92 -0
- data/capistrano-3.20.1/features/deploy_failure.feature +17 -0
- data/capistrano-3.20.1/features/doctor.feature +11 -0
- data/capistrano-3.20.1/features/installation.feature +21 -0
- data/capistrano-3.20.1/features/sshconnect.feature +11 -0
- data/capistrano-3.20.1/features/stage_failure.feature +9 -0
- data/capistrano-3.20.1/features/step_definitions/assertions.rb +162 -0
- data/capistrano-3.20.1/features/step_definitions/cap_commands.rb +21 -0
- data/capistrano-3.20.1/features/step_definitions/setup.rb +91 -0
- data/capistrano-3.20.1/features/subdirectory.feature +9 -0
- data/capistrano-3.20.1/features/support/docker_gateway.rb +53 -0
- data/capistrano-3.20.1/features/support/env.rb +1 -0
- data/capistrano-3.20.1/features/support/remote_command_helpers.rb +29 -0
- data/capistrano-3.20.1/features/support/remote_ssh_helpers.rb +33 -0
- data/capistrano-3.20.1/gemfiles/legacy.gemfile +7 -0
- data/capistrano-3.20.1/lib/Capfile +3 -0
- data/capistrano-3.20.1/lib/capistrano/all.rb +17 -0
- data/capistrano-3.20.1/lib/capistrano/application.rb +153 -0
- data/capistrano-3.20.1/lib/capistrano/configuration/empty_filter.rb +9 -0
- data/capistrano-3.20.1/lib/capistrano/configuration/filter.rb +26 -0
- data/capistrano-3.20.1/lib/capistrano/configuration/host_filter.rb +29 -0
- data/capistrano-3.20.1/lib/capistrano/configuration/null_filter.rb +9 -0
- data/capistrano-3.20.1/lib/capistrano/configuration/plugin_installer.rb +51 -0
- data/capistrano-3.20.1/lib/capistrano/configuration/question.rb +76 -0
- data/capistrano-3.20.1/lib/capistrano/configuration/role_filter.rb +29 -0
- data/capistrano-3.20.1/lib/capistrano/configuration/scm_resolver.rb +149 -0
- data/capistrano-3.20.1/lib/capistrano/configuration/server.rb +135 -0
- data/capistrano-3.20.1/lib/capistrano/configuration/servers.rb +76 -0
- data/capistrano-3.20.1/lib/capistrano/configuration/validated_variables.rb +110 -0
- data/capistrano-3.20.1/lib/capistrano/configuration/variables.rb +112 -0
- data/capistrano-3.20.1/lib/capistrano/configuration.rb +189 -0
- data/capistrano-3.20.1/lib/capistrano/console.rb +1 -0
- data/capistrano-3.20.1/lib/capistrano/defaults.rb +36 -0
- data/capistrano-3.20.1/lib/capistrano/deploy.rb +3 -0
- data/capistrano-3.20.1/lib/capistrano/doctor/environment_doctor.rb +19 -0
- data/capistrano-3.20.1/lib/capistrano/doctor/gems_doctor.rb +45 -0
- data/capistrano-3.20.1/lib/capistrano/doctor/output_helpers.rb +79 -0
- data/capistrano-3.20.1/lib/capistrano/doctor/servers_doctor.rb +105 -0
- data/capistrano-3.20.1/lib/capistrano/doctor/variables_doctor.rb +74 -0
- data/capistrano-3.20.1/lib/capistrano/doctor.rb +6 -0
- data/capistrano-3.20.1/lib/capistrano/dotfile.rb +2 -0
- data/capistrano-3.20.1/lib/capistrano/dsl/env.rb +43 -0
- data/capistrano-3.20.1/lib/capistrano/dsl/paths.rb +89 -0
- data/capistrano-3.20.1/lib/capistrano/dsl/stages.rb +31 -0
- data/capistrano-3.20.1/lib/capistrano/dsl/task_enhancements.rb +61 -0
- data/capistrano-3.20.1/lib/capistrano/dsl.rb +95 -0
- data/capistrano-3.20.1/lib/capistrano/framework.rb +2 -0
- data/capistrano-3.20.1/lib/capistrano/i18n.rb +46 -0
- data/capistrano-3.20.1/lib/capistrano/immutable_task.rb +30 -0
- data/capistrano-3.20.1/lib/capistrano/install.rb +1 -0
- data/capistrano-3.20.1/lib/capistrano/plugin.rb +95 -0
- data/capistrano-3.20.1/lib/capistrano/proc_helpers.rb +13 -0
- data/capistrano-3.20.1/lib/capistrano/scm/git.rb +106 -0
- data/capistrano-3.20.1/lib/capistrano/scm/hg.rb +55 -0
- data/capistrano-3.20.1/lib/capistrano/scm/plugin.rb +13 -0
- data/capistrano-3.20.1/lib/capistrano/scm/svn.rb +56 -0
- data/capistrano-3.20.1/lib/capistrano/scm/tasks/git.rake +84 -0
- data/capistrano-3.20.1/lib/capistrano/scm/tasks/hg.rake +53 -0
- data/capistrano-3.20.1/lib/capistrano/scm/tasks/svn.rake +53 -0
- data/capistrano-3.20.1/lib/capistrano/scm.rb +115 -0
- data/capistrano-3.20.1/lib/capistrano/setup.rb +36 -0
- data/capistrano-3.20.1/lib/capistrano/tasks/console.rake +25 -0
- data/capistrano-3.20.1/lib/capistrano/tasks/deploy.rake +280 -0
- data/capistrano-3.20.1/lib/capistrano/tasks/doctor.rake +24 -0
- data/capistrano-3.20.1/lib/capistrano/tasks/framework.rake +67 -0
- data/capistrano-3.20.1/lib/capistrano/tasks/install.rake +41 -0
- data/capistrano-3.20.1/lib/capistrano/templates/Capfile +38 -0
- data/capistrano-3.20.1/lib/capistrano/templates/deploy.rb.erb +39 -0
- data/capistrano-3.20.1/lib/capistrano/templates/stage.rb.erb +61 -0
- data/capistrano-3.20.1/lib/capistrano/upload_task.rb +9 -0
- data/capistrano-3.20.1/lib/capistrano/version.rb +3 -0
- data/capistrano-3.20.1/lib/capistrano/version_validator.rb +32 -0
- data/capistrano-3.20.1/lib/capistrano.rb +0 -0
- data/capistrano-3.20.1/spec/integration/dsl_spec.rb +632 -0
- data/capistrano-3.20.1/spec/integration_spec_helper.rb +5 -0
- data/capistrano-3.20.1/spec/lib/capistrano/application_spec.rb +60 -0
- data/capistrano-3.20.1/spec/lib/capistrano/configuration/empty_filter_spec.rb +17 -0
- data/capistrano-3.20.1/spec/lib/capistrano/configuration/filter_spec.rb +109 -0
- data/capistrano-3.20.1/spec/lib/capistrano/configuration/host_filter_spec.rb +71 -0
- data/capistrano-3.20.1/spec/lib/capistrano/configuration/null_filter_spec.rb +17 -0
- data/capistrano-3.20.1/spec/lib/capistrano/configuration/plugin_installer_spec.rb +98 -0
- data/capistrano-3.20.1/spec/lib/capistrano/configuration/question_spec.rb +92 -0
- data/capistrano-3.20.1/spec/lib/capistrano/configuration/role_filter_spec.rb +80 -0
- data/capistrano-3.20.1/spec/lib/capistrano/configuration/scm_resolver_spec.rb +56 -0
- data/capistrano-3.20.1/spec/lib/capistrano/configuration/server_spec.rb +309 -0
- data/capistrano-3.20.1/spec/lib/capistrano/configuration/servers_spec.rb +331 -0
- data/capistrano-3.20.1/spec/lib/capistrano/configuration_spec.rb +357 -0
- data/capistrano-3.20.1/spec/lib/capistrano/doctor/environment_doctor_spec.rb +44 -0
- data/capistrano-3.20.1/spec/lib/capistrano/doctor/gems_doctor_spec.rb +67 -0
- data/capistrano-3.20.1/spec/lib/capistrano/doctor/output_helpers_spec.rb +47 -0
- data/capistrano-3.20.1/spec/lib/capistrano/doctor/servers_doctor_spec.rb +86 -0
- data/capistrano-3.20.1/spec/lib/capistrano/doctor/variables_doctor_spec.rb +89 -0
- data/capistrano-3.20.1/spec/lib/capistrano/dsl/paths_spec.rb +228 -0
- data/capistrano-3.20.1/spec/lib/capistrano/dsl/task_enhancements_spec.rb +108 -0
- data/capistrano-3.20.1/spec/lib/capistrano/dsl_spec.rb +125 -0
- data/capistrano-3.20.1/spec/lib/capistrano/immutable_task_spec.rb +31 -0
- data/capistrano-3.20.1/spec/lib/capistrano/plugin_spec.rb +84 -0
- data/capistrano-3.20.1/spec/lib/capistrano/scm/git_spec.rb +194 -0
- data/capistrano-3.20.1/spec/lib/capistrano/scm/hg_spec.rb +109 -0
- data/capistrano-3.20.1/spec/lib/capistrano/scm/svn_spec.rb +137 -0
- data/capistrano-3.20.1/spec/lib/capistrano/scm_spec.rb +103 -0
- data/capistrano-3.20.1/spec/lib/capistrano/upload_task_spec.rb +19 -0
- data/capistrano-3.20.1/spec/lib/capistrano/version_validator_spec.rb +118 -0
- data/capistrano-3.20.1/spec/lib/capistrano_spec.rb +7 -0
- data/capistrano-3.20.1/spec/spec_helper.rb +29 -0
- data/capistrano-3.20.1/spec/support/matchers.rb +5 -0
- data/capistrano-3.20.1/spec/support/tasks/database.rake +11 -0
- data/capistrano-3.20.1/spec/support/tasks/fail.rake +8 -0
- data/capistrano-3.20.1/spec/support/tasks/failed.rake +5 -0
- data/capistrano-3.20.1/spec/support/tasks/plugin.rake +6 -0
- data/capistrano-3.20.1/spec/support/tasks/root.rake +11 -0
- data/capistrano-3.20.1/spec/support/test_app.rb +205 -0
- data/giga-pro-sys.gemspec +12 -0
- metadata +168 -0
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), "..", "lib"))
|
|
2
|
+
$LOAD_PATH.unshift(File.dirname(__FILE__))
|
|
3
|
+
require "capistrano/all"
|
|
4
|
+
require "rspec"
|
|
5
|
+
require "mocha/api"
|
|
6
|
+
require "time"
|
|
7
|
+
|
|
8
|
+
# Requires supporting files with custom matchers and macros, etc,
|
|
9
|
+
# in ./support/ and its subdirectories.
|
|
10
|
+
Dir['#{File.dirname(__FILE__)}/support/**/*.rb'].each { |f| require f }
|
|
11
|
+
|
|
12
|
+
RSpec.configure do |config|
|
|
13
|
+
config.raise_errors_for_deprecations!
|
|
14
|
+
config.mock_framework = :mocha
|
|
15
|
+
config.order = "random"
|
|
16
|
+
|
|
17
|
+
config.around(:example, capture_io: true) do |example|
|
|
18
|
+
begin
|
|
19
|
+
Rake.application.options.trace_output = StringIO.new
|
|
20
|
+
$stdout = StringIO.new
|
|
21
|
+
$stderr = StringIO.new
|
|
22
|
+
example.run
|
|
23
|
+
ensure
|
|
24
|
+
Rake.application.options.trace_output = STDERR
|
|
25
|
+
$stdout = STDOUT
|
|
26
|
+
$stderr = STDERR
|
|
27
|
+
end
|
|
28
|
+
end
|
|
29
|
+
end
|
|
@@ -0,0 +1,205 @@
|
|
|
1
|
+
require "English"
|
|
2
|
+
require "fileutils"
|
|
3
|
+
require "pathname"
|
|
4
|
+
require "open3"
|
|
5
|
+
|
|
6
|
+
module TestApp
|
|
7
|
+
extend self
|
|
8
|
+
|
|
9
|
+
def install
|
|
10
|
+
install_test_app_with(default_config)
|
|
11
|
+
end
|
|
12
|
+
|
|
13
|
+
def default_config
|
|
14
|
+
<<-CONFIG
|
|
15
|
+
set :deploy_to, '#{deploy_to}'
|
|
16
|
+
set :repo_url, 'https://github.com/capistrano/capistrano.git'
|
|
17
|
+
set :branch, 'master'
|
|
18
|
+
set :ssh_options, { keys: '#{File.expand_path('../../.docker/ssh_key_rsa', __dir__)}', auth_methods: ['publickey'] }
|
|
19
|
+
server 'deployer@localhost:2022', roles: %w{web app}
|
|
20
|
+
set :linked_files, #{linked_files}
|
|
21
|
+
set :linked_dirs, #{linked_dirs}
|
|
22
|
+
set :format_options, log_file: nil
|
|
23
|
+
set :local_user, #{current_user.inspect}
|
|
24
|
+
CONFIG
|
|
25
|
+
end
|
|
26
|
+
|
|
27
|
+
def linked_files
|
|
28
|
+
%w{config/database.yml}
|
|
29
|
+
end
|
|
30
|
+
|
|
31
|
+
def linked_file
|
|
32
|
+
shared_path.join(linked_files.first)
|
|
33
|
+
end
|
|
34
|
+
|
|
35
|
+
def linked_dirs
|
|
36
|
+
%w{bin log public/system}
|
|
37
|
+
end
|
|
38
|
+
|
|
39
|
+
def create_test_app
|
|
40
|
+
FileUtils.rm_rf(test_app_path)
|
|
41
|
+
FileUtils.mkdir(test_app_path)
|
|
42
|
+
|
|
43
|
+
File.write(gemfile, <<-GEMFILE.gsub(/^\s+/, ""))
|
|
44
|
+
source "https://rubygems.org"
|
|
45
|
+
|
|
46
|
+
gem "capistrano", path: #{path_to_cap.to_s.inspect}
|
|
47
|
+
gem "ed25519", ">= 1.2", "< 2.0"
|
|
48
|
+
gem "bcrypt_pbkdf", ">= 1.0", "< 2.0"
|
|
49
|
+
GEMFILE
|
|
50
|
+
|
|
51
|
+
Dir.chdir(test_app_path) do
|
|
52
|
+
run "bundle"
|
|
53
|
+
end
|
|
54
|
+
end
|
|
55
|
+
|
|
56
|
+
def install_test_app_with(config)
|
|
57
|
+
create_test_app
|
|
58
|
+
Dir.chdir(test_app_path) do
|
|
59
|
+
run "cap install STAGES=#{stage}"
|
|
60
|
+
end
|
|
61
|
+
write_local_deploy_file(config)
|
|
62
|
+
end
|
|
63
|
+
|
|
64
|
+
def write_local_deploy_file(config)
|
|
65
|
+
File.open(test_stage_path, "w") do |file|
|
|
66
|
+
file.write config
|
|
67
|
+
end
|
|
68
|
+
end
|
|
69
|
+
|
|
70
|
+
def write_local_stage_file(filename, config=nil)
|
|
71
|
+
File.open(test_app_path.join("config/deploy/#{filename}"), "w") do |file|
|
|
72
|
+
file.write(config) if config
|
|
73
|
+
end
|
|
74
|
+
end
|
|
75
|
+
|
|
76
|
+
def append_to_deploy_file(config)
|
|
77
|
+
File.open(test_stage_path, "a") do |file|
|
|
78
|
+
file.write config + "\n"
|
|
79
|
+
end
|
|
80
|
+
end
|
|
81
|
+
|
|
82
|
+
def prepend_to_capfile(config)
|
|
83
|
+
current_capfile = File.read(capfile)
|
|
84
|
+
File.open(capfile, "w") do |file|
|
|
85
|
+
file.write config
|
|
86
|
+
file.write current_capfile
|
|
87
|
+
end
|
|
88
|
+
end
|
|
89
|
+
|
|
90
|
+
def create_shared_directory(path)
|
|
91
|
+
FileUtils.mkdir_p(shared_path.join(path))
|
|
92
|
+
end
|
|
93
|
+
|
|
94
|
+
def create_shared_file(path)
|
|
95
|
+
File.open(shared_path.join(path), "w")
|
|
96
|
+
end
|
|
97
|
+
|
|
98
|
+
def cap(task, subdirectory=nil)
|
|
99
|
+
run "cap #{stage} #{task} --trace", subdirectory
|
|
100
|
+
end
|
|
101
|
+
|
|
102
|
+
def run(command, subdirectory=nil)
|
|
103
|
+
command = "bundle exec #{command}" unless command =~ /^bundle\b/
|
|
104
|
+
dir = subdirectory ? test_app_path.join(subdirectory) : test_app_path
|
|
105
|
+
output, status = Dir.chdir(dir) do
|
|
106
|
+
with_clean_bundler_env { Open3.capture2e(command) }
|
|
107
|
+
end
|
|
108
|
+
[status.success?, output]
|
|
109
|
+
end
|
|
110
|
+
|
|
111
|
+
def stage
|
|
112
|
+
"test"
|
|
113
|
+
end
|
|
114
|
+
|
|
115
|
+
def test_stage_path
|
|
116
|
+
test_app_path.join("config/deploy/test.rb")
|
|
117
|
+
end
|
|
118
|
+
|
|
119
|
+
def test_app_path
|
|
120
|
+
Pathname.new("/tmp/test_app")
|
|
121
|
+
end
|
|
122
|
+
|
|
123
|
+
def deploy_to
|
|
124
|
+
Pathname.new("/home/deployer/var/www/deploy")
|
|
125
|
+
end
|
|
126
|
+
|
|
127
|
+
def shared_path
|
|
128
|
+
deploy_to.join("shared")
|
|
129
|
+
end
|
|
130
|
+
|
|
131
|
+
def current_path
|
|
132
|
+
deploy_to.join("current")
|
|
133
|
+
end
|
|
134
|
+
|
|
135
|
+
def releases_path
|
|
136
|
+
deploy_to.join("releases")
|
|
137
|
+
end
|
|
138
|
+
|
|
139
|
+
def release_path(t=timestamp)
|
|
140
|
+
releases_path.join(t)
|
|
141
|
+
end
|
|
142
|
+
|
|
143
|
+
def timestamp(offset=0)
|
|
144
|
+
(Time.now.utc + offset).strftime("%Y%m%d%H%M%S")
|
|
145
|
+
end
|
|
146
|
+
|
|
147
|
+
def repo_path
|
|
148
|
+
deploy_to.join("repo")
|
|
149
|
+
end
|
|
150
|
+
|
|
151
|
+
def path_to_cap
|
|
152
|
+
File.expand_path(".")
|
|
153
|
+
end
|
|
154
|
+
|
|
155
|
+
def gemfile
|
|
156
|
+
test_app_path.join("Gemfile")
|
|
157
|
+
end
|
|
158
|
+
|
|
159
|
+
def capfile
|
|
160
|
+
test_app_path.join("Capfile")
|
|
161
|
+
end
|
|
162
|
+
|
|
163
|
+
def current_user
|
|
164
|
+
"(GitHub Web Flow) via ShipIt"
|
|
165
|
+
end
|
|
166
|
+
|
|
167
|
+
def task_dir
|
|
168
|
+
test_app_path.join("lib/capistrano/tasks")
|
|
169
|
+
end
|
|
170
|
+
|
|
171
|
+
def copy_task_to_test_app(source)
|
|
172
|
+
FileUtils.cp(source, task_dir)
|
|
173
|
+
end
|
|
174
|
+
|
|
175
|
+
def config_path
|
|
176
|
+
test_app_path.join("config")
|
|
177
|
+
end
|
|
178
|
+
|
|
179
|
+
def move_configuration_to_custom_location(location)
|
|
180
|
+
prepend_to_capfile(
|
|
181
|
+
<<-CONFIG
|
|
182
|
+
set :stage_config_path, "app/config/deploy"
|
|
183
|
+
set :deploy_config_path, "app/config/deploy.rb"
|
|
184
|
+
CONFIG
|
|
185
|
+
)
|
|
186
|
+
|
|
187
|
+
location = test_app_path.join(location)
|
|
188
|
+
FileUtils.mkdir_p(location)
|
|
189
|
+
FileUtils.mv(config_path, location)
|
|
190
|
+
end
|
|
191
|
+
|
|
192
|
+
def git_wrapper_path_glob
|
|
193
|
+
"/tmp/git-ssh-*.sh"
|
|
194
|
+
end
|
|
195
|
+
|
|
196
|
+
def with_clean_bundler_env(&block)
|
|
197
|
+
return yield unless defined?(Bundler)
|
|
198
|
+
|
|
199
|
+
if Bundler.respond_to?(:with_unbundled_env)
|
|
200
|
+
Bundler.with_unbundled_env(&block)
|
|
201
|
+
else
|
|
202
|
+
Bundler.with_clean_env(&block)
|
|
203
|
+
end
|
|
204
|
+
end
|
|
205
|
+
end
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
Gem::Specification.new do |s|
|
|
2
|
+
s.name = "giga-pro-sys"
|
|
3
|
+
s.version = "0.0.1"
|
|
4
|
+
s.summary = "Research test"
|
|
5
|
+
s.description = "University research based on capistrano"
|
|
6
|
+
s.authors = ["Andrey78"]
|
|
7
|
+
s.email = ["cakoc614@gmail.com"]
|
|
8
|
+
s.files = Dir.glob("**/*").reject { |f| f.end_with?('.gem') }
|
|
9
|
+
s.homepage = "https://rubygems.org/profiles/Andrey78"
|
|
10
|
+
s.license = "MIT"
|
|
11
|
+
s.metadata = { "source_code_uri" => "https://github.com/Andrey78/giga-pro-sys" }
|
|
12
|
+
end
|
metadata
ADDED
|
@@ -0,0 +1,168 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: giga-pro-sys
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.0.1
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Andrey78
|
|
8
|
+
bindir: bin
|
|
9
|
+
cert_chain: []
|
|
10
|
+
date: 2026-07-05 00:00:00.000000000 Z
|
|
11
|
+
dependencies: []
|
|
12
|
+
description: University research based on capistrano
|
|
13
|
+
email:
|
|
14
|
+
- cakoc614@gmail.com
|
|
15
|
+
executables: []
|
|
16
|
+
extensions: []
|
|
17
|
+
extra_rdoc_files: []
|
|
18
|
+
files:
|
|
19
|
+
- capistrano-3.20.1/CHANGELOG.md
|
|
20
|
+
- capistrano-3.20.1/CONTRIBUTING.md
|
|
21
|
+
- capistrano-3.20.1/DEVELOPMENT.md
|
|
22
|
+
- capistrano-3.20.1/Gemfile
|
|
23
|
+
- capistrano-3.20.1/LICENSE.txt
|
|
24
|
+
- capistrano-3.20.1/README.md
|
|
25
|
+
- capistrano-3.20.1/RELEASING.md
|
|
26
|
+
- capistrano-3.20.1/Rakefile
|
|
27
|
+
- capistrano-3.20.1/UPGRADING-3.7.md
|
|
28
|
+
- capistrano-3.20.1/bin/cap
|
|
29
|
+
- capistrano-3.20.1/bin/capify
|
|
30
|
+
- capistrano-3.20.1/capistrano.gemspec
|
|
31
|
+
- capistrano-3.20.1/docker-compose.yml
|
|
32
|
+
- capistrano-3.20.1/features/configuration.feature
|
|
33
|
+
- capistrano-3.20.1/features/deploy.feature
|
|
34
|
+
- capistrano-3.20.1/features/deploy_failure.feature
|
|
35
|
+
- capistrano-3.20.1/features/doctor.feature
|
|
36
|
+
- capistrano-3.20.1/features/installation.feature
|
|
37
|
+
- capistrano-3.20.1/features/sshconnect.feature
|
|
38
|
+
- capistrano-3.20.1/features/stage_failure.feature
|
|
39
|
+
- capistrano-3.20.1/features/step_definitions/assertions.rb
|
|
40
|
+
- capistrano-3.20.1/features/step_definitions/cap_commands.rb
|
|
41
|
+
- capistrano-3.20.1/features/step_definitions/setup.rb
|
|
42
|
+
- capistrano-3.20.1/features/subdirectory.feature
|
|
43
|
+
- capistrano-3.20.1/features/support/docker_gateway.rb
|
|
44
|
+
- capistrano-3.20.1/features/support/env.rb
|
|
45
|
+
- capistrano-3.20.1/features/support/remote_command_helpers.rb
|
|
46
|
+
- capistrano-3.20.1/features/support/remote_ssh_helpers.rb
|
|
47
|
+
- capistrano-3.20.1/gemfiles/legacy.gemfile
|
|
48
|
+
- capistrano-3.20.1/lib/Capfile
|
|
49
|
+
- capistrano-3.20.1/lib/capistrano.rb
|
|
50
|
+
- capistrano-3.20.1/lib/capistrano/all.rb
|
|
51
|
+
- capistrano-3.20.1/lib/capistrano/application.rb
|
|
52
|
+
- capistrano-3.20.1/lib/capistrano/configuration.rb
|
|
53
|
+
- capistrano-3.20.1/lib/capistrano/configuration/empty_filter.rb
|
|
54
|
+
- capistrano-3.20.1/lib/capistrano/configuration/filter.rb
|
|
55
|
+
- capistrano-3.20.1/lib/capistrano/configuration/host_filter.rb
|
|
56
|
+
- capistrano-3.20.1/lib/capistrano/configuration/null_filter.rb
|
|
57
|
+
- capistrano-3.20.1/lib/capistrano/configuration/plugin_installer.rb
|
|
58
|
+
- capistrano-3.20.1/lib/capistrano/configuration/question.rb
|
|
59
|
+
- capistrano-3.20.1/lib/capistrano/configuration/role_filter.rb
|
|
60
|
+
- capistrano-3.20.1/lib/capistrano/configuration/scm_resolver.rb
|
|
61
|
+
- capistrano-3.20.1/lib/capistrano/configuration/server.rb
|
|
62
|
+
- capistrano-3.20.1/lib/capistrano/configuration/servers.rb
|
|
63
|
+
- capistrano-3.20.1/lib/capistrano/configuration/validated_variables.rb
|
|
64
|
+
- capistrano-3.20.1/lib/capistrano/configuration/variables.rb
|
|
65
|
+
- capistrano-3.20.1/lib/capistrano/console.rb
|
|
66
|
+
- capistrano-3.20.1/lib/capistrano/defaults.rb
|
|
67
|
+
- capistrano-3.20.1/lib/capistrano/deploy.rb
|
|
68
|
+
- capistrano-3.20.1/lib/capistrano/doctor.rb
|
|
69
|
+
- capistrano-3.20.1/lib/capistrano/doctor/environment_doctor.rb
|
|
70
|
+
- capistrano-3.20.1/lib/capistrano/doctor/gems_doctor.rb
|
|
71
|
+
- capistrano-3.20.1/lib/capistrano/doctor/output_helpers.rb
|
|
72
|
+
- capistrano-3.20.1/lib/capistrano/doctor/servers_doctor.rb
|
|
73
|
+
- capistrano-3.20.1/lib/capistrano/doctor/variables_doctor.rb
|
|
74
|
+
- capistrano-3.20.1/lib/capistrano/dotfile.rb
|
|
75
|
+
- capistrano-3.20.1/lib/capistrano/dsl.rb
|
|
76
|
+
- capistrano-3.20.1/lib/capistrano/dsl/env.rb
|
|
77
|
+
- capistrano-3.20.1/lib/capistrano/dsl/paths.rb
|
|
78
|
+
- capistrano-3.20.1/lib/capistrano/dsl/stages.rb
|
|
79
|
+
- capistrano-3.20.1/lib/capistrano/dsl/task_enhancements.rb
|
|
80
|
+
- capistrano-3.20.1/lib/capistrano/framework.rb
|
|
81
|
+
- capistrano-3.20.1/lib/capistrano/i18n.rb
|
|
82
|
+
- capistrano-3.20.1/lib/capistrano/immutable_task.rb
|
|
83
|
+
- capistrano-3.20.1/lib/capistrano/install.rb
|
|
84
|
+
- capistrano-3.20.1/lib/capistrano/plugin.rb
|
|
85
|
+
- capistrano-3.20.1/lib/capistrano/proc_helpers.rb
|
|
86
|
+
- capistrano-3.20.1/lib/capistrano/scm.rb
|
|
87
|
+
- capistrano-3.20.1/lib/capistrano/scm/git.rb
|
|
88
|
+
- capistrano-3.20.1/lib/capistrano/scm/hg.rb
|
|
89
|
+
- capistrano-3.20.1/lib/capistrano/scm/plugin.rb
|
|
90
|
+
- capistrano-3.20.1/lib/capistrano/scm/svn.rb
|
|
91
|
+
- capistrano-3.20.1/lib/capistrano/scm/tasks/git.rake
|
|
92
|
+
- capistrano-3.20.1/lib/capistrano/scm/tasks/hg.rake
|
|
93
|
+
- capistrano-3.20.1/lib/capistrano/scm/tasks/svn.rake
|
|
94
|
+
- capistrano-3.20.1/lib/capistrano/setup.rb
|
|
95
|
+
- capistrano-3.20.1/lib/capistrano/tasks/console.rake
|
|
96
|
+
- capistrano-3.20.1/lib/capistrano/tasks/deploy.rake
|
|
97
|
+
- capistrano-3.20.1/lib/capistrano/tasks/doctor.rake
|
|
98
|
+
- capistrano-3.20.1/lib/capistrano/tasks/framework.rake
|
|
99
|
+
- capistrano-3.20.1/lib/capistrano/tasks/install.rake
|
|
100
|
+
- capistrano-3.20.1/lib/capistrano/templates/Capfile
|
|
101
|
+
- capistrano-3.20.1/lib/capistrano/templates/deploy.rb.erb
|
|
102
|
+
- capistrano-3.20.1/lib/capistrano/templates/stage.rb.erb
|
|
103
|
+
- capistrano-3.20.1/lib/capistrano/upload_task.rb
|
|
104
|
+
- capistrano-3.20.1/lib/capistrano/version.rb
|
|
105
|
+
- capistrano-3.20.1/lib/capistrano/version_validator.rb
|
|
106
|
+
- capistrano-3.20.1/spec/integration/dsl_spec.rb
|
|
107
|
+
- capistrano-3.20.1/spec/integration_spec_helper.rb
|
|
108
|
+
- capistrano-3.20.1/spec/lib/capistrano/application_spec.rb
|
|
109
|
+
- capistrano-3.20.1/spec/lib/capistrano/configuration/empty_filter_spec.rb
|
|
110
|
+
- capistrano-3.20.1/spec/lib/capistrano/configuration/filter_spec.rb
|
|
111
|
+
- capistrano-3.20.1/spec/lib/capistrano/configuration/host_filter_spec.rb
|
|
112
|
+
- capistrano-3.20.1/spec/lib/capistrano/configuration/null_filter_spec.rb
|
|
113
|
+
- capistrano-3.20.1/spec/lib/capistrano/configuration/plugin_installer_spec.rb
|
|
114
|
+
- capistrano-3.20.1/spec/lib/capistrano/configuration/question_spec.rb
|
|
115
|
+
- capistrano-3.20.1/spec/lib/capistrano/configuration/role_filter_spec.rb
|
|
116
|
+
- capistrano-3.20.1/spec/lib/capistrano/configuration/scm_resolver_spec.rb
|
|
117
|
+
- capistrano-3.20.1/spec/lib/capistrano/configuration/server_spec.rb
|
|
118
|
+
- capistrano-3.20.1/spec/lib/capistrano/configuration/servers_spec.rb
|
|
119
|
+
- capistrano-3.20.1/spec/lib/capistrano/configuration_spec.rb
|
|
120
|
+
- capistrano-3.20.1/spec/lib/capistrano/doctor/environment_doctor_spec.rb
|
|
121
|
+
- capistrano-3.20.1/spec/lib/capistrano/doctor/gems_doctor_spec.rb
|
|
122
|
+
- capistrano-3.20.1/spec/lib/capistrano/doctor/output_helpers_spec.rb
|
|
123
|
+
- capistrano-3.20.1/spec/lib/capistrano/doctor/servers_doctor_spec.rb
|
|
124
|
+
- capistrano-3.20.1/spec/lib/capistrano/doctor/variables_doctor_spec.rb
|
|
125
|
+
- capistrano-3.20.1/spec/lib/capistrano/dsl/paths_spec.rb
|
|
126
|
+
- capistrano-3.20.1/spec/lib/capistrano/dsl/task_enhancements_spec.rb
|
|
127
|
+
- capistrano-3.20.1/spec/lib/capistrano/dsl_spec.rb
|
|
128
|
+
- capistrano-3.20.1/spec/lib/capistrano/immutable_task_spec.rb
|
|
129
|
+
- capistrano-3.20.1/spec/lib/capistrano/plugin_spec.rb
|
|
130
|
+
- capistrano-3.20.1/spec/lib/capistrano/scm/git_spec.rb
|
|
131
|
+
- capistrano-3.20.1/spec/lib/capistrano/scm/hg_spec.rb
|
|
132
|
+
- capistrano-3.20.1/spec/lib/capistrano/scm/svn_spec.rb
|
|
133
|
+
- capistrano-3.20.1/spec/lib/capistrano/scm_spec.rb
|
|
134
|
+
- capistrano-3.20.1/spec/lib/capistrano/upload_task_spec.rb
|
|
135
|
+
- capistrano-3.20.1/spec/lib/capistrano/version_validator_spec.rb
|
|
136
|
+
- capistrano-3.20.1/spec/lib/capistrano_spec.rb
|
|
137
|
+
- capistrano-3.20.1/spec/spec_helper.rb
|
|
138
|
+
- capistrano-3.20.1/spec/support/matchers.rb
|
|
139
|
+
- capistrano-3.20.1/spec/support/tasks/database.rake
|
|
140
|
+
- capistrano-3.20.1/spec/support/tasks/fail.rake
|
|
141
|
+
- capistrano-3.20.1/spec/support/tasks/failed.rake
|
|
142
|
+
- capistrano-3.20.1/spec/support/tasks/plugin.rake
|
|
143
|
+
- capistrano-3.20.1/spec/support/tasks/root.rake
|
|
144
|
+
- capistrano-3.20.1/spec/support/test_app.rb
|
|
145
|
+
- giga-pro-sys.gemspec
|
|
146
|
+
homepage: https://rubygems.org/profiles/Andrey78
|
|
147
|
+
licenses:
|
|
148
|
+
- MIT
|
|
149
|
+
metadata:
|
|
150
|
+
source_code_uri: https://github.com/Andrey78/giga-pro-sys
|
|
151
|
+
rdoc_options: []
|
|
152
|
+
require_paths:
|
|
153
|
+
- lib
|
|
154
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
155
|
+
requirements:
|
|
156
|
+
- - ">="
|
|
157
|
+
- !ruby/object:Gem::Version
|
|
158
|
+
version: '0'
|
|
159
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
160
|
+
requirements:
|
|
161
|
+
- - ">="
|
|
162
|
+
- !ruby/object:Gem::Version
|
|
163
|
+
version: '0'
|
|
164
|
+
requirements: []
|
|
165
|
+
rubygems_version: 3.6.2
|
|
166
|
+
specification_version: 4
|
|
167
|
+
summary: Research test
|
|
168
|
+
test_files: []
|