opzworks 0.12.1 → 0.12.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: bbebdf7fc54884e9a8076a28708bd3df97fa68e5
4
- data.tar.gz: 55dbc9f1cd1a547229ad07489d37798cbca74ea9
3
+ metadata.gz: bcd741d5868f5f985989a0f93ef42c4c96a77d1e
4
+ data.tar.gz: 187694894b5e955f00b7ff7f977950f336ef0019
5
5
  SHA512:
6
- metadata.gz: b957b351bb924c2a8a6b15097d961b36287585dd9c9e1c2e1b33e2e35d6dca169aa45eb3c5118ad08fd6c84f18620b9f2fb5c0c9f57357ab65e5a88a6665a2de
7
- data.tar.gz: c1c830540e7a50b9ce1d09e766ff6a2413d99592541537da1fcb58e758bd379a7df89ed13f7938b4a3321f11685d4bb261fd834278cd3824aabef1529c243f43
6
+ metadata.gz: dad99d1a3a6dc7185415fde0be6489108e8de41145b89a0569fb951c145ae55a669660d4d28c42f880a547a1da59b596dc5b4bfe4099aa3dcd1f653ee8e01b87
7
+ data.tar.gz: e28b6d2c5c1fd16c9866ce5fb710f0a44f94bbfc5370b2cfa0dc59f5ea6e4117fc852b672f671300f177f786478614a0a971c16f9a3bcc234892868b159016b5
data/CHANGELOG.md CHANGED
@@ -1,6 +1,10 @@
1
1
  changelog
2
2
  =========
3
3
 
4
+ 0.12.2
5
+ ------
6
+ * bug fix
7
+
4
8
  0.12.1
5
9
  ------
6
10
  * lint
@@ -120,7 +120,7 @@ module OpzWorks
120
120
  bucket: s3_bucket,
121
121
  key: "#{@s3_path}/#{cookbook_tarball}"
122
122
  )
123
- rescue Aws::S3::Errors::ServiceError =>
123
+ rescue Aws::S3::Errors::ServiceError
124
124
  puts "No existing #{cookbook_tarball} in #{s3_bucket} to backup, continuing...".foreground(:yellow)
125
125
  else
126
126
  puts "Backing up existing #{cookbook_tarball} to #{@s3_path}/#{cookbook_tarball}-#{time}".foreground(:green)
data/lib/opzworks/meta.rb CHANGED
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
  module OpzWorks
3
- VERSION = '0.12.1'.freeze
3
+ VERSION = '0.12.2'.freeze
4
4
  AUTHORS = ['Grant Heffernan', 'Mapzen'].freeze
5
5
  EMAIL = ['grant@mapzen.com'].freeze
6
6
  DESCRIPTION = 'OpzWorks Utilities'.freeze
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: opzworks
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.12.1
4
+ version: 0.12.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Grant Heffernan