rollo 0.6.0 → 0.8.0.pre.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/CODE_OF_CONDUCT.md +1 -1
- data/Gemfile +4 -2
- data/Gemfile.lock +1205 -536
- data/LICENSE.txt +1 -1
- data/README.md +1 -1
- data/Rakefile +136 -10
- data/bin/console +4 -3
- data/lib/rollo/commands/hosts.rb +125 -79
- data/lib/rollo/commands/main.rb +67 -52
- data/lib/rollo/commands/services.rb +92 -57
- data/lib/rollo/commands.rb +2 -0
- data/lib/rollo/model/host.rb +4 -2
- data/lib/rollo/model/host_cluster.rb +34 -23
- data/lib/rollo/model/scaling_activity.rb +8 -6
- data/lib/rollo/model/service.rb +29 -20
- data/lib/rollo/model/service_cluster.rb +19 -14
- data/lib/rollo/model.rb +2 -0
- data/lib/rollo/version.rb +3 -1
- data/lib/rollo.rb +3 -1
- metadata +149 -41
- data/.envrc +0 -5
- data/.gitignore +0 -31
- data/.rspec +0 -3
- data/.ruby-version +0 -1
- data/.travis.yml +0 -5
- data/exe/rollo +0 -5
- data/go +0 -61
- data/rollo.gemspec +0 -37
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: e4d1f1dc1d247965b87400b20ea2bdace70e86de99c3077c2099424495b4f0ff
|
4
|
+
data.tar.gz: 2afbe258f55d34afd014192248da4706d77ec9274c40380535ac8db5d7db845e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '0735697f3e55a821871564b52e39389c9291b7ac91062eabc856ee3ebfff66b85a7e8f8de57f99d95127d74c0f5c525bf921b5117a345060fd289718625c57ba'
|
7
|
+
data.tar.gz: 84f04ad427873d11d6c2a46d244ef3d560d181217010bf36838f074e571ed3ed9333fcd1cacaee5ac3d9b854c4d0882524f9aa2a35c4a1d9ca123e9058b08973
|
data/CODE_OF_CONDUCT.md
CHANGED
@@ -55,7 +55,7 @@ further defined and clarified by project maintainers.
|
|
55
55
|
## Enforcement
|
56
56
|
|
57
57
|
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
58
|
-
reported by contacting the project team at
|
58
|
+
reported by contacting the project team at maintainers@infrablocks.io. All
|
59
59
|
complaints will be reviewed and investigated and will result in a response that
|
60
60
|
is deemed necessary and appropriate to the circumstances. The project team is
|
61
61
|
obligated to maintain confidentiality with regard to the reporter of an
|
data/Gemfile
CHANGED
@@ -1,6 +1,8 @@
|
|
1
|
-
|
1
|
+
# frozen_string_literal: true
|
2
2
|
|
3
|
-
|
3
|
+
source 'https://rubygems.org'
|
4
|
+
|
5
|
+
git_source(:github) { |repo_name| "https://github.com/#{repo_name}" }
|
4
6
|
|
5
7
|
# Specify your gem's dependencies in rollo.gemspec
|
6
8
|
gemspec
|