cucumber-chef 3.0.0.rc.0 → 3.0.0.rc.1
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +9 -3
- data/WIKI.2.x.md +826 -0
- data/WIKI.md +287 -755
- data/bin/cucumber-chef +16 -19
- data/cucumber-chef.gemspec +1 -1
- data/lib/cucumber/chef/client.rb +86 -63
- data/lib/cucumber/chef/containers.rb +70 -64
- data/lib/cucumber/chef/helpers/chef.rb +5 -5
- data/lib/cucumber/chef/provider.rb +1 -1
- data/lib/cucumber/chef/providers/aws.rb +1 -1
- data/lib/cucumber/chef/providers/vagrant.rb +1 -1
- data/lib/cucumber/chef/provisioner.rb +3 -2
- data/lib/cucumber/chef/steps/chef_steps.rb +4 -4
- data/lib/cucumber/chef/steps/minitest_steps.rb +2 -2
- data/lib/cucumber/chef/steps/ssh_steps.rb +3 -3
- data/lib/cucumber/chef/templates/bootstrap/ubuntu-precise-test-lab.erb +14 -14
- data/lib/cucumber/chef/templates/cucumber/cc-hooks.rb +10 -63
- data/lib/cucumber/chef/version.rb +1 -1
- data/lib/cucumber-chef/rake/task.rb +11 -11
- metadata +5 -4
data/README.md
CHANGED
@@ -1,4 +1,6 @@
|
|
1
|
-
[![
|
1
|
+
[![Dependency Status](https://gemnasium.com/jovelabs/cucumber-chef.png)](https://gemnasium.com/jovelabs/cucumber-chef)
|
2
|
+
|
3
|
+
[![Build Status](https://secure.travis-ci.org/jovelabs/cucumber-chef.png)](http://travis-ci.org/jovelabs/cucumber-chef)
|
2
4
|
|
3
5
|
Cucumber-chef is a library of tools to enable the emerging discipline of infrastructure as code to practice test driven development. It provides a testing platform within which Cucumber tests can be run which provision virtual machines, configure them by applying the appropriate Chef roles to them, and then run acceptance and integration tests against the environment.
|
4
6
|
|
@@ -16,16 +18,20 @@ Wiki:
|
|
16
18
|
|
17
19
|
* https://github.com/Atalanta/cucumber-chef/blob/master/WIKI.md
|
18
20
|
|
21
|
+
Forums:
|
22
|
+
|
23
|
+
* https://groups.google.com/d/forum/cucumber-chef
|
24
|
+
|
19
25
|
Chat:
|
20
26
|
|
21
|
-
* #cucumber-chef
|
27
|
+
* #cucumber-chef @ irc.freenode.net
|
22
28
|
|
23
29
|
# LICENSE
|
24
30
|
|
25
31
|
Cucumber-Chef - A test driven infrastructure system
|
26
32
|
|
27
33
|
* Author: Stephen Nelson-Smith <stephen@atalanta-systems.com>
|
28
|
-
* Author: Zachary Patten <zachary@jovelabs.com>
|
34
|
+
* Author: Zachary Patten <zachary@jovelabs.com> [![endorse](http://api.coderwall.com/zpatten/endorsecount.png)](http://coderwall.com/zpatten)
|
29
35
|
* Copyright: Copyright (c) 2011-2013 Atalanta Systems Ltd
|
30
36
|
* License: Apache License, Version 2.0
|
31
37
|
|