shuttle-deploy 0.2.2 → 0.2.3

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: b588d4567806738e2aed53572ef83744eb06683f
4
- data.tar.gz: 7862adeac5b688024140184f15b6c53263aeb282
3
+ metadata.gz: fd0e01bd7713dc75eaaef43800b74bf841743d49
4
+ data.tar.gz: 7b774a999af69cab717e3b7e2fa511c0e39428bd
5
5
  SHA512:
6
- metadata.gz: 1048bb2a70bf808c7e4012a24abac16e12350f5ca5cb6c824af12684ef60daf7c5cd82ad47635b3b8f0f8c13293eb3852843c6b02c8614537ad7f6c23e1f9fbc
7
- data.tar.gz: f11fb729b7f93fbc08defdb2fa083f48e31a8fcb07eec64019210b37747bc527869b0716ae722c9f1daa19e55210ec3174b984c561fc31694bf6fe2b12208867
6
+ metadata.gz: b81173dc5ff5c967e431cec1bd5cd63aae104d282d44683d8ef9b6ad77460e1f1da245b53aed7dcede8e24a7da36583e66e725e0a3e30f70feee2e75c8f6c041
7
+ data.tar.gz: ae52b45d7cb993b36511edc81020f00aacd76c9516969f6988ef73bffc96e5ed8009b9c84f814ee9dbf6e185920fed02a1e8f4ecefdb262b476c60c804a94db8
data/.gitignore CHANGED
@@ -22,4 +22,5 @@ test/tmp
22
22
  test/version_tmp
23
23
  tmp
24
24
  tmtags
25
- Gemfile.lock
25
+ Gemfile.lock
26
+ .vagrant
data/Vagrantfile ADDED
@@ -0,0 +1,19 @@
1
+ # -*- mode: ruby -*-
2
+ # vi: set ft=ruby :
3
+
4
+ $script = <<SCRIPT
5
+ apt-get update -y
6
+ apt-get install -y git-core
7
+ apt-get install -y ruby1.9.3
8
+ date > /etc/vagrant_provisioned_at
9
+ SCRIPT
10
+
11
+ Vagrant.configure("2") do |config|
12
+ config.vm.box = "base"
13
+ config.vm.box_url = "http://cloud-images.ubuntu.com/vagrant/precise/current/precise-server-cloudimg-amd64-vagrant-disk1.box"
14
+ config.vm.network :private_network, ip: "192.168.33.10"
15
+ config.vm.provision "shell", inline: $script
16
+ config.vm.provider "virtualbox" do |v|
17
+ v.memory = 512
18
+ end
19
+ end
@@ -50,7 +50,7 @@ module Shuttle
50
50
  if result.success?
51
51
  puts result.output if print_output
52
52
  else
53
- error "Unable to run rake command: #{command}. Reason: #{res.output}"
53
+ error "Unable to run rake command: #{command}. Reason: #{result.output}"
54
54
  end
55
55
  end
56
56
 
@@ -1,3 +1,3 @@
1
1
  module Shuttle
2
- VERSION = "0.2.2"
2
+ VERSION = "0.2.3"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: shuttle-deploy
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.2
4
+ version: 0.2.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dan Sosedoff
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-06-29 00:00:00.000000000 Z
11
+ date: 2014-07-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake
@@ -164,6 +164,7 @@ files:
164
164
  - LICENSE
165
165
  - README.md
166
166
  - Rakefile
167
+ - Vagrantfile
167
168
  - bin/shuttle
168
169
  - examples/rails.yml
169
170
  - examples/static.yml