auser-poolparty 0.2.39 → 0.2.40

Sign up to get free protection for your applications and to get access to all the features.
Files changed (56) hide show
  1. data/Manifest.txt +117 -0
  2. data/bin/cloud-configure +3 -3
  3. data/bin/cloud-expand +10 -6
  4. data/bin/cloud-handle-load +32 -0
  5. data/bin/cloud-maintain +3 -9
  6. data/bin/cloud-provision +1 -1
  7. data/bin/cloud-start +2 -1
  8. data/bin/server-show-stats +1 -0
  9. data/lib/erlang/cloudpanel/EMakefile +1 -0
  10. data/lib/erlang/cloudpanel/Makefile +3 -0
  11. data/lib/erlang/cloudpanel/cloudpanel.rb +15 -0
  12. data/lib/erlang/cloudpanel/doc/cloudpanel_web.html +1 -1
  13. data/lib/erlang/cloudpanel/doc/string.html +222 -0
  14. data/lib/erlang/cloudpanel/priv/www/index.html +2 -1
  15. data/lib/erlang/cloudpanel/priv/www/javascripts/site.js +2 -0
  16. data/lib/erlang/cloudpanel/priv/www/pages/index.html +1 -0
  17. data/lib/erlang/cloudpanel/priv/www/pages/tail.html +1 -0
  18. data/lib/erlang/cloudpanel/priv/www/partials/error.html +3 -0
  19. data/lib/erlang/cloudpanel/priv/www/partials/footer.html +6 -0
  20. data/lib/erlang/cloudpanel/priv/www/partials/header.html +13 -0
  21. data/lib/erlang/cloudpanel/priv/www/partials/menu.html +13 -0
  22. data/lib/erlang/cloudpanel/src/cloudpanel.hrl +1 -0
  23. data/lib/erlang/cloudpanel/src/cloudpanel_web.erl +18 -24
  24. data/lib/erlang/cloudpanel/src/string.erl +387 -0
  25. data/lib/erlang/cloudpanel/src/tail_log.erl +66 -0
  26. data/lib/erlang/cloudpanel/src/tailor.erl +31 -0
  27. data/lib/erlang/cloudpanel/src/utils.erl +9 -0
  28. data/lib/erlang/cloudpanel/src/views.erl +44 -0
  29. data/lib/erlang/cloudpanel/yaws.conf +20 -0
  30. data/lib/erlang/messenger/useful_snippets +1 -1
  31. data/lib/poolparty/aska/aska.rb +29 -4
  32. data/lib/poolparty/base_packages/poolparty.rb +14 -6
  33. data/lib/poolparty/config/postlaunchmessage.txt +5 -0
  34. data/lib/poolparty/exceptions/LoadRulesException.rb +7 -0
  35. data/lib/poolparty/helpers/provisioner_base.rb +24 -8
  36. data/lib/poolparty/helpers/provisioners/master.rb +8 -2
  37. data/lib/poolparty/helpers/provisioners/slave.rb +4 -3
  38. data/lib/poolparty/modules/method_missing_sugar.rb +1 -1
  39. data/lib/poolparty/monitors/base_monitor.rb +1 -1
  40. data/lib/poolparty/net/remoter.rb +8 -5
  41. data/lib/poolparty/plugins/git.rb +1 -1
  42. data/lib/poolparty/pool/base.rb +6 -3
  43. data/lib/poolparty/pool/cloud.rb +4 -2
  44. data/lib/poolparty/pool/loggable.rb +2 -5
  45. data/lib/poolparty/templates/yaws.conf +19 -0
  46. data/lib/poolparty/version.rb +1 -1
  47. data/lib/poolparty.rb +2 -2
  48. data/poolparty.gemspec +121 -2
  49. data/spec/poolparty/aska/aska_spec.rb +33 -0
  50. data/spec/poolparty/core/hash_spec.rb +3 -3
  51. data/spec/poolparty/net/remote_spec.rb +4 -3
  52. data/spec/poolparty/net/remoter_spec.rb +1 -0
  53. data/spec/poolparty/pool/base_spec.rb +11 -2
  54. data/spec/poolparty/pool/cloud_spec.rb +2 -2
  55. data/website/index.html +1 -1
  56. metadata +121 -2
@@ -213,12 +213,13 @@ describe "Remote" do
213
213
  before(:each) do
214
214
  setup
215
215
  stub_list_from_remote_for(@tc)
216
- @tc.stub!(:request_launch_new_instances).and_return true
216
+ @tc.stub!(:request_launch_new_instances).and_return PoolParty::Remote::RemoteInstance.new(:ip => "127.0.0.1", :num => 1)
217
217
  @tc.stub!(:can_start_a_new_instance).and_return true
218
218
  @tc.stub!(:list_of_pending_instances).and_return []
219
219
  @tc.stub!(:prepare_to_configuration).and_return true
220
220
  @tc.stub!(:build_and_store_new_config_file).and_return true
221
- PoolParty::Provisioner.stub!(:provision_slaves).and_return true
221
+ PoolParty::Provisioner.stub!(:provision_slaves).and_return true
222
+ Kernel.stub!(:system).and_return true
222
223
  end
223
224
  it "should receive can_start_a_new_instance?" do
224
225
  @tc.should_receive(:can_start_a_new_instance?).once
@@ -232,7 +233,7 @@ describe "Remote" do
232
233
  end
233
234
  it "should call a new slave provisioner" do
234
235
  @tc.stub!(:should_expand_cloud?).once.and_return true
235
- PoolParty::Provisioner.should_receive(:provision_slave).and_return true
236
+ Kernel.should_receive(:system).with(". /etc/profile && cloud-provision -i 5 2>&1 > /dev/null &").and_return true
236
237
  end
237
238
  it "should call reconfigure on the master to pick up the new slave" do
238
239
  @tc.stub!(:should_expand_cloud?).once.and_return true
@@ -68,6 +68,7 @@ describe "Remoter" do
68
68
  @tc.stub!(:verbose).and_return false
69
69
  Provisioner.stub!(:provision_master).and_return true
70
70
  Provisioner.stub!(:reconfigure_master).and_return true
71
+ Provisioner.stub!(:clear_master_ssl_certs).and_return true
71
72
  end
72
73
  it "should have the method launch_master!" do
73
74
  @tc.respond_to?(:launch_and_configure_master!).should == true
@@ -18,7 +18,7 @@ describe "Base" do
18
18
  Base.storage_directory.should =~ /tmp/
19
19
  end
20
20
  it "should set the tmp path to tmp" do
21
- Base.tmp_path.should =~ /\/tmp/
21
+ Base.tmp_path.should == "/tmp/poolparty"
22
22
  end
23
23
  it "should set the remote storage path to /var/poolparty" do
24
24
  Base.remote_storage_path.should == "/var/poolparty"
@@ -41,6 +41,13 @@ describe "Base" do
41
41
  ::File.stub!(:file?).with("ppkeys").and_return true
42
42
  Base.get_working_key_file_locations.should == "ppkeys"
43
43
  end
44
+ it "should call get_working_key_file_locations" do
45
+ @str = "foo"
46
+ @str.stub!(:read).and_return true
47
+ Base.stub!(:open).and_return @str
48
+ Base.should_receive(:get_working_key_file_locations)
49
+ Base.read_keyfile
50
+ end
44
51
  describe "with keyfile" do
45
52
  before(:each) do
46
53
  @keyfile = "ppkeys"
@@ -49,7 +56,9 @@ describe "Base" do
49
56
  :secret_access_key: SECRET"
50
57
  @keyfile.stub!(:read).and_return @str
51
58
  Base.stub!(:get_working_key_file_locations).and_return @keyfile
52
- Base.stub!(:open).with(@keyfile).and_return @keyfile
59
+ Base.stub!(:read_keyfile).and_return @str
60
+ Base.stub!(:open).and_return @str
61
+ Base.reset!
53
62
  end
54
63
  it "should call YAML::load on the working key file" do
55
64
  YAML.should_receive(:load).with(@str)
@@ -108,8 +108,8 @@ describe "Cloud" do
108
108
  it "should set the minimum_instances to 2" do
109
109
  @cloud.minimum_instances.should == 2
110
110
  end
111
- it "should set the maximum_instances to 4" do
112
- @cloud.maximum_instances.should == 4
111
+ it "should set the maximum_instances to 5" do
112
+ @cloud.maximum_instances.should == 5
113
113
  end
114
114
  it "should be able to set the minimum instances" do
115
115
  @cloud.minimum_instances 3
data/website/index.html CHANGED
@@ -34,7 +34,7 @@
34
34
  <h1>PoolParty</h1>
35
35
  <div id="version" class="clickable" onclick='document.location = "http://rubyforge.org/projects/poolparty"; return false'>
36
36
  <p>Get Version</p>
37
- <a href="http://rubyforge.org/projects/poolparty" class="numbers">0.2.39</a>
37
+ <a href="http://rubyforge.org/projects/poolparty" class="numbers">0.2.40</a>
38
38
  </div>
39
39
  <h1>&#8216;Easy cloud computing&#8217;</h1>
40
40
  <h2>What</h2>
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: auser-poolparty
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.39
4
+ version: 0.2.40
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ari Lerner
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2008-11-02 00:00:00 -07:00
12
+ date: 2008-11-04 00:00:00 -08:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
@@ -62,6 +62,7 @@ executables:
62
62
  - cloud-contract
63
63
  - cloud-ensure-provisioning
64
64
  - cloud-expand
65
+ - cloud-handle-load
65
66
  - cloud-list
66
67
  - cloud-maintain
67
68
  - cloud-osxcopy
@@ -97,6 +98,7 @@ extra_rdoc_files:
97
98
  - PostInstall.txt
98
99
  - README.txt
99
100
  - lib/erlang/messenger/lib/eunit/examples/tests.txt
101
+ - lib/poolparty/config/postlaunchmessage.txt
100
102
  - website/index.txt
101
103
  files:
102
104
  - History.txt
@@ -111,6 +113,7 @@ files:
111
113
  - bin/cloud-contract
112
114
  - bin/cloud-ensure-provisioning
113
115
  - bin/cloud-expand
116
+ - bin/cloud-handle-load
114
117
  - bin/cloud-list
115
118
  - bin/cloud-maintain
116
119
  - bin/cloud-osxcopy
@@ -146,21 +149,127 @@ files:
146
149
  - generators/poolspec/USAGE
147
150
  - generators/poolspec/poolspec_generator.rb
148
151
  - generators/poolspec/templates/pool_spec_template.erb
152
+ - lib/erlang/cloudpanel/EMakefile
149
153
  - lib/erlang/cloudpanel/Makefile
154
+ - lib/erlang/cloudpanel/cloudpanel.rb
155
+ - lib/erlang/cloudpanel/deps/mochiweb/LICENSE
156
+ - lib/erlang/cloudpanel/deps/mochiweb/Makefile
157
+ - lib/erlang/cloudpanel/deps/mochiweb/README
158
+ - lib/erlang/cloudpanel/deps/mochiweb/doc/mochifmt.html
159
+ - lib/erlang/cloudpanel/deps/mochiweb/doc/mochifmt_records.html
160
+ - lib/erlang/cloudpanel/deps/mochiweb/doc/mochifmt_std.html
161
+ - lib/erlang/cloudpanel/deps/mochiweb/doc/mochihex.html
162
+ - lib/erlang/cloudpanel/deps/mochiweb/doc/mochijson.html
163
+ - lib/erlang/cloudpanel/deps/mochiweb/doc/mochijson2.html
164
+ - lib/erlang/cloudpanel/deps/mochiweb/doc/mochinum.html
165
+ - lib/erlang/cloudpanel/deps/mochiweb/doc/mochiweb.html
166
+ - lib/erlang/cloudpanel/deps/mochiweb/doc/mochiweb_app.html
167
+ - lib/erlang/cloudpanel/deps/mochiweb/doc/mochiweb_charref.html
168
+ - lib/erlang/cloudpanel/deps/mochiweb/doc/mochiweb_cookies.html
169
+ - lib/erlang/cloudpanel/deps/mochiweb/doc/mochiweb_echo.html
170
+ - lib/erlang/cloudpanel/deps/mochiweb/doc/mochiweb_headers.html
171
+ - lib/erlang/cloudpanel/deps/mochiweb/doc/mochiweb_html.html
172
+ - lib/erlang/cloudpanel/deps/mochiweb/doc/mochiweb_http.html
173
+ - lib/erlang/cloudpanel/deps/mochiweb/doc/mochiweb_multipart.html
174
+ - lib/erlang/cloudpanel/deps/mochiweb/doc/mochiweb_request.html
175
+ - lib/erlang/cloudpanel/deps/mochiweb/doc/mochiweb_response.html
176
+ - lib/erlang/cloudpanel/deps/mochiweb/doc/mochiweb_skel.html
177
+ - lib/erlang/cloudpanel/deps/mochiweb/doc/mochiweb_socket_server.html
178
+ - lib/erlang/cloudpanel/deps/mochiweb/doc/mochiweb_sup.html
179
+ - lib/erlang/cloudpanel/deps/mochiweb/doc/mochiweb_util.html
180
+ - lib/erlang/cloudpanel/deps/mochiweb/doc/reloader.html
181
+ - lib/erlang/cloudpanel/deps/mochiweb/ebin/mochifmt.beam
182
+ - lib/erlang/cloudpanel/deps/mochiweb/ebin/mochifmt_records.beam
183
+ - lib/erlang/cloudpanel/deps/mochiweb/ebin/mochifmt_std.beam
184
+ - lib/erlang/cloudpanel/deps/mochiweb/ebin/mochihex.beam
185
+ - lib/erlang/cloudpanel/deps/mochiweb/ebin/mochijson.beam
186
+ - lib/erlang/cloudpanel/deps/mochiweb/ebin/mochijson2.beam
187
+ - lib/erlang/cloudpanel/deps/mochiweb/ebin/mochinum.beam
188
+ - lib/erlang/cloudpanel/deps/mochiweb/ebin/mochiweb.app
189
+ - lib/erlang/cloudpanel/deps/mochiweb/ebin/mochiweb.beam
190
+ - lib/erlang/cloudpanel/deps/mochiweb/ebin/mochiweb_app.beam
191
+ - lib/erlang/cloudpanel/deps/mochiweb/ebin/mochiweb_charref.beam
192
+ - lib/erlang/cloudpanel/deps/mochiweb/ebin/mochiweb_cookies.beam
193
+ - lib/erlang/cloudpanel/deps/mochiweb/ebin/mochiweb_echo.beam
194
+ - lib/erlang/cloudpanel/deps/mochiweb/ebin/mochiweb_headers.beam
195
+ - lib/erlang/cloudpanel/deps/mochiweb/ebin/mochiweb_html.beam
196
+ - lib/erlang/cloudpanel/deps/mochiweb/ebin/mochiweb_http.beam
197
+ - lib/erlang/cloudpanel/deps/mochiweb/ebin/mochiweb_multipart.beam
198
+ - lib/erlang/cloudpanel/deps/mochiweb/ebin/mochiweb_request.beam
199
+ - lib/erlang/cloudpanel/deps/mochiweb/ebin/mochiweb_response.beam
200
+ - lib/erlang/cloudpanel/deps/mochiweb/ebin/mochiweb_skel.beam
201
+ - lib/erlang/cloudpanel/deps/mochiweb/ebin/mochiweb_socket_server.beam
202
+ - lib/erlang/cloudpanel/deps/mochiweb/ebin/mochiweb_sup.beam
203
+ - lib/erlang/cloudpanel/deps/mochiweb/ebin/mochiweb_util.beam
204
+ - lib/erlang/cloudpanel/deps/mochiweb/ebin/reloader.beam
205
+ - lib/erlang/cloudpanel/deps/mochiweb/priv/skel/Makefile
206
+ - lib/erlang/cloudpanel/deps/mochiweb/priv/skel/priv/www/index.html
207
+ - lib/erlang/cloudpanel/deps/mochiweb/priv/skel/src/Makefile
208
+ - lib/erlang/cloudpanel/deps/mochiweb/priv/skel/src/skel.app
209
+ - lib/erlang/cloudpanel/deps/mochiweb/priv/skel/src/skel.erl
210
+ - lib/erlang/cloudpanel/deps/mochiweb/priv/skel/src/skel.hrl
211
+ - lib/erlang/cloudpanel/deps/mochiweb/priv/skel/src/skel_app.erl
212
+ - lib/erlang/cloudpanel/deps/mochiweb/priv/skel/src/skel_deps.erl
213
+ - lib/erlang/cloudpanel/deps/mochiweb/priv/skel/src/skel_sup.erl
214
+ - lib/erlang/cloudpanel/deps/mochiweb/priv/skel/src/skel_web.erl
215
+ - lib/erlang/cloudpanel/deps/mochiweb/priv/skel/start-dev.sh
216
+ - lib/erlang/cloudpanel/deps/mochiweb/priv/skel/start.sh
217
+ - lib/erlang/cloudpanel/deps/mochiweb/priv/skel/support/include.mk
218
+ - lib/erlang/cloudpanel/deps/mochiweb/scripts/new_mochiweb.erl
219
+ - lib/erlang/cloudpanel/deps/mochiweb/src/Makefile
220
+ - lib/erlang/cloudpanel/deps/mochiweb/src/mochifmt.erl
221
+ - lib/erlang/cloudpanel/deps/mochiweb/src/mochifmt_records.erl
222
+ - lib/erlang/cloudpanel/deps/mochiweb/src/mochifmt_std.erl
223
+ - lib/erlang/cloudpanel/deps/mochiweb/src/mochihex.erl
224
+ - lib/erlang/cloudpanel/deps/mochiweb/src/mochijson.erl
225
+ - lib/erlang/cloudpanel/deps/mochiweb/src/mochijson2.erl
226
+ - lib/erlang/cloudpanel/deps/mochiweb/src/mochinum.erl
227
+ - lib/erlang/cloudpanel/deps/mochiweb/src/mochiweb.app
228
+ - lib/erlang/cloudpanel/deps/mochiweb/src/mochiweb.erl
229
+ - lib/erlang/cloudpanel/deps/mochiweb/src/mochiweb_app.erl
230
+ - lib/erlang/cloudpanel/deps/mochiweb/src/mochiweb_charref.erl
231
+ - lib/erlang/cloudpanel/deps/mochiweb/src/mochiweb_cookies.erl
232
+ - lib/erlang/cloudpanel/deps/mochiweb/src/mochiweb_echo.erl
233
+ - lib/erlang/cloudpanel/deps/mochiweb/src/mochiweb_headers.erl
234
+ - lib/erlang/cloudpanel/deps/mochiweb/src/mochiweb_html.erl
235
+ - lib/erlang/cloudpanel/deps/mochiweb/src/mochiweb_http.erl
236
+ - lib/erlang/cloudpanel/deps/mochiweb/src/mochiweb_multipart.erl
237
+ - lib/erlang/cloudpanel/deps/mochiweb/src/mochiweb_request.erl
238
+ - lib/erlang/cloudpanel/deps/mochiweb/src/mochiweb_response.erl
239
+ - lib/erlang/cloudpanel/deps/mochiweb/src/mochiweb_skel.erl
240
+ - lib/erlang/cloudpanel/deps/mochiweb/src/mochiweb_socket_server.erl
241
+ - lib/erlang/cloudpanel/deps/mochiweb/src/mochiweb_sup.erl
242
+ - lib/erlang/cloudpanel/deps/mochiweb/src/mochiweb_util.erl
243
+ - lib/erlang/cloudpanel/deps/mochiweb/src/reloader.erl
244
+ - lib/erlang/cloudpanel/deps/mochiweb/support/include.mk
150
245
  - lib/erlang/cloudpanel/doc/cloudpanel.html
151
246
  - lib/erlang/cloudpanel/doc/cloudpanel_app.html
152
247
  - lib/erlang/cloudpanel/doc/cloudpanel_deps.html
153
248
  - lib/erlang/cloudpanel/doc/cloudpanel_sup.html
154
249
  - lib/erlang/cloudpanel/doc/cloudpanel_web.html
250
+ - lib/erlang/cloudpanel/doc/string.html
155
251
  - lib/erlang/cloudpanel/ebin/cloudpanel.app
156
252
  - lib/erlang/cloudpanel/ebin/cloudpanel.beam
157
253
  - lib/erlang/cloudpanel/ebin/cloudpanel_app.beam
158
254
  - lib/erlang/cloudpanel/ebin/cloudpanel_deps.beam
159
255
  - lib/erlang/cloudpanel/ebin/cloudpanel_sup.beam
160
256
  - lib/erlang/cloudpanel/ebin/cloudpanel_web.beam
257
+ - lib/erlang/cloudpanel/ebin/string.beam
258
+ - lib/erlang/cloudpanel/ebin/tail_log.beam
259
+ - lib/erlang/cloudpanel/ebin/tailor.beam
260
+ - lib/erlang/cloudpanel/ebin/utils.beam
261
+ - lib/erlang/cloudpanel/ebin/views.beam
262
+ - lib/erlang/cloudpanel/ebin/web_utils.beam
161
263
  - lib/erlang/cloudpanel/priv/www/images/bg_content.gif
162
264
  - lib/erlang/cloudpanel/priv/www/index.html
163
265
  - lib/erlang/cloudpanel/priv/www/javascripts/jquery.js
266
+ - lib/erlang/cloudpanel/priv/www/javascripts/site.js
267
+ - lib/erlang/cloudpanel/priv/www/pages/index.html
268
+ - lib/erlang/cloudpanel/priv/www/pages/tail.html
269
+ - lib/erlang/cloudpanel/priv/www/partials/error.html
270
+ - lib/erlang/cloudpanel/priv/www/partials/footer.html
271
+ - lib/erlang/cloudpanel/priv/www/partials/header.html
272
+ - lib/erlang/cloudpanel/priv/www/partials/menu.html
164
273
  - lib/erlang/cloudpanel/priv/www/stylesheets/application.css
165
274
  - lib/erlang/cloudpanel/priv/www/stylesheets/classes.css
166
275
  - lib/erlang/cloudpanel/priv/www/stylesheets/colors.css
@@ -173,9 +282,15 @@ files:
173
282
  - lib/erlang/cloudpanel/src/cloudpanel_deps.erl
174
283
  - lib/erlang/cloudpanel/src/cloudpanel_sup.erl
175
284
  - lib/erlang/cloudpanel/src/cloudpanel_web.erl
285
+ - lib/erlang/cloudpanel/src/string.erl
286
+ - lib/erlang/cloudpanel/src/tail_log.erl
287
+ - lib/erlang/cloudpanel/src/tailor.erl
288
+ - lib/erlang/cloudpanel/src/utils.erl
289
+ - lib/erlang/cloudpanel/src/views.erl
176
290
  - lib/erlang/cloudpanel/start-dev.sh
177
291
  - lib/erlang/cloudpanel/start.sh
178
292
  - lib/erlang/cloudpanel/support/include.mk
293
+ - lib/erlang/cloudpanel/yaws.conf
179
294
  - lib/erlang/messenger/Emakefile
180
295
  - lib/erlang/messenger/Makefile
181
296
  - lib/erlang/messenger/README
@@ -282,6 +397,7 @@ files:
282
397
  - lib/poolparty/base_packages/poolparty.rb
283
398
  - lib/poolparty/base_packages/ruby.rb
284
399
  - lib/poolparty/config/allowed_commands.yml
400
+ - lib/poolparty/config/postlaunchmessage.txt
285
401
  - lib/poolparty/core/array.rb
286
402
  - lib/poolparty/core/class.rb
287
403
  - lib/poolparty/core/exception.rb
@@ -298,6 +414,7 @@ files:
298
414
  - lib/poolparty/core/time.rb
299
415
  - lib/poolparty/dependency_resolutions/base.rb
300
416
  - lib/poolparty/dependency_resolutions/puppet.rb
417
+ - lib/poolparty/exceptions/LoadRulesException.rb
301
418
  - lib/poolparty/exceptions/MasterException.rb
302
419
  - lib/poolparty/exceptions/RemoteException.rb
303
420
  - lib/poolparty/exceptions/ResourceException.rb
@@ -368,8 +485,10 @@ files:
368
485
  - lib/poolparty/templates/puppet.conf
369
486
  - lib/poolparty/templates/puppetcleaner
370
487
  - lib/poolparty/templates/puppetrerun
488
+ - lib/poolparty/templates/yaws.conf
371
489
  - lib/poolparty/version.rb
372
490
  - lib/poolpartycl.rb
491
+ - log/pool.logs
373
492
  - poolparty.gemspec
374
493
  - script/destroy
375
494
  - script/generate