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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: e0fa82c6a3d6576a9b5ac2ecfdd2005eff18fbfa
4
- data.tar.gz: d552a4739069272d57a2693b271fec6e3da1c1c6
2
+ SHA256:
3
+ metadata.gz: d35feb796e87c8583df509bd09e641d23c4a229afc1510e4011cb4c1d67c37e7
4
+ data.tar.gz: aef21b75f55170bffefaa88e42fefc244dbe4168cb60d6c92f1820fb1a6f2bd3
5
5
  SHA512:
6
- metadata.gz: '09c3fb239128ac633334479f1634ad4b2f027fd531c7b596104baee63c72b1de7abbd8fe04e739f95b9de964d67145542144ab4cb8b0c667165788859ed9be0b'
7
- data.tar.gz: 550c6cab977fbe183364f9920d483a0b01fb9cbd45495bca4495411f99c550a51e707b85de48cb13b61e1bd66d40d3444c41ea96268d368694de6a91f2dda972
6
+ metadata.gz: '0938166b99bc9c92ffabca834e7c822b87645b880656d964aa03f21f34d9522ebf1c367530ed88668ff5975c5253213632902d149d23c0cd4590a190e92567ed'
7
+ data.tar.gz: d98a51705c8cb77de1fba0def2c51dc9570665cb5a8a22303a7d4369da358cba4893a1f6fb8be8303be861ff472dda0e58605158d8f60cf61625da640a03e635
@@ -0,0 +1,5 @@
1
+ ---
2
+
3
+ Style:
4
+ LambdaCall:
5
+ Enabled: false
@@ -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
@@ -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 = `git describe --tags --abbrev=0`.chomp + '.pre'
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("\n")
11
- gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
12
- gem.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
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', '~> 2.7', '>= 2.7.0'
16
- gem.add_runtime_dependency 'burdened-acrobat', '~> 0.3', '>= 0.3.4'
17
- gem.add_runtime_dependency 'concurrent-ruby', '~> 1.0', '>= 1.0.0'
18
- gem.add_runtime_dependency 'contracts', '~> 0.14', '>= 0.14.0', '<= 0.15.0'
19
- gem.add_runtime_dependency 'faraday', '~> 0.11', '>= 0.11.0'
20
- gem.add_runtime_dependency 'ipaddress', '~> 0.8', '>= 0.8.0'
21
- gem.add_runtime_dependency 'java-properties', '~> 0.2', '>= 0.2.0'
22
- gem.add_runtime_dependency 'moneta', '~> 0.8', '>= 0.8.0'
23
- gem.add_runtime_dependency 'multi_json', '~> 1.12', '>= 1.12.0'
24
- gem.add_runtime_dependency 'path53', '~> 0.4', '>= 0.4.8'
25
- gem.add_runtime_dependency 'retries', '~> 0.0.5', '>= 0.0.5'
26
- gem.add_runtime_dependency 'sshkey', '~> 1.9', '>= 1.9.0'
27
- gem.add_runtime_dependency 'sshkit', '~> 1.12', '>= 1.12.0'
28
- gem.add_runtime_dependency 'tty-spinner', '~> 0.4', '>= 0.4.0'
29
- gem.add_runtime_dependency 'tty-table', '~> 0.8', '>= 0.8.0'
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', '~> 0.7', '>= 0.7.0'
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.pre
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: 2017-03-06 00:00:00.000000000 Z
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.8
406
+ rubygems_version: 2.7.6
406
407
  signing_key:
407
408
  specification_version: 4
408
409
  summary: Strapping Boots to Clouds