scout-camp 0.1.1 → 0.1.2
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/VERSION +1 -1
- data/lib/scout/aws/s3.rb +5 -0
- data/scout-camp.gemspec +77 -0
- metadata +2 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b22b7fc83e0cee051edf923ffd40bfaa3759f78eb59d80c7abb0b120be250682
|
4
|
+
data.tar.gz: aa35cfafdb9ac3aeee81b247c1f81e1ab3bfb638b51c08108eb88e23940254f2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7c48331d38a61928b7de2aa8c94d04a6feaf11e60bedcac7bde2be0ecb242a78f622b519ee7dccc2faefa42d721ed58fd22a3ce58202641ce92c67c2b3d90988
|
7
|
+
data.tar.gz: c6ede844ae01c2acffe2150b88b2ab1b674fe2e3937161da471a0a03be710d3cbf728a2a353be840f5ef1a3cdab20a1660d41bd579cbc4dc30b6281b890a8e93
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.1.
|
1
|
+
0.1.2
|
data/lib/scout/aws/s3.rb
CHANGED
data/scout-camp.gemspec
ADDED
@@ -0,0 +1,77 @@
|
|
1
|
+
# Generated by juwelier
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
3
|
+
# Instead, edit Juwelier::Tasks in Rakefile, and run 'rake gemspec'
|
4
|
+
# -*- encoding: utf-8 -*-
|
5
|
+
# stub: scout-camp 0.1.2 ruby lib
|
6
|
+
|
7
|
+
Gem::Specification.new do |s|
|
8
|
+
s.name = "scout-camp".freeze
|
9
|
+
s.version = "0.1.2".freeze
|
10
|
+
|
11
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
|
12
|
+
s.require_paths = ["lib".freeze]
|
13
|
+
s.authors = ["Miguel Vazquez".freeze]
|
14
|
+
s.date = "2025-03-19"
|
15
|
+
s.description = "Functionalities to deploy and use scouts in remote servers like AWS".freeze
|
16
|
+
s.email = "mikisvaz@gmail.com".freeze
|
17
|
+
s.executables = ["scout-camp".freeze]
|
18
|
+
s.extra_rdoc_files = [
|
19
|
+
"LICENSE",
|
20
|
+
"README.md"
|
21
|
+
]
|
22
|
+
s.files = [
|
23
|
+
".vimproject",
|
24
|
+
"LICENSE",
|
25
|
+
"README.md",
|
26
|
+
"Rakefile",
|
27
|
+
"VERSION",
|
28
|
+
"bin/scout-camp",
|
29
|
+
"lib/scout-camp.rb",
|
30
|
+
"lib/scout/aws/s3.rb",
|
31
|
+
"lib/scout/offsite.rb",
|
32
|
+
"lib/scout/offsite/exceptions.rb",
|
33
|
+
"lib/scout/offsite/ssh.rb",
|
34
|
+
"lib/scout/offsite/step.rb",
|
35
|
+
"lib/scout/offsite/sync.rb",
|
36
|
+
"lib/scout/terraform_dsl.rb",
|
37
|
+
"lib/scout/terraform_dsl/deployment.rb",
|
38
|
+
"lib/scout/terraform_dsl/util.rb",
|
39
|
+
"scout-camp.gemspec",
|
40
|
+
"scout_commands/offsite",
|
41
|
+
"scout_commands/terraform/add",
|
42
|
+
"scout_commands/terraform/apply",
|
43
|
+
"scout_commands/terraform/destroy",
|
44
|
+
"scout_commands/terraform/list",
|
45
|
+
"scout_commands/terraform/remove",
|
46
|
+
"scout_commands/terraform/status",
|
47
|
+
"share/terraform/aws/bucket/main.tf",
|
48
|
+
"share/terraform/aws/bucket/output.tf",
|
49
|
+
"share/terraform/aws/bucket/variables.tf",
|
50
|
+
"share/terraform/aws/cluster/main.tf",
|
51
|
+
"share/terraform/aws/cluster/output.tf",
|
52
|
+
"share/terraform/aws/cluster/variables.tf",
|
53
|
+
"share/terraform/aws/host/locals.tf",
|
54
|
+
"share/terraform/aws/host/main.tf",
|
55
|
+
"share/terraform/aws/host/output.tf",
|
56
|
+
"share/terraform/aws/host/variables.tf",
|
57
|
+
"share/terraform/aws/lambda/main.tf",
|
58
|
+
"share/terraform/aws/lambda/variables.tf",
|
59
|
+
"share/terraform/aws/provider/data.tf",
|
60
|
+
"share/terraform/aws/provider/output.tf",
|
61
|
+
"test/scout/aws/test_s3.rb",
|
62
|
+
"test/scout/offsite/test_ssh.rb",
|
63
|
+
"test/scout/offsite/test_step.rb",
|
64
|
+
"test/scout/offsite/test_sync.rb",
|
65
|
+
"test/scout/test_terraform_dsl.rb",
|
66
|
+
"test/test_helper.rb"
|
67
|
+
]
|
68
|
+
s.homepage = "http://github.com/mikisvaz/scout-camp".freeze
|
69
|
+
s.licenses = ["MIT".freeze]
|
70
|
+
s.rubygems_version = "3.6.5".freeze
|
71
|
+
s.summary = "Deploy you scouts".freeze
|
72
|
+
|
73
|
+
s.specification_version = 4
|
74
|
+
|
75
|
+
s.add_runtime_dependency(%q<scout-essentials>.freeze, [">= 0".freeze])
|
76
|
+
end
|
77
|
+
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: scout-camp
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Miguel Vazquez
|
@@ -48,6 +48,7 @@ files:
|
|
48
48
|
- lib/scout/terraform_dsl.rb
|
49
49
|
- lib/scout/terraform_dsl/deployment.rb
|
50
50
|
- lib/scout/terraform_dsl/util.rb
|
51
|
+
- scout-camp.gemspec
|
51
52
|
- scout_commands/offsite
|
52
53
|
- scout_commands/terraform/add
|
53
54
|
- scout_commands/terraform/apply
|