vagrant-rimu 0.0.1 → 0.0.6

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.
Files changed (81) hide show
  1. checksums.yaml +5 -5
  2. data/.codeclimate.yml +3 -2
  3. data/.gitignore +2 -0
  4. data/.travis.yml +5 -35
  5. data/Gemfile +4 -2
  6. data/README.md +12 -3
  7. data/Rakefile +6 -3
  8. data/Vagrantfile +12 -3
  9. data/gemfiles/vagrant_1.5.gemfile +3 -1
  10. data/gemfiles/vagrant_1.6.gemfile +5 -3
  11. data/gemfiles/vagrant_1.7.gemfile +10 -8
  12. data/lib/vagrant-rimu.rb +10 -0
  13. data/lib/vagrant-rimu/actions.rb +117 -89
  14. data/lib/vagrant-rimu/actions/abstract_action.rb +20 -0
  15. data/lib/vagrant-rimu/actions/billing_methods.rb +13 -7
  16. data/lib/vagrant-rimu/actions/connect_to_rimu.rb +12 -6
  17. data/lib/vagrant-rimu/actions/create.rb +25 -6
  18. data/lib/vagrant-rimu/actions/is_created.rb +4 -2
  19. data/lib/vagrant-rimu/actions/is_stopped.rb +5 -3
  20. data/lib/vagrant-rimu/actions/list_distributions.rb +13 -7
  21. data/lib/vagrant-rimu/actions/list_servers.rb +13 -7
  22. data/lib/vagrant-rimu/actions/message_action_not_supported.rb +19 -0
  23. data/lib/vagrant-rimu/actions/message_already_created.rb +4 -2
  24. data/lib/vagrant-rimu/actions/message_already_off.rb +4 -2
  25. data/lib/vagrant-rimu/actions/message_not_created.rb +4 -2
  26. data/lib/vagrant-rimu/actions/message_will_not_destroy.rb +4 -2
  27. data/lib/vagrant-rimu/actions/message_will_not_stop.rb +19 -0
  28. data/lib/vagrant-rimu/actions/modify_provision_path.rb +5 -3
  29. data/lib/vagrant-rimu/actions/move.rb +32 -5
  30. data/lib/vagrant-rimu/actions/read_ssh_info.rb +10 -7
  31. data/lib/vagrant-rimu/actions/read_state.rb +14 -6
  32. data/lib/vagrant-rimu/actions/rebuild.rb +34 -6
  33. data/lib/vagrant-rimu/actions/reload.rb +11 -4
  34. data/lib/vagrant-rimu/actions/setup_sudo.rb +15 -8
  35. data/lib/vagrant-rimu/actions/setup_user.rb +45 -25
  36. data/lib/vagrant-rimu/actions/ssh_utils.rb +44 -0
  37. data/lib/vagrant-rimu/actions/start_instance.rb +6 -4
  38. data/lib/vagrant-rimu/actions/stop_instance.rb +18 -7
  39. data/lib/vagrant-rimu/actions/terminate_instance.rb +12 -6
  40. data/lib/vagrant-rimu/commands/abstract_command.rb +47 -0
  41. data/lib/vagrant-rimu/commands/billing_methods.rb +10 -10
  42. data/lib/vagrant-rimu/commands/distributions.rb +10 -10
  43. data/lib/vagrant-rimu/commands/list_servers.rb +10 -10
  44. data/lib/vagrant-rimu/commands/move.rb +10 -10
  45. data/lib/vagrant-rimu/commands/rebuild.rb +5 -7
  46. data/lib/vagrant-rimu/commands/rimu_command.rb +13 -0
  47. data/lib/vagrant-rimu/commands/root.rb +26 -43
  48. data/lib/vagrant-rimu/commands/utils.rb +22 -0
  49. data/lib/vagrant-rimu/config.rb +5 -2
  50. data/lib/vagrant-rimu/errors.rb +6 -0
  51. data/lib/vagrant-rimu/logging.rb +28 -0
  52. data/lib/vagrant-rimu/plugin.rb +11 -37
  53. data/lib/vagrant-rimu/provider.rb +4 -2
  54. data/lib/vagrant-rimu/version.rb +1 -1
  55. data/locales/en.yml +70 -19
  56. data/spec/spec_helper.rb +13 -6
  57. data/spec/vagrant-rimu/actions/billing_methods_spec.rb +49 -0
  58. data/spec/vagrant-rimu/actions/connect_to_rimu_spec.rb +2 -1
  59. data/spec/vagrant-rimu/actions/create_spec.rb +167 -0
  60. data/spec/vagrant-rimu/actions/is_created_spec.rb +49 -0
  61. data/spec/vagrant-rimu/actions/is_stopped_spec.rb +49 -0
  62. data/spec/vagrant-rimu/actions/list_distributions_spec.rb +49 -0
  63. data/spec/vagrant-rimu/actions/list_servers_spec.rb +51 -0
  64. data/spec/vagrant-rimu/actions/message_action_not_supported_spec.rb +30 -0
  65. data/spec/vagrant-rimu/actions/message_already_created_spec.rb +1 -4
  66. data/spec/vagrant-rimu/actions/message_will_not_destroy_spec.rb +1 -2
  67. data/spec/vagrant-rimu/actions/message_will_not_stop_spec.rb +35 -0
  68. data/spec/vagrant-rimu/actions/modify_provision_path_spec.rb +2 -7
  69. data/spec/vagrant-rimu/actions/move_spec.rb +75 -0
  70. data/spec/vagrant-rimu/actions/read_ssh_info_spec.rb +21 -0
  71. data/spec/vagrant-rimu/actions/rebuild_spec.rb +7 -1
  72. data/spec/vagrant-rimu/actions/stop_instance_spec.rb +4 -4
  73. data/spec/vagrant-rimu/commands/billing_methods_spec.rb +17 -0
  74. data/spec/vagrant-rimu/commands/distributions_spec.rb +17 -0
  75. data/spec/vagrant-rimu/commands/list_servers_spec.rb +17 -0
  76. data/spec/vagrant-rimu/commands/move_spec.rb +17 -0
  77. data/spec/vagrant-rimu/commands/rebuild_spec.rb +20 -0
  78. data/spec/vagrant-rimu/config_spec.rb +1 -1
  79. data/test/Vagrantfile +4 -2
  80. data/vagrant-rimu.gemspec +5 -1
  81. metadata +81 -27
@@ -1,4 +1,21 @@
1
1
  require 'spec_helper'
2
2
 
3
3
  describe VagrantPlugins::Rimu::Commands::BillingMethods do
4
+ let(:machine) { double('machine') }
5
+
6
+ let(:env) do
7
+ {}.tap do |env|
8
+ machine.stub(:action).with('billing_methods') { 1 }
9
+ env[:machine] = machine
10
+ end
11
+ end
12
+
13
+ before :each do
14
+ @billing_methods_cmd = VagrantPlugins::Rimu::Commands::BillingMethods.new(nil, env)
15
+ end
16
+
17
+ it 'calls the machine billing_methods action' do
18
+ env[:machine].should_receive(:action).with('billing_methods')
19
+ @billing_methods_cmd.cmd('billing-methods', [], env)
20
+ end
4
21
  end
@@ -1,4 +1,21 @@
1
1
  require 'spec_helper'
2
2
 
3
3
  describe VagrantPlugins::Rimu::Commands::Distributions do
4
+ let(:machine) { double('machine') }
5
+
6
+ let(:env) do
7
+ {}.tap do |env|
8
+ machine.stub(:action).with('list_distributions') { 1 }
9
+ env[:machine] = machine
10
+ end
11
+ end
12
+
13
+ before :each do
14
+ @list_distributions_cmd = VagrantPlugins::Rimu::Commands::Distributions.new(nil, env)
15
+ end
16
+
17
+ it 'calls the machine list_distributions action' do
18
+ env[:machine].should_receive(:action).with('list_distributions')
19
+ @list_distributions_cmd.cmd('distributions', [], env)
20
+ end
4
21
  end
@@ -1,4 +1,21 @@
1
1
  require 'spec_helper'
2
2
 
3
3
  describe VagrantPlugins::Rimu::Commands::ListServers do
4
+ let(:machine) { double('machine') }
5
+
6
+ let(:env) do
7
+ {}.tap do |env|
8
+ machine.stub(:action).with('list_servers') { 1 }
9
+ env[:machine] = machine
10
+ end
11
+ end
12
+
13
+ before :each do
14
+ @list_servers_cmd = VagrantPlugins::Rimu::Commands::ListServers.new(nil, env)
15
+ end
16
+
17
+ it 'calls the machine list_servers action' do
18
+ env[:machine].should_receive(:action).with('list_servers')
19
+ @list_servers_cmd.cmd('servers', [], env)
20
+ end
4
21
  end
@@ -1,4 +1,21 @@
1
1
  require 'spec_helper'
2
2
 
3
3
  describe VagrantPlugins::Rimu::Commands::Move do
4
+ let(:machine) { double('machine') }
5
+
6
+ let(:env) do
7
+ {}.tap do |env|
8
+ machine.stub(:action).with('move') { 1 }
9
+ env[:machine] = machine
10
+ end
11
+ end
12
+
13
+ before :each do
14
+ @move_cmd = VagrantPlugins::Rimu::Commands::Move.new(nil, env)
15
+ end
16
+
17
+ it 'calls the machine move action' do
18
+ env[:machine].should_receive(:action).with('move')
19
+ @move_cmd.cmd('move-vps', [], env)
20
+ end
4
21
  end
@@ -1,4 +1,24 @@
1
1
  require 'spec_helper'
2
2
 
3
3
  describe VagrantPlugins::Rimu::Commands::Rebuild do
4
+ # let(:machine) { double('machine') }
5
+ # let(:root_path) { '.' }
6
+ #
7
+ # let(:env) do
8
+ # {}.tap do |env|
9
+ # env.stub(:root_path) { root_path }
10
+ # machine.stub(:action).with('rebuild') { 1 }
11
+ # machine.stub(:env) { env }
12
+ # env[:machine] = machine
13
+ # end
14
+ # end
15
+ #
16
+ # before :each do
17
+ # @rebuild_cmd = VagrantPlugins::Rimu::Commands::Rebuild.new(nil, env)
18
+ # end
19
+ #
20
+ # it 'calls the machine rebuild action' do
21
+ # env[:machine].should_receive(:action).with('rebuild')
22
+ # @rebuild_cmd.execute()
23
+ # end
4
24
  end
@@ -10,7 +10,7 @@ describe VagrantPlugins::Rimu::Config do
10
10
  super().tap(&:finalize!)
11
11
  end
12
12
 
13
- its(:api_key) { should be_nil }
13
+ its(:api_key) { should eq(ENV['RIMU_API_KEY']) }
14
14
  its(:api_url) { should be_nil }
15
15
  its(:distro_code) { should eq("centos6.64") }
16
16
  its(:data_centre) { should be_nil }
@@ -1,12 +1,14 @@
1
- Vagrant.require_plugin('vagrant-rimu')
1
+ REQUIRED_PLUGINS = %w(vagrant-rimu)
2
+ abort "Please set the environment variable RIMU_API_KEY in order to run vagrant with the rimu provider" unless ENV.key? 'RIMU_API_KEY'
2
3
 
3
4
  Vagrant.configure('2') do |config|
4
5
  config.ssh.username = 'tester'
6
+ config.ssh.insert_key = true
5
7
  config.ssh.private_key_path = 'test_rimu_id_rsa'
6
8
 
7
9
  config.vm.synced_folder '.', '/vagrant', :disabled => true
8
10
 
9
- config.vm.provider :rimu do |provider, override|
11
+ config.vm.provider :rimu do |provider|
10
12
  provider.token = ENV['RIMU_API_KEY']
11
13
  end
12
14
 
@@ -14,9 +14,13 @@ Gem::Specification.new do |gem|
14
14
  gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
15
15
  gem.name = 'vagrant-rimu'
16
16
  gem.require_paths = ['lib']
17
+ gem.required_ruby_version = '>= 2.0.0'
18
+ gem.extra_rdoc_files = ['README.md']
17
19
  gem.version = VagrantPlugins::Rimu::VERSION
18
20
 
19
- gem.add_runtime_dependency 'rimu', '~> 0.0.3'
21
+ gem.add_runtime_dependency 'rimu', '~> 0.0.6'
22
+ gem.add_runtime_dependency 'colorize', '~> 0.7.3'
23
+ gem.add_runtime_dependency 'terminal-table', '~> 1.4.5'
20
24
  gem.add_development_dependency 'bundler', '~> 1.5'
21
25
  gem.add_development_dependency 'rspec', '~> 3.1.0'
22
26
  gem.add_development_dependency 'rspec-its', '~> 1.0.1'
metadata CHANGED
@@ -1,97 +1,125 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vagrant-rimu
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Colin Kissa
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-11-27 00:00:00.000000000 Z
11
+ date: 2020-05-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rimu
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - ~>
17
+ - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: 0.0.3
19
+ version: 0.0.6
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - ~>
24
+ - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: 0.0.3
26
+ version: 0.0.6
27
+ - !ruby/object:Gem::Dependency
28
+ name: colorize
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: 0.7.3
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: 0.7.3
41
+ - !ruby/object:Gem::Dependency
42
+ name: terminal-table
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: 1.4.5
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: 1.4.5
27
55
  - !ruby/object:Gem::Dependency
28
56
  name: bundler
29
57
  requirement: !ruby/object:Gem::Requirement
30
58
  requirements:
31
- - - ~>
59
+ - - "~>"
32
60
  - !ruby/object:Gem::Version
33
61
  version: '1.5'
34
62
  type: :development
35
63
  prerelease: false
36
64
  version_requirements: !ruby/object:Gem::Requirement
37
65
  requirements:
38
- - - ~>
66
+ - - "~>"
39
67
  - !ruby/object:Gem::Version
40
68
  version: '1.5'
41
69
  - !ruby/object:Gem::Dependency
42
70
  name: rspec
43
71
  requirement: !ruby/object:Gem::Requirement
44
72
  requirements:
45
- - - ~>
73
+ - - "~>"
46
74
  - !ruby/object:Gem::Version
47
75
  version: 3.1.0
48
76
  type: :development
49
77
  prerelease: false
50
78
  version_requirements: !ruby/object:Gem::Requirement
51
79
  requirements:
52
- - - ~>
80
+ - - "~>"
53
81
  - !ruby/object:Gem::Version
54
82
  version: 3.1.0
55
83
  - !ruby/object:Gem::Dependency
56
84
  name: rspec-its
57
85
  requirement: !ruby/object:Gem::Requirement
58
86
  requirements:
59
- - - ~>
87
+ - - "~>"
60
88
  - !ruby/object:Gem::Version
61
89
  version: 1.0.1
62
90
  type: :development
63
91
  prerelease: false
64
92
  version_requirements: !ruby/object:Gem::Requirement
65
93
  requirements:
66
- - - ~>
94
+ - - "~>"
67
95
  - !ruby/object:Gem::Version
68
96
  version: 1.0.1
69
97
  - !ruby/object:Gem::Dependency
70
98
  name: rspec-expectations
71
99
  requirement: !ruby/object:Gem::Requirement
72
100
  requirements:
73
- - - ~>
101
+ - - "~>"
74
102
  - !ruby/object:Gem::Version
75
103
  version: 3.1.2
76
104
  type: :development
77
105
  prerelease: false
78
106
  version_requirements: !ruby/object:Gem::Requirement
79
107
  requirements:
80
- - - ~>
108
+ - - "~>"
81
109
  - !ruby/object:Gem::Version
82
110
  version: 3.1.2
83
111
  - !ruby/object:Gem::Dependency
84
112
  name: rake
85
113
  requirement: !ruby/object:Gem::Requirement
86
114
  requirements:
87
- - - '>='
115
+ - - ">="
88
116
  - !ruby/object:Gem::Version
89
117
  version: '0'
90
118
  type: :development
91
119
  prerelease: false
92
120
  version_requirements: !ruby/object:Gem::Requirement
93
121
  requirements:
94
- - - '>='
122
+ - - ">="
95
123
  - !ruby/object:Gem::Version
96
124
  version: '0'
97
125
  description: Rimuhosting provider for Vagrant.
@@ -99,13 +127,14 @@ email:
99
127
  - andrew@topdog.za.net
100
128
  executables: []
101
129
  extensions: []
102
- extra_rdoc_files: []
130
+ extra_rdoc_files:
131
+ - README.md
103
132
  files:
104
- - .codeclimate.yml
105
- - .gitignore
106
- - .rspec
107
- - .rubocop.yml
108
- - .travis.yml
133
+ - ".codeclimate.yml"
134
+ - ".gitignore"
135
+ - ".rspec"
136
+ - ".rubocop.yml"
137
+ - ".travis.yml"
109
138
  - Gemfile
110
139
  - LICENSE
111
140
  - README.md
@@ -116,6 +145,7 @@ files:
116
145
  - gemfiles/vagrant_1.7.gemfile
117
146
  - lib/vagrant-rimu.rb
118
147
  - lib/vagrant-rimu/actions.rb
148
+ - lib/vagrant-rimu/actions/abstract_action.rb
119
149
  - lib/vagrant-rimu/actions/billing_methods.rb
120
150
  - lib/vagrant-rimu/actions/connect_to_rimu.rb
121
151
  - lib/vagrant-rimu/actions/create.rb
@@ -123,10 +153,12 @@ files:
123
153
  - lib/vagrant-rimu/actions/is_stopped.rb
124
154
  - lib/vagrant-rimu/actions/list_distributions.rb
125
155
  - lib/vagrant-rimu/actions/list_servers.rb
156
+ - lib/vagrant-rimu/actions/message_action_not_supported.rb
126
157
  - lib/vagrant-rimu/actions/message_already_created.rb
127
158
  - lib/vagrant-rimu/actions/message_already_off.rb
128
159
  - lib/vagrant-rimu/actions/message_not_created.rb
129
160
  - lib/vagrant-rimu/actions/message_will_not_destroy.rb
161
+ - lib/vagrant-rimu/actions/message_will_not_stop.rb
130
162
  - lib/vagrant-rimu/actions/modify_provision_path.rb
131
163
  - lib/vagrant-rimu/actions/move.rb
132
164
  - lib/vagrant-rimu/actions/read_ssh_info.rb
@@ -135,28 +167,42 @@ files:
135
167
  - lib/vagrant-rimu/actions/reload.rb
136
168
  - lib/vagrant-rimu/actions/setup_sudo.rb
137
169
  - lib/vagrant-rimu/actions/setup_user.rb
170
+ - lib/vagrant-rimu/actions/ssh_utils.rb
138
171
  - lib/vagrant-rimu/actions/start_instance.rb
139
172
  - lib/vagrant-rimu/actions/stop_instance.rb
140
173
  - lib/vagrant-rimu/actions/terminate_instance.rb
174
+ - lib/vagrant-rimu/commands/abstract_command.rb
141
175
  - lib/vagrant-rimu/commands/billing_methods.rb
142
176
  - lib/vagrant-rimu/commands/distributions.rb
143
177
  - lib/vagrant-rimu/commands/list_servers.rb
144
178
  - lib/vagrant-rimu/commands/move.rb
145
179
  - lib/vagrant-rimu/commands/rebuild.rb
180
+ - lib/vagrant-rimu/commands/rimu_command.rb
146
181
  - lib/vagrant-rimu/commands/root.rb
182
+ - lib/vagrant-rimu/commands/utils.rb
147
183
  - lib/vagrant-rimu/config.rb
148
184
  - lib/vagrant-rimu/errors.rb
185
+ - lib/vagrant-rimu/logging.rb
149
186
  - lib/vagrant-rimu/plugin.rb
150
187
  - lib/vagrant-rimu/provider.rb
151
188
  - lib/vagrant-rimu/version.rb
152
189
  - locales/en.yml
153
190
  - spec/spec_helper.rb
191
+ - spec/vagrant-rimu/actions/billing_methods_spec.rb
154
192
  - spec/vagrant-rimu/actions/connect_to_rimu_spec.rb
193
+ - spec/vagrant-rimu/actions/create_spec.rb
194
+ - spec/vagrant-rimu/actions/is_created_spec.rb
195
+ - spec/vagrant-rimu/actions/is_stopped_spec.rb
196
+ - spec/vagrant-rimu/actions/list_distributions_spec.rb
197
+ - spec/vagrant-rimu/actions/list_servers_spec.rb
198
+ - spec/vagrant-rimu/actions/message_action_not_supported_spec.rb
155
199
  - spec/vagrant-rimu/actions/message_already_created_spec.rb
156
200
  - spec/vagrant-rimu/actions/message_already_off_spec.rb
157
201
  - spec/vagrant-rimu/actions/message_not_created_spec.rb
158
202
  - spec/vagrant-rimu/actions/message_will_not_destroy_spec.rb
203
+ - spec/vagrant-rimu/actions/message_will_not_stop_spec.rb
159
204
  - spec/vagrant-rimu/actions/modify_provision_path_spec.rb
205
+ - spec/vagrant-rimu/actions/move_spec.rb
160
206
  - spec/vagrant-rimu/actions/read_ssh_info_spec.rb
161
207
  - spec/vagrant-rimu/actions/read_state_spec.rb
162
208
  - spec/vagrant-rimu/actions/rebuild_spec.rb
@@ -191,28 +237,36 @@ require_paths:
191
237
  - lib
192
238
  required_ruby_version: !ruby/object:Gem::Requirement
193
239
  requirements:
194
- - - '>='
240
+ - - ">="
195
241
  - !ruby/object:Gem::Version
196
- version: '0'
242
+ version: 2.0.0
197
243
  required_rubygems_version: !ruby/object:Gem::Requirement
198
244
  requirements:
199
- - - '>='
245
+ - - ">="
200
246
  - !ruby/object:Gem::Version
201
247
  version: '0'
202
248
  requirements: []
203
- rubyforge_project:
204
- rubygems_version: 2.4.6
249
+ rubygems_version: 3.0.8
205
250
  signing_key:
206
251
  specification_version: 4
207
252
  summary: Rimuhosting provider for Vagrant.
208
253
  test_files:
209
254
  - spec/spec_helper.rb
255
+ - spec/vagrant-rimu/actions/billing_methods_spec.rb
210
256
  - spec/vagrant-rimu/actions/connect_to_rimu_spec.rb
257
+ - spec/vagrant-rimu/actions/create_spec.rb
258
+ - spec/vagrant-rimu/actions/is_created_spec.rb
259
+ - spec/vagrant-rimu/actions/is_stopped_spec.rb
260
+ - spec/vagrant-rimu/actions/list_distributions_spec.rb
261
+ - spec/vagrant-rimu/actions/list_servers_spec.rb
262
+ - spec/vagrant-rimu/actions/message_action_not_supported_spec.rb
211
263
  - spec/vagrant-rimu/actions/message_already_created_spec.rb
212
264
  - spec/vagrant-rimu/actions/message_already_off_spec.rb
213
265
  - spec/vagrant-rimu/actions/message_not_created_spec.rb
214
266
  - spec/vagrant-rimu/actions/message_will_not_destroy_spec.rb
267
+ - spec/vagrant-rimu/actions/message_will_not_stop_spec.rb
215
268
  - spec/vagrant-rimu/actions/modify_provision_path_spec.rb
269
+ - spec/vagrant-rimu/actions/move_spec.rb
216
270
  - spec/vagrant-rimu/actions/read_ssh_info_spec.rb
217
271
  - spec/vagrant-rimu/actions/read_state_spec.rb
218
272
  - spec/vagrant-rimu/actions/rebuild_spec.rb