coral_vagrant 0.1.1

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/.document ADDED
@@ -0,0 +1,5 @@
1
+ lib/**/*.rb
2
+ bin/*
3
+ -
4
+ features/**/*.feature
5
+ LICENSE.txt
data/Gemfile ADDED
@@ -0,0 +1,13 @@
1
+ source "http://rubygems.org"
2
+
3
+ gem "vagrant", "~> 1.0"
4
+ gem "coral_plan", "~> 0.1"
5
+ gem "coral_cloud", "~> 0.1"
6
+
7
+ group :development do
8
+ gem "bundler", "~> 1.2"
9
+ gem "jeweler", "~> 1.8"
10
+ gem "rspec", "~> 2.10"
11
+ gem "rdoc", "~> 3.12"
12
+ gem "yard", "~> 0.8"
13
+ end
data/Gemfile.lock ADDED
@@ -0,0 +1,63 @@
1
+ GEM
2
+ remote: http://rubygems.org/
3
+ specs:
4
+ archive-tar-minitar (0.5.2)
5
+ childprocess (0.3.7)
6
+ ffi (~> 1.0, >= 1.0.6)
7
+ coral_cloud (0.1.1)
8
+ coral_core (~> 0.1)
9
+ coral_core (0.1.2)
10
+ git (= 1.2.5)
11
+ json (>= 1.4)
12
+ log4r (~> 1.1)
13
+ coral_plan (0.1.1)
14
+ coral_core (~> 0.1)
15
+ diff-lcs (1.1.3)
16
+ erubis (2.7.0)
17
+ ffi (1.3.1)
18
+ git (1.2.5)
19
+ i18n (0.6.1)
20
+ jeweler (1.8.4)
21
+ bundler (~> 1.0)
22
+ git (>= 1.2.5)
23
+ rake
24
+ rdoc
25
+ json (1.5.4)
26
+ log4r (1.1.10)
27
+ net-scp (1.0.4)
28
+ net-ssh (>= 1.99.1)
29
+ net-ssh (2.2.2)
30
+ rake (10.0.3)
31
+ rdoc (3.12.1)
32
+ json (~> 1.4)
33
+ rspec (2.12.0)
34
+ rspec-core (~> 2.12.0)
35
+ rspec-expectations (~> 2.12.0)
36
+ rspec-mocks (~> 2.12.0)
37
+ rspec-core (2.12.2)
38
+ rspec-expectations (2.12.1)
39
+ diff-lcs (~> 1.1.3)
40
+ rspec-mocks (2.12.2)
41
+ vagrant (1.0.6)
42
+ archive-tar-minitar (= 0.5.2)
43
+ childprocess (~> 0.3.1)
44
+ erubis (~> 2.7.0)
45
+ i18n (~> 0.6.0)
46
+ json (~> 1.5.1)
47
+ log4r (~> 1.1.9)
48
+ net-scp (~> 1.0.4)
49
+ net-ssh (~> 2.2.2)
50
+ yard (0.8.4.1)
51
+
52
+ PLATFORMS
53
+ ruby
54
+
55
+ DEPENDENCIES
56
+ bundler (~> 1.2)
57
+ coral_cloud (~> 0.1)
58
+ coral_plan (~> 0.1)
59
+ jeweler (~> 1.8)
60
+ rdoc (~> 3.12)
61
+ rspec (~> 2.10)
62
+ vagrant (~> 1.0)
63
+ yard (~> 0.8)