opzworks 0.3.1 → 0.3.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: f996855cc103f56105782f5de0036d061165cd9d
4
- data.tar.gz: 4901eb8c1005289346f77d3c3092d12144471be5
3
+ metadata.gz: 7698febfaf963b46c1f624109efe82aa9efbb41b
4
+ data.tar.gz: 328d933bf61e97a034712c15eb6efa1e1292f776
5
5
  SHA512:
6
- metadata.gz: 03ab82d0cf2fc1c400044c5f139bc1288ce8b7fa133d16d86b1d52fd393f9a301b8cbd418a003014ab13fe646cbcdba52a3911729759ed6a53b443b06e4d05cb
7
- data.tar.gz: e0604caf245103d51128d02277f2b1390280fce1738f8c2c3072c3b733420ca472262a4837308f5e72644774cd06bc7a1cd7479cc734391fcea12edbf467b20d
6
+ metadata.gz: ef32d7d217453da1a83a1f5c5d9fad2c63e49d6c3b4e2cb1e76d348405194d0658caade49af0dbd67bbc34eb484079baea5a8aee58090ef9d527bff62e3529af
7
+ data.tar.gz: 08f5435373c44b23f3c3635c9587ca50ea590205e271ba9761a3365f0382e3e17162baf1ac574d6793f4e89fb0178a5d3cd305b8948ddb0c92a20732147fe4b8
@@ -7,11 +7,12 @@ def manage_berks_repos
7
7
  puts "#{@target_path} does not exist, and 'berks-github-org' is not set in ~/.aws/config, skipping.".foreground(:yellow)
8
8
  @berks_repo_failure = true
9
9
  else
10
+ repo = "git@github.com:#{config.berks_github_org}/opsworks-#{@project}.git"
10
11
  puts "#{@target_path} does not exist!".foreground(:red)
11
- puts 'Attempting git clone of '.foreground(:blue) + "git@github.com:#{config.berks_github_org}/opsworks-#{@project}.".foreground(:green)
12
+ puts 'Attempting git clone of '.foreground(:blue) + repo.foreground(:green)
12
13
  run_local <<-BASH
13
14
  cd #{config.berks_repository_path}
14
- git clone git@github.com:#{config.berks_github_org}/opsworks-#{@project}.git
15
+ git clone #{repo}
15
16
  BASH
16
17
  end
17
18
  else
data/lib/opzworks/meta.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  module OpzWorks
2
- VERSION = '0.3.1'
2
+ VERSION = '0.3.2'
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.3.1
4
+ version: 0.3.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Grant Heffernan