auser-poolparty 0.2.70 → 0.2.71
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/Manifest.txt +21 -1
- data/PostInstall.txt +1 -1
- data/lib/poolparty/core/class.rb +24 -0
- data/lib/poolparty/core/module.rb +2 -2
- data/lib/poolparty/dependency_resolutions/puppet.rb +9 -2
- data/lib/poolparty/helpers/provisioners/master.rb +1 -6
- data/lib/poolparty/plugins/deploydirectory.rb +5 -1
- data/lib/poolparty/pool/cloud.rb +2 -1
- data/lib/poolparty/pool/resource.rb +8 -5
- data/lib/poolparty/pool/script.rb +1 -1
- data/lib/poolparty/spec/core/string.rb +10 -0
- data/lib/poolparty/spec/matchers/a_spec_extensions_base.rb +24 -0
- data/lib/poolparty/spec/matchers/have_cron.rb +28 -0
- data/lib/poolparty/spec/matchers/have_deploydirectory.rb +15 -0
- data/lib/poolparty/spec/matchers/have_directory.rb +31 -0
- data/lib/poolparty/spec/matchers/have_exec.rb +28 -0
- data/lib/poolparty/spec/matchers/have_file.rb +28 -0
- data/lib/poolparty/spec/matchers/have_gempackage.rb +28 -0
- data/lib/poolparty/spec/matchers/have_git.rb +28 -0
- data/lib/poolparty/spec/matchers/have_host.rb +28 -0
- data/lib/poolparty/spec/matchers/have_mount.rb +28 -0
- data/lib/poolparty/spec/matchers/have_package.rb +28 -0
- data/lib/poolparty/spec/matchers/have_remotefile.rb +28 -0
- data/lib/poolparty/spec/matchers/have_rsyncmirror.rb +28 -0
- data/lib/poolparty/spec/matchers/have_service.rb +28 -0
- data/lib/poolparty/spec/matchers/have_sshkey.rb +28 -0
- data/lib/poolparty/spec/matchers/have_symlink.rb +28 -0
- data/lib/poolparty/spec/matchers/have_variable.rb +32 -0
- data/lib/poolparty/spec/spec/dynamic_matchers.rb +63 -0
- data/lib/poolparty/spec/spec/ensure_matchers_exist.rb +7 -0
- data/lib/poolparty/spec/{have_base.rb → templates/have_base.rb} +5 -6
- data/lib/poolparty/version.rb +1 -1
- data/lib/poolpartyspec.rb +11 -17
- data/poolparty.gemspec +599 -61
- data/website/index.html +1 -1
- metadata +28 -4
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.
|
37
|
+
<a href="http://rubyforge.org/projects/poolparty" class="numbers">0.2.71</a>
|
38
38
|
</div>
|
39
39
|
<h1>‘Easy cloud computing’</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.
|
4
|
+
version: 0.2.71
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ari Lerner
|
@@ -9,11 +9,12 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2008-11-
|
12
|
+
date: 2008-11-26 00:00:00 -08:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: activesupport
|
17
|
+
type: :runtime
|
17
18
|
version_requirement:
|
18
19
|
version_requirements: !ruby/object:Gem::Requirement
|
19
20
|
requirements:
|
@@ -23,6 +24,7 @@ dependencies:
|
|
23
24
|
version:
|
24
25
|
- !ruby/object:Gem::Dependency
|
25
26
|
name: logging
|
27
|
+
type: :runtime
|
26
28
|
version_requirement:
|
27
29
|
version_requirements: !ruby/object:Gem::Requirement
|
28
30
|
requirements:
|
@@ -32,6 +34,7 @@ dependencies:
|
|
32
34
|
version:
|
33
35
|
- !ruby/object:Gem::Dependency
|
34
36
|
name: ruby2ruby
|
37
|
+
type: :runtime
|
35
38
|
version_requirement:
|
36
39
|
version_requirements: !ruby/object:Gem::Requirement
|
37
40
|
requirements:
|
@@ -41,6 +44,7 @@ dependencies:
|
|
41
44
|
version:
|
42
45
|
- !ruby/object:Gem::Dependency
|
43
46
|
name: hoe
|
47
|
+
type: :development
|
44
48
|
version_requirement:
|
45
49
|
version_requirements: !ruby/object:Gem::Requirement
|
46
50
|
requirements:
|
@@ -409,7 +413,27 @@ files:
|
|
409
413
|
- lib/poolparty/pool/resources/symlink.rb
|
410
414
|
- lib/poolparty/pool/resources/variable.rb
|
411
415
|
- lib/poolparty/pool/script.rb
|
412
|
-
- lib/poolparty/spec/
|
416
|
+
- lib/poolparty/spec/core/string.rb
|
417
|
+
- lib/poolparty/spec/matchers/a_spec_extensions_base.rb
|
418
|
+
- lib/poolparty/spec/matchers/have_cron.rb
|
419
|
+
- lib/poolparty/spec/matchers/have_deploydirectory.rb
|
420
|
+
- lib/poolparty/spec/matchers/have_directory.rb
|
421
|
+
- lib/poolparty/spec/matchers/have_exec.rb
|
422
|
+
- lib/poolparty/spec/matchers/have_file.rb
|
423
|
+
- lib/poolparty/spec/matchers/have_gempackage.rb
|
424
|
+
- lib/poolparty/spec/matchers/have_git.rb
|
425
|
+
- lib/poolparty/spec/matchers/have_host.rb
|
426
|
+
- lib/poolparty/spec/matchers/have_mount.rb
|
427
|
+
- lib/poolparty/spec/matchers/have_package.rb
|
428
|
+
- lib/poolparty/spec/matchers/have_remotefile.rb
|
429
|
+
- lib/poolparty/spec/matchers/have_rsyncmirror.rb
|
430
|
+
- lib/poolparty/spec/matchers/have_service.rb
|
431
|
+
- lib/poolparty/spec/matchers/have_sshkey.rb
|
432
|
+
- lib/poolparty/spec/matchers/have_symlink.rb
|
433
|
+
- lib/poolparty/spec/matchers/have_variable.rb
|
434
|
+
- lib/poolparty/spec/spec/dynamic_matchers.rb
|
435
|
+
- lib/poolparty/spec/spec/ensure_matchers_exist.rb
|
436
|
+
- lib/poolparty/spec/templates/have_base.rb
|
413
437
|
- lib/poolparty/templates/authkeys
|
414
438
|
- lib/poolparty/templates/cib.xml
|
415
439
|
- lib/poolparty/templates/gem
|
@@ -528,7 +552,7 @@ files:
|
|
528
552
|
has_rdoc: true
|
529
553
|
homepage: http://poolparty.rubyforge.org
|
530
554
|
post_install_message: |-
|
531
|
-
Get ready to jump in the pool, you just installed PoolParty! (Updated at
|
555
|
+
Get ready to jump in the pool, you just installed PoolParty! (Updated at 17:10 11/26/08)
|
532
556
|
|
533
557
|
To get started, run the generator:
|
534
558
|
|