cloudstrap 0.49.4.pre → 0.49.8.pre
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 +5 -5
- data/.rubocop.yml +5 -0
- data/LICENSE.txt +2 -1
- data/README.org +15 -0
- data/cloudstrap.gemspec +22 -20
- metadata +4 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: d35feb796e87c8583df509bd09e641d23c4a229afc1510e4011cb4c1d67c37e7
|
|
4
|
+
data.tar.gz: aef21b75f55170bffefaa88e42fefc244dbe4168cb60d6c92f1820fb1a6f2bd3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz: '
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: '0938166b99bc9c92ffabca834e7c822b87645b880656d964aa03f21f34d9522ebf1c367530ed88668ff5975c5253213632902d149d23c0cd4590a190e92567ed'
|
|
7
|
+
data.tar.gz: d98a51705c8cb77de1fba0def2c51dc9570665cb5a8a22303a7d4369da358cba4893a1f6fb8be8303be861ff472dda0e58605158d8f60cf61625da640a03e635
|
data/LICENSE.txt
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
|
|
2
2
|
The MIT License (MIT)
|
|
3
|
-
Copyright © 2016 Chris Olstrom <chris@olstrom.com>
|
|
3
|
+
Copyright © 2016-2018 Chris Olstrom <chris@olstrom.com>
|
|
4
|
+
Copyright © 2016-2018 SUSE LLC
|
|
4
5
|
|
|
5
6
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
7
|
of this software and associated documentation files (the “Software”), to deal
|
data/README.org
CHANGED
|
@@ -2,6 +2,21 @@
|
|
|
2
2
|
#+SUBTITLE: Strapping Boots to Clouds
|
|
3
3
|
#+LATEX: \pagebreak
|
|
4
4
|
|
|
5
|
+
* Status
|
|
6
|
+
|
|
7
|
+
Cloudstrap is not being actively developed right now, due to lack of available
|
|
8
|
+
AWS resources for testing. The current release (=0.49.4=) is feature-complete,
|
|
9
|
+
with few known bugs (see Issues on GitHub).
|
|
10
|
+
|
|
11
|
+
- Issues should still be reported, and will be fixed if development resumes.
|
|
12
|
+
- Pull Requests are welcome, and will continue to be reviewed.
|
|
13
|
+
|
|
14
|
+
There are a few very minor changes I would like to see before I would be
|
|
15
|
+
comfortable calling this =1.0.0=, mostly regarding namespacing of environment
|
|
16
|
+
variables (=BOOTSTRAP_*= -> =CLOUDSTRAP_*=), and restructuring the CLI
|
|
17
|
+
(~cloudstrap-teardown~ is not Cloudstrap-specific, and should be a standalone
|
|
18
|
+
tool).
|
|
19
|
+
|
|
5
20
|
* Overview
|
|
6
21
|
|
|
7
22
|
=cloudstrap= straps your boots to the cloud. Think of it as sort of a
|
data/cloudstrap.gemspec
CHANGED
|
@@ -1,32 +1,34 @@
|
|
|
1
1
|
Gem::Specification.new do |gem|
|
|
2
|
+
tag = `git describe --tags --abbrev=0`.chomp
|
|
3
|
+
|
|
2
4
|
gem.name = 'cloudstrap'
|
|
3
|
-
gem.version =
|
|
5
|
+
gem.version = "#{tag}.pre"
|
|
4
6
|
gem.licenses = 'MIT'
|
|
5
7
|
gem.authors = ['Chris Olstrom']
|
|
6
8
|
gem.email = 'chris@olstrom.com'
|
|
7
9
|
gem.homepage = 'https://github.com/colstrom/cloudstrap'
|
|
8
10
|
gem.summary = 'Strapping Boots to Clouds'
|
|
9
11
|
|
|
10
|
-
gem.files = `git ls-files`.split("\
|
|
11
|
-
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\
|
|
12
|
-
gem.executables = `git ls-files -- bin/*`.split("\
|
|
12
|
+
gem.files = `git ls-files -z`.split("\x0")
|
|
13
|
+
gem.test_files = `git ls-files -z -- {test,spec,features}/*`.split("\x0")
|
|
14
|
+
gem.executables = `git ls-files -z -- bin/*`.split("\x0").map { |f| File.basename(f) }
|
|
13
15
|
gem.require_paths = ['lib']
|
|
14
16
|
|
|
15
|
-
gem.add_runtime_dependency 'aws-sdk',
|
|
16
|
-
gem.add_runtime_dependency 'burdened-acrobat', '~> 0.3',
|
|
17
|
-
gem.add_runtime_dependency 'concurrent-ruby',
|
|
18
|
-
gem.add_runtime_dependency 'contracts',
|
|
19
|
-
gem.add_runtime_dependency 'faraday',
|
|
20
|
-
gem.add_runtime_dependency 'ipaddress',
|
|
21
|
-
gem.add_runtime_dependency 'java-properties',
|
|
22
|
-
gem.add_runtime_dependency 'moneta',
|
|
23
|
-
gem.add_runtime_dependency 'multi_json',
|
|
24
|
-
gem.add_runtime_dependency 'path53',
|
|
25
|
-
gem.add_runtime_dependency 'retries',
|
|
26
|
-
gem.add_runtime_dependency 'sshkey',
|
|
27
|
-
gem.add_runtime_dependency 'sshkit',
|
|
28
|
-
gem.add_runtime_dependency 'tty-spinner',
|
|
29
|
-
gem.add_runtime_dependency 'tty-table',
|
|
17
|
+
gem.add_runtime_dependency 'aws-sdk', '~> 2.7', '>= 2.7.0'
|
|
18
|
+
gem.add_runtime_dependency 'burdened-acrobat', '~> 0.3', '>= 0.3.4'
|
|
19
|
+
gem.add_runtime_dependency 'concurrent-ruby', '~> 1.0', '>= 1.0.0'
|
|
20
|
+
gem.add_runtime_dependency 'contracts', '~> 0.14', '>= 0.14.0', '<= 0.15.0'
|
|
21
|
+
gem.add_runtime_dependency 'faraday', '~> 0.11', '>= 0.11.0'
|
|
22
|
+
gem.add_runtime_dependency 'ipaddress', '~> 0.8', '>= 0.8.0'
|
|
23
|
+
gem.add_runtime_dependency 'java-properties', '~> 0.2', '>= 0.2.0'
|
|
24
|
+
gem.add_runtime_dependency 'moneta', '~> 0.8', '>= 0.8.0'
|
|
25
|
+
gem.add_runtime_dependency 'multi_json', '~> 1.12', '>= 1.12.0'
|
|
26
|
+
gem.add_runtime_dependency 'path53', '~> 0.4', '>= 0.4.8'
|
|
27
|
+
gem.add_runtime_dependency 'retries', '~> 0.0.5', '>= 0.0.5'
|
|
28
|
+
gem.add_runtime_dependency 'sshkey', '~> 1.9', '>= 1.9.0'
|
|
29
|
+
gem.add_runtime_dependency 'sshkit', '~> 1.12', '>= 1.12.0'
|
|
30
|
+
gem.add_runtime_dependency 'tty-spinner', '~> 0.4', '>= 0.4.0'
|
|
31
|
+
gem.add_runtime_dependency 'tty-table', '~> 0.8', '>= 0.8.0'
|
|
30
32
|
|
|
31
|
-
gem.add_runtime_dependency 'pastel',
|
|
33
|
+
gem.add_runtime_dependency 'pastel', '~> 0.7', '>= 0.7.0'
|
|
32
34
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: cloudstrap
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.49.
|
|
4
|
+
version: 0.49.8.pre
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Chris Olstrom
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2018-03-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk
|
|
@@ -350,6 +350,7 @@ extensions: []
|
|
|
350
350
|
extra_rdoc_files: []
|
|
351
351
|
files:
|
|
352
352
|
- ".gitignore"
|
|
353
|
+
- ".rubocop.yml"
|
|
353
354
|
- LICENSE.txt
|
|
354
355
|
- README.org
|
|
355
356
|
- bin/cloudstrap
|
|
@@ -402,7 +403,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
402
403
|
version: 1.3.1
|
|
403
404
|
requirements: []
|
|
404
405
|
rubyforge_project:
|
|
405
|
-
rubygems_version: 2.6
|
|
406
|
+
rubygems_version: 2.7.6
|
|
406
407
|
signing_key:
|
|
407
408
|
specification_version: 4
|
|
408
409
|
summary: Strapping Boots to Clouds
|