releasecop 0.0.1 → 0.0.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/LICENSE.txt +1 -1
- data/README.md +12 -9
- data/lib/releasecop/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 007acf7253fbef0230fa164464cbf29d5490d257
|
|
4
|
+
data.tar.gz: a528c764464983d2b1d42e57a78fe59ab81b0563
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 17ed584904a0b853851e3a07068497543751aaaeafecc13d2f943fb0a9e926efd992a68e6148ab0d6edb3482bcbb132f029d12f4a52ac8cb7f88dfcb3dcc54b2
|
|
7
|
+
data.tar.gz: fd5060a2c0abf9b58c3d7c29129801dfc8633fa5de55c21333c5b6146759be9badea6f03adff2a04f7f47a5cf8951803d20120e098cfb8cc2b43cfb7ae44ad10
|
data/LICENSE.txt
CHANGED
data/README.md
CHANGED
|
@@ -12,7 +12,7 @@ Open the manifest file, which defines projects to monitor:
|
|
|
12
12
|
|
|
13
13
|
releasecop edit
|
|
14
14
|
|
|
15
|
-
In the manifest, each project lists the
|
|
15
|
+
In the manifest, each project lists the environments to which code is deployed _in order of promotion_. Environments are defined by a `name` and `git` remote. E.g., a github repo for development and heroku apps for staging and production. Optionally, an environment can include a `branch`. E.g.:
|
|
16
16
|
|
|
17
17
|
{
|
|
18
18
|
"projects": {
|
|
@@ -21,9 +21,10 @@ In the manifest, each project lists the repositories/branches to whch code is de
|
|
|
21
21
|
{"name": "staging", "git": "git@heroku.com:charge-staging.git"},
|
|
22
22
|
{"name": "production", "git": "git@heroku.com:charge-production.git"}
|
|
23
23
|
],
|
|
24
|
-
"
|
|
25
|
-
{"name": "master", "git": "git@github.com:artsy/
|
|
26
|
-
{"name": "
|
|
24
|
+
"heat": [
|
|
25
|
+
{"name": "master", "git": "git@github.com:artsy/heat.git"},
|
|
26
|
+
{"name": "master-succeeded", "git": "git@github.com:artsy/heat.git", "branch": "master-succeeded"},
|
|
27
|
+
{"name": "production", "git": "git@github.com:artsy/heat.git", "branch": "production"}
|
|
27
28
|
]
|
|
28
29
|
}
|
|
29
30
|
}
|
|
@@ -37,13 +38,15 @@ Example output:
|
|
|
37
38
|
charge...
|
|
38
39
|
staging is up-to-date with master
|
|
39
40
|
production is up-to-date with staging
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
41
|
+
heat...
|
|
42
|
+
master-succeeded is up-to-date with master
|
|
43
|
+
production is behind master-succeeded by:
|
|
44
|
+
4557f60 2015-03-24 Upgrade to 3.9 (timsmith)
|
|
45
|
+
f33acc4 2015-03-25 Add support for avatars (janeR)
|
|
43
46
|
2 project(s) checked. 1 environment(s) out-of-date.
|
|
44
47
|
|
|
45
|
-
To check all:
|
|
48
|
+
To check all projects:
|
|
46
49
|
|
|
47
50
|
releasecop check --all
|
|
48
51
|
|
|
49
|
-
Copyright (c) 2015 Joey Aghion
|
|
52
|
+
Copyright (c) 2015 Joey Aghion, Artsy
|
data/lib/releasecop/version.rb
CHANGED