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.
metadata ADDED
@@ -0,0 +1,237 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: coral_vagrant
3
+ version: !ruby/object:Gem::Version
4
+ hash: 25
5
+ prerelease:
6
+ segments:
7
+ - 0
8
+ - 1
9
+ - 1
10
+ version: 0.1.1
11
+ platform: ruby
12
+ authors:
13
+ - Adrian Webb
14
+ autorequire:
15
+ bindir: bin
16
+ cert_chain: []
17
+
18
+ date: 2013-02-07 00:00:00 Z
19
+ dependencies:
20
+ - !ruby/object:Gem::Dependency
21
+ name: vagrant
22
+ prerelease: false
23
+ requirement: &id001 !ruby/object:Gem::Requirement
24
+ none: false
25
+ requirements:
26
+ - - ~>
27
+ - !ruby/object:Gem::Version
28
+ hash: 15
29
+ segments:
30
+ - 1
31
+ - 0
32
+ version: "1.0"
33
+ type: :runtime
34
+ version_requirements: *id001
35
+ - !ruby/object:Gem::Dependency
36
+ name: coral_plan
37
+ prerelease: false
38
+ requirement: &id002 !ruby/object:Gem::Requirement
39
+ none: false
40
+ requirements:
41
+ - - ~>
42
+ - !ruby/object:Gem::Version
43
+ hash: 9
44
+ segments:
45
+ - 0
46
+ - 1
47
+ version: "0.1"
48
+ type: :runtime
49
+ version_requirements: *id002
50
+ - !ruby/object:Gem::Dependency
51
+ name: coral_cloud
52
+ prerelease: false
53
+ requirement: &id003 !ruby/object:Gem::Requirement
54
+ none: false
55
+ requirements:
56
+ - - ~>
57
+ - !ruby/object:Gem::Version
58
+ hash: 9
59
+ segments:
60
+ - 0
61
+ - 1
62
+ version: "0.1"
63
+ type: :runtime
64
+ version_requirements: *id003
65
+ - !ruby/object:Gem::Dependency
66
+ name: bundler
67
+ prerelease: false
68
+ requirement: &id004 !ruby/object:Gem::Requirement
69
+ none: false
70
+ requirements:
71
+ - - ~>
72
+ - !ruby/object:Gem::Version
73
+ hash: 11
74
+ segments:
75
+ - 1
76
+ - 2
77
+ version: "1.2"
78
+ type: :development
79
+ version_requirements: *id004
80
+ - !ruby/object:Gem::Dependency
81
+ name: jeweler
82
+ prerelease: false
83
+ requirement: &id005 !ruby/object:Gem::Requirement
84
+ none: false
85
+ requirements:
86
+ - - ~>
87
+ - !ruby/object:Gem::Version
88
+ hash: 31
89
+ segments:
90
+ - 1
91
+ - 8
92
+ version: "1.8"
93
+ type: :development
94
+ version_requirements: *id005
95
+ - !ruby/object:Gem::Dependency
96
+ name: rspec
97
+ prerelease: false
98
+ requirement: &id006 !ruby/object:Gem::Requirement
99
+ none: false
100
+ requirements:
101
+ - - ~>
102
+ - !ruby/object:Gem::Version
103
+ hash: 23
104
+ segments:
105
+ - 2
106
+ - 10
107
+ version: "2.10"
108
+ type: :development
109
+ version_requirements: *id006
110
+ - !ruby/object:Gem::Dependency
111
+ name: rdoc
112
+ prerelease: false
113
+ requirement: &id007 !ruby/object:Gem::Requirement
114
+ none: false
115
+ requirements:
116
+ - - ~>
117
+ - !ruby/object:Gem::Version
118
+ hash: 31
119
+ segments:
120
+ - 3
121
+ - 12
122
+ version: "3.12"
123
+ type: :development
124
+ version_requirements: *id007
125
+ - !ruby/object:Gem::Dependency
126
+ name: yard
127
+ prerelease: false
128
+ requirement: &id008 !ruby/object:Gem::Requirement
129
+ none: false
130
+ requirements:
131
+ - - ~>
132
+ - !ruby/object:Gem::Version
133
+ hash: 27
134
+ segments:
135
+ - 0
136
+ - 8
137
+ version: "0.8"
138
+ type: :development
139
+ version_requirements: *id008
140
+ description: |-
141
+ = coral_vagrant
142
+
143
+ This library contains various commands and exposes a data model to Vagrant
144
+ that allows for tightly integrated management of Virtual machines that are
145
+ linked to remote servers.
146
+
147
+ This also allows for custom execution plans.
148
+
149
+ Note: This library is still very early in development!
150
+
151
+ == Contributing to coral_vagrant
152
+
153
+ * Check out the latest master to make sure the feature hasn't been implemented
154
+ or the bug hasn't been fixed yet.
155
+ * Check out the issue tracker to make sure someone already hasn't requested
156
+ it and/or contributed it.
157
+ * Fork the project.
158
+ * Start a feature/bugfix branch.
159
+ * Commit and push until you are happy with your contribution.
160
+ * Make sure to add tests for it. This is important so I don't break it in a
161
+ future version unintentionally.
162
+ * Please try not to mess with the Rakefile, version, or history. If you want
163
+ to have your own version, or is otherwise necessary, that is fine, but
164
+ please isolate to its own commit so I can cherry-pick around it.
165
+
166
+ == Copyright
167
+
168
+ Licensed under GPLv3. See LICENSE.txt for further details.
169
+
170
+ Copyright (c) 2013 Adrian Webb <adrian.webb@coraltech.net>
171
+ Coral Technology Group LLC
172
+ email: adrian.webb@coraltech.net
173
+ executables: []
174
+
175
+ extensions: []
176
+
177
+ extra_rdoc_files:
178
+ - LICENSE.txt
179
+ - README.rdoc
180
+ files:
181
+ - .document
182
+ - Gemfile
183
+ - Gemfile.lock
184
+ - LICENSE.txt
185
+ - README.rdoc
186
+ - Rakefile
187
+ - VERSION
188
+ - Vagrantfile
189
+ - coral_vagrant.gemspec
190
+ - lib/coral_vagrant.rb
191
+ - lib/coral_vagrant/commands/coral_base.rb
192
+ - lib/coral_vagrant/commands/coral_init.rb
193
+ - lib/coral_vagrant/commands/coral_push.rb
194
+ - lib/coral_vagrant/commands/coral_run.rb
195
+ - lib/coral_vagrant/commands/coral_update.rb
196
+ homepage: http://github.com/coraltech/ruby-coral_vagrant
197
+ licenses:
198
+ - GPLv3
199
+ post_install_message:
200
+ rdoc_options:
201
+ - --title
202
+ - Coral Vagrant library
203
+ - --main
204
+ - README.rdoc
205
+ - --line-numbers
206
+ require_paths:
207
+ - lib
208
+ required_ruby_version: !ruby/object:Gem::Requirement
209
+ none: false
210
+ requirements:
211
+ - - ">="
212
+ - !ruby/object:Gem::Version
213
+ hash: 53
214
+ segments:
215
+ - 1
216
+ - 8
217
+ - 1
218
+ version: 1.8.1
219
+ required_rubygems_version: !ruby/object:Gem::Requirement
220
+ none: false
221
+ requirements:
222
+ - - ">="
223
+ - !ruby/object:Gem::Version
224
+ hash: 3
225
+ segments:
226
+ - 0
227
+ version: "0"
228
+ requirements: []
229
+
230
+ rubyforge_project: coral_vagrant
231
+ rubygems_version: 1.8.15
232
+ signing_key:
233
+ specification_version: 3
234
+ summary: Provides a data model and various Coral commands for Vagrant
235
+ test_files: []
236
+
237
+ has_rdoc: