cucumber-chef 2.1.0.rc.0 → 2.1.0.rc.1
Sign up to get free protection for your applications and to get access to all the features.
data/bin/cucumber-chef
CHANGED
@@ -35,6 +35,8 @@ class CucumberChef < Thor
|
|
35
35
|
source_dir = File.expand_path(File.join(File.dirname(__FILE__), "..", "lib", "cucumber", "chef", "templates", "cucumber"))
|
36
36
|
destination_dir = Cucumber::Chef.locate_parent(".chef")
|
37
37
|
|
38
|
+
@is_rc = Cucumber::Chef.is_rc?
|
39
|
+
|
38
40
|
CucumberChef.source_root source_dir
|
39
41
|
templates = {
|
40
42
|
"readme.erb" => "features/#{project}/README",
|
@@ -4,12 +4,13 @@
|
|
4
4
|
|
5
5
|
provider :aws
|
6
6
|
librarian_chef <%= @librarian_chef %>
|
7
|
+
lxc_user "root"
|
8
|
+
lab_user "ubuntu"
|
9
|
+
prerelease <%= @is_rc %>
|
7
10
|
|
8
11
|
artifacts ({ "chef-client-log" => "/var/log/chef/client.log",
|
9
12
|
"chef-client-stacktrace" => "/var/chef/cache/chef-stacktrace.out" })
|
10
13
|
|
11
|
-
lxc_user "root"
|
12
|
-
lab_user "ubuntu"
|
13
14
|
|
14
15
|
################################################################################
|
15
16
|
# Provider: AWS
|
@@ -24,7 +24,7 @@ module Cucumber
|
|
24
24
|
|
25
25
|
################################################################################
|
26
26
|
|
27
|
-
VERSION = "2.1.0.rc.
|
27
|
+
VERSION = "2.1.0.rc.1" unless const_defined?(:VERSION)
|
28
28
|
|
29
29
|
################################################################################
|
30
30
|
|