rollo 0.9.0.pre.1 → 0.9.0.pre.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/CODE_OF_CONDUCT.md +13 -12
- data/Gemfile.lock +869 -742
- data/Rakefile +56 -9
- data/lib/rollo/commands/main.rb +2 -2
- data/lib/rollo/model/host_cluster.rb +2 -2
- data/lib/rollo/model/service_cluster.rb +1 -1
- data/lib/rollo/version.rb +1 -1
- data/rollo.gemspec +2 -0
- metadata +30 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 59f81481dc13186c78d9b945df6251f18b62645e45e23933ead07afdba7289bf
|
|
4
|
+
data.tar.gz: 5faf927b1705926ae6b70556a62df75061498c841472f07de95507a78025b3d1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b8dd9d70528ea25ae0be164c6ac561e0fb5ab2566adc207f734bd81a9ac18d0bb7692f9c582986ee7dbf7941a6ede2f388701fa6b1d87995f9ef3d6592efc0f3
|
|
7
|
+
data.tar.gz: e0c9cdd3d0d485f9766f94816fbae4bb3704dee709d0ae374dda3c93036193b9a1a02f54a804b50c261c97ed509562163a3f56d89b28213e898800ccb57adf94
|
data/CODE_OF_CONDUCT.md
CHANGED
|
@@ -5,9 +5,9 @@
|
|
|
5
5
|
In the interest of fostering an open and welcoming environment, we as
|
|
6
6
|
contributors and maintainers pledge to making participation in our project and
|
|
7
7
|
our community a harassment-free experience for everyone, regardless of age, body
|
|
8
|
-
size, disability, ethnicity, gender identity and expression, level of
|
|
9
|
-
experience, nationality, personal appearance, race, religion, or sexual
|
|
10
|
-
|
|
8
|
+
size, disability, ethnicity, gender identity and expression, level of
|
|
9
|
+
experience, nationality, personal appearance, race, religion, or sexual identity
|
|
10
|
+
and orientation.
|
|
11
11
|
|
|
12
12
|
## Our Standards
|
|
13
13
|
|
|
@@ -23,7 +23,7 @@ include:
|
|
|
23
23
|
Examples of unacceptable behavior by participants include:
|
|
24
24
|
|
|
25
25
|
* The use of sexualized language or imagery and unwelcome sexual attention or
|
|
26
|
-
advances
|
|
26
|
+
advances
|
|
27
27
|
* Trolling, insulting/derogatory comments, and personal or political attacks
|
|
28
28
|
* Public or private harassment
|
|
29
29
|
* Publishing others' private information, such as a physical or electronic
|
|
@@ -37,11 +37,11 @@ Project maintainers are responsible for clarifying the standards of acceptable
|
|
|
37
37
|
behavior and are expected to take appropriate and fair corrective action in
|
|
38
38
|
response to any instances of unacceptable behavior.
|
|
39
39
|
|
|
40
|
-
Project maintainers have the right and responsibility to remove, edit, or
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
40
|
+
Project maintainers have the right and responsibility to remove, edit, or reject
|
|
41
|
+
comments, commits, code, wiki edits, issues, and other contributions that are
|
|
42
|
+
not aligned to this Code of Conduct, or to ban temporarily or permanently any
|
|
43
|
+
contributor for other behaviors that they deem inappropriate, threatening,
|
|
44
|
+
offensive, or harmful.
|
|
45
45
|
|
|
46
46
|
## Scope
|
|
47
47
|
|
|
@@ -58,8 +58,8 @@ Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
|
|
58
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
|
-
obligated to maintain confidentiality with regard to the reporter of an
|
|
62
|
-
incident. Further details of specific enforcement policies may be posted
|
|
61
|
+
obligated to maintain confidentiality with regard to the reporter of an
|
|
62
|
+
incident. Further details of specific enforcement policies may be posted
|
|
63
63
|
separately.
|
|
64
64
|
|
|
65
65
|
Project maintainers who do not follow or enforce the Code of Conduct in good
|
|
@@ -68,8 +68,9 @@ members of the project's leadership.
|
|
|
68
68
|
|
|
69
69
|
## Attribution
|
|
70
70
|
|
|
71
|
-
This Code of Conduct is adapted from the [Contributor Covenant][homepage],
|
|
71
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage],
|
|
72
72
|
version 1.4, available at [http://contributor-covenant.org/version/1/4][version]
|
|
73
73
|
|
|
74
74
|
[homepage]: http://contributor-covenant.org
|
|
75
|
+
|
|
75
76
|
[version]: http://contributor-covenant.org/version/1/4/
|