cloud-utils 1.1 → 1.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.
data/CHANGELOG CHANGED
@@ -1,3 +1,3 @@
1
- v1.0. Initial release.
2
-
3
- v1.1. Fixes for RabbitMQ 1.8.0 release, bug fixes.
1
+ v1.2. Added -o option for unzip to suppress overwrite prompting.
2
+ v1.1. Fixes for RabbitMQ 1.8.0 release, bug fixes.
3
+ v1.0. Initial release.
data/Manifest CHANGED
@@ -1,6 +1,5 @@
1
1
  CHANGELOG
2
2
  LICENSE
3
- Manifest
4
3
  README.markdown
5
4
  Rakefile
6
5
  bin/deploy
@@ -12,3 +11,4 @@ lib/cloud/deploy.rb
12
11
  lib/cloud/deploy/artifact.rb
13
12
  lib/cloud/deploy/monitor.rb
14
13
  lib/cloud/logger.rb
14
+ Manifest
data/Rakefile CHANGED
@@ -2,8 +2,7 @@ require 'echoe'
2
2
 
3
3
  Echoe.new('cloud-utils') do |pkg|
4
4
  pkg.author = 'J. Brisbin'
5
- pkg.email = 'jon@jbrisbin.com'
6
- pkg.version = '1.1'
5
+ pkg.email = 'jon@jbrisbin.com'
7
6
  pkg.summary = 'Deploy artifacts in a cloud environment.'
8
7
  pkg.url = 'http://github.com/jbrisbin/cloud-utils-deployer'
9
8
  pkg.runtime_dependencies = ['amqp >=0.6.7']
@@ -2,16 +2,16 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{cloud-utils}
5
- s.version = "1.1"
5
+ s.version = "1.2"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["J. Brisbin"]
9
- s.date = %q{2010-07-02}
9
+ s.date = %q{2010-07-30}
10
10
  s.description = %q{Deploy artifacts in a cloud environment.}
11
11
  s.email = %q{jon@jbrisbin.com}
12
12
  s.executables = ["deploy", "monitor"]
13
13
  s.extra_rdoc_files = ["CHANGELOG", "LICENSE", "README.markdown", "bin/deploy", "bin/monitor", "lib/cloud/deploy.rb", "lib/cloud/deploy/artifact.rb", "lib/cloud/deploy/monitor.rb", "lib/cloud/logger.rb"]
14
- s.files = ["CHANGELOG", "LICENSE", "Manifest", "README.markdown", "Rakefile", "bin/deploy", "bin/monitor", "cloud-utils.tmproj", "etc/deploy.yml", "etc/monitor.yml", "lib/cloud/deploy.rb", "lib/cloud/deploy/artifact.rb", "lib/cloud/deploy/monitor.rb", "lib/cloud/logger.rb", "cloud-utils.gemspec"]
14
+ s.files = ["CHANGELOG", "LICENSE", "README.markdown", "Rakefile", "bin/deploy", "bin/monitor", "cloud-utils.tmproj", "etc/deploy.yml", "etc/monitor.yml", "lib/cloud/deploy.rb", "lib/cloud/deploy/artifact.rb", "lib/cloud/deploy/monitor.rb", "lib/cloud/logger.rb", "Manifest", "cloud-utils.gemspec"]
15
15
  s.homepage = %q{http://github.com/jbrisbin/cloud-utils-deployer}
16
16
  s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Cloud-utils", "--main", "README.markdown"]
17
17
  s.require_paths = ["lib"]
@@ -54,7 +54,7 @@ module Cloud
54
54
  if @uri.request_uri[-6..-1] == "tar.gz"
55
55
  `tar -zxf #{@temp_file} -C #{path}`
56
56
  else
57
- `unzip -d #{path} #{@temp_file}`
57
+ `unzip -o -d #{path} #{@temp_file}`
58
58
  end
59
59
  else
60
60
  $log.info(@name) { "Copying #{@name} to #{path}" }
metadata CHANGED
@@ -1,12 +1,12 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cloud-utils
3
3
  version: !ruby/object:Gem::Version
4
- hash: 13
4
+ hash: 11
5
5
  prerelease: false
6
6
  segments:
7
7
  - 1
8
- - 1
9
- version: "1.1"
8
+ - 2
9
+ version: "1.2"
10
10
  platform: ruby
11
11
  authors:
12
12
  - J. Brisbin
@@ -14,7 +14,7 @@ autorequire:
14
14
  bindir: bin
15
15
  cert_chain: []
16
16
 
17
- date: 2010-07-02 00:00:00 -05:00
17
+ date: 2010-07-30 00:00:00 -05:00
18
18
  default_executable:
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
@@ -53,7 +53,6 @@ extra_rdoc_files:
53
53
  files:
54
54
  - CHANGELOG
55
55
  - LICENSE
56
- - Manifest
57
56
  - README.markdown
58
57
  - Rakefile
59
58
  - bin/deploy
@@ -65,6 +64,7 @@ files:
65
64
  - lib/cloud/deploy/artifact.rb
66
65
  - lib/cloud/deploy/monitor.rb
67
66
  - lib/cloud/logger.rb
67
+ - Manifest
68
68
  - cloud-utils.gemspec
69
69
  has_rdoc: true
70
70
  homepage: http://github.com/jbrisbin/cloud-utils-deployer