releasecop 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 158909c81fb2737e9a7d229325093bc2e653dc33
4
- data.tar.gz: 6041f1fc60e6e0769a702394794bdf7a18d1fa14
3
+ metadata.gz: 007acf7253fbef0230fa164464cbf29d5490d257
4
+ data.tar.gz: a528c764464983d2b1d42e57a78fe59ab81b0563
5
5
  SHA512:
6
- metadata.gz: b13adbfc0815e11425e9bdef6d7b6fcff6ddf1338fb0ad10ab629fbfda535955dcdc189fd70fbdf1c511741a8d1470b25d8270ec6d2fb486a9f1484bc2d09abe
7
- data.tar.gz: 4685de9511b70429d55e73ce5becd6d00f9324bf2893fdfd3d59294fca69b825d23cbe8355b544fd6ae1ce4180d9f0fe658059ce65cad66da482fb7369eb8161
6
+ metadata.gz: 17ed584904a0b853851e3a07068497543751aaaeafecc13d2f943fb0a9e926efd992a68e6148ab0d6edb3482bcbb132f029d12f4a52ac8cb7f88dfcb3dcc54b2
7
+ data.tar.gz: fd5060a2c0abf9b58c3d7c29129801dfc8633fa5de55c21333c5b6146759be9badea6f03adff2a04f7f47a5cf8951803d20120e098cfb8cc2b43cfb7ae44ad10
data/LICENSE.txt CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2015 Joey Aghion
1
+ Copyright (c) 2015 Joey Aghion, Artsy
2
2
 
3
3
  MIT License
4
4
 
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 repositories/branches to whch code is deployed _in order of promotion_. E.g., master branch for development, a heroku remote for staging, and a different heroku remote for production. An example manifest:
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
- "lattice": [
25
- {"name": "master", "git": "git@github.com:artsy/lattice.git"},
26
- {"name": "production", "git": "git@heroku.com:artsy-lattice-production.git"}
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
- lattice...
41
- production is behind master by:
42
- 4557f60 2015-02-02 upgrade to 3.9 (joeschmo19)
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
@@ -1,3 +1,3 @@
1
1
  module Releasecop
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: releasecop
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Joey Aghion