opzworks 0.5.4 → 0.5.5

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: 120777c006f6e6004d57eeae94313c49c9d1b34f
4
- data.tar.gz: 3cfb9ca5d2bdc87f3db4fefafd939961f6fceae8
3
+ metadata.gz: 3a3ec197d9a15caa3c422eca7fa09e28b357b326
4
+ data.tar.gz: e29fb5ca495ed84fb80c8ae8392727fcddf09e1d
5
5
  SHA512:
6
- metadata.gz: 301271f79ead0241b0a9149d20dd15ce809a0a8caee03e329cf2ece78e52e77a18fd2dffe6781f6ba445daaa41926ab61c3adc7eb774a0691363f70b6f348e37
7
- data.tar.gz: 1f9456d3f02d08dbeae38db4243caf65d446651c9d8015172cbc437a247502a110127831b1596b5560caeb1e6bd7f2fde9178d9f8e76e53961c80a5b35f0ec96
6
+ metadata.gz: 196ebdad3c774d22e1f17b05735ad0556c5c7da3089226a19725cd69813d7c351e1ec5da96550867de6f321de256cac1b4f4830d90b271280b2069dbcc2ff5b5
7
+ data.tar.gz: c4ee31fe4df370b05c1e571eb99a069ef72b2a9a3b0639b3c9f69f82f5addf6eab1ca888870b5b94fa181394550b04c04a978515cc1941992af4ae994878f813
data/CHANGELOG.md CHANGED
@@ -1,6 +1,10 @@
1
1
  changelog
2
2
  =========
3
3
 
4
+ 0.5.5
5
+ -----
6
+ * remove Berksfile.opsworks detection, deprecated
7
+
4
8
  0.5.1
5
9
  -----
6
10
  * remove detection of chef stack for update custom cookbooks... the cmdline flag rules
@@ -68,26 +68,17 @@ module OpzWorks
68
68
  s3_bucket = config.berks_s3_bucket || 'opzworks'
69
69
  overrides = 'overrides'
70
70
 
71
- if File.exist?("#{@target_path}/Berksfile.opsworks")
72
- puts 'Remote management berksfile detected, not building local berkshelf.'.foreground(:yellow)
73
-
74
- unless File.directory?("#{install_path}")
75
- FileUtils.mkdir_p("#{install_path}")
76
- end
77
- FileUtils.copy("#{@target_path}/Berksfile.opsworks", "#{install_path}/Berksfile")
78
- else
79
- # berks
80
- #
81
- puts 'Running berks install'.foreground(:blue)
82
- run_local <<-BASH
83
- cd #{@target_path}
84
- berks update
85
- BASH
86
- run_local <<-BASH
87
- cd #{@target_path}
88
- berks vendor #{install_path}
89
- BASH
90
- end
71
+ # berks
72
+ #
73
+ puts 'Running berks install'.foreground(:blue)
74
+ run_local <<-BASH
75
+ cd #{@target_path}
76
+ berks update
77
+ BASH
78
+ run_local <<-BASH
79
+ cd #{@target_path}
80
+ berks vendor #{install_path}
81
+ BASH
91
82
 
92
83
  # if there's an overrides file, just pull it and stuff the contents into the
93
84
  # upload repo; the line is assumed to be a git repo. This is done to override
data/lib/opzworks/meta.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  module OpzWorks
2
- VERSION = '0.5.4'
2
+ VERSION = '0.5.5'
3
3
  AUTHORS = ['Grant Heffernan', 'Mapzen']
4
4
  EMAIL = ['grant@mapzen.com']
5
5
  DESCRIPTION = 'OpzWorks Utilities'
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.5.4
4
+ version: 0.5.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Grant Heffernan