poise-application 5.1.0 → 5.2.0

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 (64) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +4 -1
  3. data/.kitchen.yml +1 -6
  4. data/.travis.yml +61 -22
  5. data/.yardopts +7 -0
  6. data/.yo-rc.json +7 -0
  7. data/CHANGELOG.md +6 -1
  8. data/Gemfile +4 -3
  9. data/README.md +7 -6
  10. data/Rakefile +1 -1
  11. data/lib/poise_application.rb +1 -1
  12. data/lib/poise_application/app_file_mixin.rb +6 -3
  13. data/lib/poise_application/app_mixin.rb +1 -1
  14. data/lib/poise_application/cheftie.rb +1 -1
  15. data/lib/poise_application/error.rb +1 -1
  16. data/lib/poise_application/resources.rb +2 -1
  17. data/lib/poise_application/resources/application.rb +1 -1
  18. data/lib/poise_application/resources/application_cookbook_file.rb +1 -1
  19. data/lib/poise_application/resources/application_directory.rb +50 -0
  20. data/lib/poise_application/resources/application_file.rb +1 -1
  21. data/lib/poise_application/resources/application_template.rb +1 -1
  22. data/lib/poise_application/service_mixin.rb +1 -1
  23. data/lib/poise_application/utils.rb +1 -1
  24. data/lib/poise_application/version.rb +2 -2
  25. data/poise-application.gemspec +5 -3
  26. data/test/{cookbooks/application_test → cookbook}/metadata.rb +1 -1
  27. data/test/{cookbooks/application_test → cookbook}/providers/test_plugin.rb +1 -1
  28. data/test/{cookbooks/application_test → cookbook}/recipes/default.rb +5 -1
  29. data/test/{cookbooks/application_test → cookbook}/resources/test_plugin.rb +1 -1
  30. data/test/gemfiles/chef-12.0.gemfile +5 -1
  31. data/test/gemfiles/chef-12.1.gemfile +5 -1
  32. data/{Berksfile → test/gemfiles/chef-12.10.gemfile} +7 -12
  33. data/test/gemfiles/chef-12.11.gemfile +23 -0
  34. data/test/gemfiles/chef-12.12.gemfile +22 -0
  35. data/test/gemfiles/chef-12.13.gemfile +22 -0
  36. data/test/gemfiles/chef-12.14.gemfile +19 -0
  37. data/test/gemfiles/chef-12.15.gemfile +19 -0
  38. data/test/gemfiles/chef-12.16.gemfile +19 -0
  39. data/test/gemfiles/chef-12.17.gemfile +19 -0
  40. data/test/gemfiles/chef-12.18.gemfile +19 -0
  41. data/test/gemfiles/chef-12.19.gemfile +19 -0
  42. data/test/gemfiles/chef-12.2.gemfile +5 -1
  43. data/test/gemfiles/chef-12.3.gemfile +5 -1
  44. data/test/gemfiles/chef-12.4.gemfile +6 -1
  45. data/test/gemfiles/chef-12.5.gemfile +5 -1
  46. data/test/gemfiles/chef-12.6.gemfile +5 -1
  47. data/test/gemfiles/chef-12.7.gemfile +23 -0
  48. data/test/gemfiles/chef-12.8.gemfile +23 -0
  49. data/test/gemfiles/chef-12.9.gemfile +23 -0
  50. data/test/gemfiles/chef-12.gemfile +2 -2
  51. data/test/gemfiles/chef-13.0.gemfile +19 -0
  52. data/test/gemfiles/chef-13.gemfile +19 -0
  53. data/test/gemfiles/master.gemfile +11 -6
  54. data/test/integration/default/serverspec/default_spec.rb +10 -1
  55. data/test/spec/app_mixin_spec.rb +1 -1
  56. data/test/spec/resources/application_cookbook_file_spec.rb +4 -4
  57. data/test/spec/resources/application_directory_spec.rb +100 -0
  58. data/test/spec/resources/application_file_spec.rb +4 -4
  59. data/test/spec/resources/application_spec.rb +1 -1
  60. data/test/spec/resources/application_template_spec.rb +4 -4
  61. data/test/spec/service_mixin_spec.rb +1 -1
  62. data/test/spec/spec_helper.rb +1 -1
  63. data/test/spec/utils_spec.rb +1 -1
  64. metadata +70 -16
@@ -0,0 +1,19 @@
1
+ #
2
+ # Copyright 2017, Noah Kantrowitz
3
+ #
4
+ # Licensed under the Apache License, Version 2.0 (the "License");
5
+ # you may not use this file except in compliance with the License.
6
+ # You may obtain a copy of the License at
7
+ #
8
+ # http://www.apache.org/licenses/LICENSE-2.0
9
+ #
10
+ # Unless required by applicable law or agreed to in writing, software
11
+ # distributed under the License is distributed on an "AS IS" BASIS,
12
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ # See the License for the specific language governing permissions and
14
+ # limitations under the License.
15
+ #
16
+
17
+ eval_gemfile File.expand_path('../../../Gemfile', __FILE__)
18
+
19
+ gem 'chef', '~> 13.0.118'
@@ -0,0 +1,19 @@
1
+ #
2
+ # Copyright 2017, Noah Kantrowitz
3
+ #
4
+ # Licensed under the Apache License, Version 2.0 (the "License");
5
+ # you may not use this file except in compliance with the License.
6
+ # You may obtain a copy of the License at
7
+ #
8
+ # http://www.apache.org/licenses/LICENSE-2.0
9
+ #
10
+ # Unless required by applicable law or agreed to in writing, software
11
+ # distributed under the License is distributed on an "AS IS" BASIS,
12
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ # See the License for the specific language governing permissions and
14
+ # limitations under the License.
15
+ #
16
+
17
+ eval_gemfile File.expand_path('../../../Gemfile', __FILE__)
18
+
19
+ gem 'chef', '~> 13.0'
@@ -1,5 +1,5 @@
1
1
  #
2
- # Copyright 2015, Noah Kantrowitz
2
+ # Copyright 2015-2016, Noah Kantrowitz
3
3
  #
4
4
  # Licensed under the Apache License, Version 2.0 (the "License");
5
5
  # you may not use this file except in compliance with the License.
@@ -16,8 +16,13 @@
16
16
 
17
17
  eval_gemfile File.expand_path('../../../Gemfile', __FILE__)
18
18
 
19
- gem 'chef', github: 'chef/chef'
20
- gem 'halite', github: 'poise/halite'
21
- gem 'poise', github: 'poise/poise'
22
- gem 'poise-boiler', github: 'poise/poise-boiler'
23
- gem 'poise-service', github: 'poise/poise-service'
19
+ gem 'chef', git: 'https://github.com/chef/chef.git'
20
+ gem 'chefspec', git: 'https://github.com/sethvargo/chefspec.git'
21
+ gem 'fauxhai', git: 'https://github.com/customink/fauxhai.git'
22
+ gem 'foodcritic', git: 'https://github.com/foodcritic/foodcritic.git'
23
+ gem 'halite', git: 'https://github.com/poise/halite.git'
24
+ gem 'ohai', git: 'https://github.com/chef/ohai.git'
25
+ gem 'poise', git: 'https://github.com/poise/poise.git'
26
+ gem 'poise-boiler', git: 'https://github.com/poise/poise-boiler.git'
27
+ gem 'poise-profiler', git: 'https://github.com/poise/poise-profiler.git'
28
+ gem 'poise-service', git: 'https://github.com/poise/poise-service.git'
@@ -1,5 +1,5 @@
1
1
  #
2
- # Copyright 2015, Noah Kantrowitz
2
+ # Copyright 2015-2016, Noah Kantrowitz
3
3
  #
4
4
  # Licensed under the Apache License, Version 2.0 (the "License");
5
5
  # you may not use this file except in compliance with the License.
@@ -28,6 +28,15 @@ describe file('/home/app/plugin') do
28
28
  its(:content) { is_expected.to eq 'test plugin' }
29
29
  end
30
30
 
31
+ describe file('/home/app/readme.txt') do
32
+ it { is_expected.to be_a_file }
33
+ its(:content) { is_expected.to eq 'hello' }
34
+ end
35
+
36
+ describe file('/home/app/logs') do
37
+ it { is_expected.to be_a_directory }
38
+ end
39
+
31
40
  describe 'restarter' do
32
41
  describe port(2000) do
33
42
  it { is_expected.to be_listening }
@@ -1,5 +1,5 @@
1
1
  #
2
- # Copyright 2015, Noah Kantrowitz
2
+ # Copyright 2015-2016, Noah Kantrowitz
3
3
  #
4
4
  # Licensed under the Apache License, Version 2.0 (the "License");
5
5
  # you may not use this file except in compliance with the License.
@@ -1,5 +1,5 @@
1
1
  #
2
- # Copyright 2015, Noah Kantrowitz
2
+ # Copyright 2015-2016, Noah Kantrowitz
3
3
  #
4
4
  # Licensed under the Apache License, Version 2.0 (the "License");
5
5
  # you may not use this file except in compliance with the License.
@@ -45,7 +45,7 @@ describe PoiseApplication::Resources::ApplicationCookbookFile do
45
45
  end
46
46
  end
47
47
 
48
- it { is_expected.to create_application_cookbook_file('app.conf').with(user: 'myuser') }
48
+ it { is_expected.to create_application_cookbook_file('app.conf').with(owner: 'myuser') }
49
49
  end # /context 'with an application user
50
50
 
51
51
  context 'with an application user and a local user' do
@@ -53,12 +53,12 @@ describe PoiseApplication::Resources::ApplicationCookbookFile do
53
53
  application '/home/app' do
54
54
  owner 'myuser'
55
55
  cookbook_file 'app.conf' do
56
- user 'otheruser'
56
+ owner 'otheruser'
57
57
  end
58
58
  end
59
59
  end
60
60
 
61
- it { is_expected.to create_application_cookbook_file('app.conf').with(user: 'otheruser') }
61
+ it { is_expected.to create_application_cookbook_file('app.conf').with(owner: 'otheruser') }
62
62
  end # /context 'with an application user and a local user
63
63
 
64
64
  context 'with an application group' do
@@ -0,0 +1,100 @@
1
+ #
2
+ # Copyright 2015-2016, Noah Kantrowitz
3
+ #
4
+ # Licensed under the Apache License, Version 2.0 (the "License");
5
+ # you may not use this file except in compliance with the License.
6
+ # You may obtain a copy of the License at
7
+ #
8
+ # http://www.apache.org/licenses/LICENSE-2.0
9
+ #
10
+ # Unless required by applicable law or agreed to in writing, software
11
+ # distributed under the License is distributed on an "AS IS" BASIS,
12
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ # See the License for the specific language governing permissions and
14
+ # limitations under the License.
15
+ #
16
+
17
+ require 'spec_helper'
18
+
19
+ describe PoiseApplication::Resources::ApplicationDirectory do
20
+ context 'with a relative path' do
21
+ recipe do
22
+ application '/home/app' do
23
+ directory 'logs'
24
+ end
25
+ end
26
+
27
+ it { is_expected.to create_application_directory('logs').with(path: '/home/app/logs') }
28
+ end # /context with a relative path
29
+
30
+ context 'with an absolute path' do
31
+ recipe do
32
+ application '/home/app' do
33
+ directory '/logs'
34
+ end
35
+ end
36
+
37
+ it { is_expected.to create_application_directory('/logs').with(path: '/logs') }
38
+ end # /context with an absolute path
39
+
40
+ context 'with an application user' do
41
+ recipe do
42
+ application '/home/app' do
43
+ owner 'myuser'
44
+ directory 'logs'
45
+ end
46
+ end
47
+
48
+ it { is_expected.to create_application_directory('logs').with(owner: 'myuser') }
49
+ end # /context 'with an application user
50
+
51
+ context 'with an application user and a local user' do
52
+ recipe do
53
+ application '/home/app' do
54
+ owner 'myuser'
55
+ directory 'logs' do
56
+ owner 'otheruser'
57
+ end
58
+ end
59
+ end
60
+
61
+ it { is_expected.to create_application_directory('logs').with(owner: 'otheruser') }
62
+ end # /context 'with an application user and a local user
63
+
64
+ context 'with an application group' do
65
+ recipe do
66
+ application '/home/app' do
67
+ group 'mygroup'
68
+ directory 'logs'
69
+ end
70
+ end
71
+
72
+ it { is_expected.to create_application_directory('logs').with(group: 'mygroup') }
73
+ end # /context 'with an application group
74
+
75
+ context 'with an application user and a local group' do
76
+ recipe do
77
+ application '/home/app' do
78
+ group 'mygroup'
79
+ directory 'logs' do
80
+ group 'othergroup'
81
+ end
82
+ end
83
+ end
84
+
85
+ it { is_expected.to create_application_directory('logs').with(group: 'othergroup') }
86
+ end # /context 'with an application group and a local group
87
+
88
+ context 'with more properties' do
89
+ recipe do
90
+ application '/home/app' do
91
+ directory 'logs' do
92
+ action :delete
93
+ recursive true
94
+ end
95
+ end
96
+ end
97
+
98
+ it { is_expected.to delete_application_directory('logs').with(recursive: true) }
99
+ end # /context with more properties
100
+ end
@@ -1,5 +1,5 @@
1
1
  #
2
- # Copyright 2015, Noah Kantrowitz
2
+ # Copyright 2015-2016, Noah Kantrowitz
3
3
  #
4
4
  # Licensed under the Apache License, Version 2.0 (the "License");
5
5
  # you may not use this file except in compliance with the License.
@@ -45,7 +45,7 @@ describe PoiseApplication::Resources::ApplicationFile do
45
45
  end
46
46
  end
47
47
 
48
- it { is_expected.to create_application_file('app.conf').with(user: 'myuser') }
48
+ it { is_expected.to create_application_file('app.conf').with(owner: 'myuser') }
49
49
  end # /context 'with an application user
50
50
 
51
51
  context 'with an application user and a local user' do
@@ -53,12 +53,12 @@ describe PoiseApplication::Resources::ApplicationFile do
53
53
  application '/home/app' do
54
54
  owner 'myuser'
55
55
  file 'app.conf' do
56
- user 'otheruser'
56
+ owner 'otheruser'
57
57
  end
58
58
  end
59
59
  end
60
60
 
61
- it { is_expected.to create_application_file('app.conf').with(user: 'otheruser') }
61
+ it { is_expected.to create_application_file('app.conf').with(owner: 'otheruser') }
62
62
  end # /context 'with an application user and a local user
63
63
 
64
64
  context 'with an application group' do
@@ -1,5 +1,5 @@
1
1
  #
2
- # Copyright 2015, Noah Kantrowitz
2
+ # Copyright 2015-2016, Noah Kantrowitz
3
3
  #
4
4
  # Licensed under the Apache License, Version 2.0 (the "License");
5
5
  # you may not use this file except in compliance with the License.
@@ -1,5 +1,5 @@
1
1
  #
2
- # Copyright 2015, Noah Kantrowitz
2
+ # Copyright 2015-2016, Noah Kantrowitz
3
3
  #
4
4
  # Licensed under the Apache License, Version 2.0 (the "License");
5
5
  # you may not use this file except in compliance with the License.
@@ -45,7 +45,7 @@ describe PoiseApplication::Resources::ApplicationTemplate do
45
45
  end
46
46
  end
47
47
 
48
- it { is_expected.to create_application_template('app.conf').with(user: 'myuser') }
48
+ it { is_expected.to create_application_template('app.conf').with(owner: 'myuser') }
49
49
  end # /context 'with an application user
50
50
 
51
51
  context 'with an application user and a local user' do
@@ -53,12 +53,12 @@ describe PoiseApplication::Resources::ApplicationTemplate do
53
53
  application '/home/app' do
54
54
  owner 'myuser'
55
55
  template 'app.conf' do
56
- user 'otheruser'
56
+ owner 'otheruser'
57
57
  end
58
58
  end
59
59
  end
60
60
 
61
- it { is_expected.to create_application_template('app.conf').with(user: 'otheruser') }
61
+ it { is_expected.to create_application_template('app.conf').with(owner: 'otheruser') }
62
62
  end # /context 'with an application user and a local user
63
63
 
64
64
  context 'with an application group' do
@@ -1,5 +1,5 @@
1
1
  #
2
- # Copyright 2015, Noah Kantrowitz
2
+ # Copyright 2015-2016, Noah Kantrowitz
3
3
  #
4
4
  # Licensed under the Apache License, Version 2.0 (the "License");
5
5
  # you may not use this file except in compliance with the License.
@@ -1,5 +1,5 @@
1
1
  #
2
- # Copyright 2015, Noah Kantrowitz
2
+ # Copyright 2015-2016, Noah Kantrowitz
3
3
  #
4
4
  # Licensed under the Apache License, Version 2.0 (the "License");
5
5
  # you may not use this file except in compliance with the License.
@@ -1,5 +1,5 @@
1
1
  #
2
- # Copyright 2015, Noah Kantrowitz
2
+ # Copyright 2015-2016, Noah Kantrowitz
3
3
  #
4
4
  # Licensed under the Apache License, Version 2.0 (the "License");
5
5
  # you may not use this file except in compliance with the License.
metadata CHANGED
@@ -1,15 +1,35 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: poise-application
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.1.0
4
+ version: 5.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Noah Kantrowitz
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-01-14 00:00:00.000000000 Z
11
+ date: 2017-04-24 00:00:00.000000000 Z
12
12
  dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: chef
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '12'
20
+ - - "<"
21
+ - !ruby/object:Gem::Version
22
+ version: '14'
23
+ type: :runtime
24
+ prerelease: false
25
+ version_requirements: !ruby/object:Gem::Requirement
26
+ requirements:
27
+ - - ">="
28
+ - !ruby/object:Gem::Version
29
+ version: '12'
30
+ - - "<"
31
+ - !ruby/object:Gem::Version
32
+ version: '14'
13
33
  - !ruby/object:Gem::Dependency
14
34
  name: halite
15
35
  requirement: !ruby/object:Gem::Requirement
@@ -58,14 +78,14 @@ dependencies:
58
78
  requirements:
59
79
  - - "~>"
60
80
  - !ruby/object:Gem::Version
61
- version: '1.0'
81
+ version: '1.6'
62
82
  type: :development
63
83
  prerelease: false
64
84
  version_requirements: !ruby/object:Gem::Requirement
65
85
  requirements:
66
86
  - - "~>"
67
87
  - !ruby/object:Gem::Version
68
- version: '1.0'
88
+ version: '1.6'
69
89
  description: A Chef cookbook for deploying application code.
70
90
  email:
71
91
  - noah@coderanger.net
@@ -76,7 +96,8 @@ files:
76
96
  - ".gitignore"
77
97
  - ".kitchen.yml"
78
98
  - ".travis.yml"
79
- - Berksfile
99
+ - ".yardopts"
100
+ - ".yo-rc.json"
80
101
  - CHANGELOG.md
81
102
  - Gemfile
82
103
  - LICENSE
@@ -91,30 +112,47 @@ files:
91
112
  - lib/poise_application/resources.rb
92
113
  - lib/poise_application/resources/application.rb
93
114
  - lib/poise_application/resources/application_cookbook_file.rb
115
+ - lib/poise_application/resources/application_directory.rb
94
116
  - lib/poise_application/resources/application_file.rb
95
117
  - lib/poise_application/resources/application_template.rb
96
118
  - lib/poise_application/service_mixin.rb
97
119
  - lib/poise_application/utils.rb
98
120
  - lib/poise_application/version.rb
99
121
  - poise-application.gemspec
100
- - test/cookbooks/application_test/metadata.rb
101
- - test/cookbooks/application_test/providers/test_plugin.rb
102
- - test/cookbooks/application_test/recipes/default.rb
103
- - test/cookbooks/application_test/resources/test_plugin.rb
122
+ - test/cookbook/metadata.rb
123
+ - test/cookbook/providers/test_plugin.rb
124
+ - test/cookbook/recipes/default.rb
125
+ - test/cookbook/resources/test_plugin.rb
104
126
  - test/docker/docker.ca
105
127
  - test/docker/docker.pem
106
128
  - test/gemfiles/chef-12.0.gemfile
107
129
  - test/gemfiles/chef-12.1.gemfile
130
+ - test/gemfiles/chef-12.10.gemfile
131
+ - test/gemfiles/chef-12.11.gemfile
132
+ - test/gemfiles/chef-12.12.gemfile
133
+ - test/gemfiles/chef-12.13.gemfile
134
+ - test/gemfiles/chef-12.14.gemfile
135
+ - test/gemfiles/chef-12.15.gemfile
136
+ - test/gemfiles/chef-12.16.gemfile
137
+ - test/gemfiles/chef-12.17.gemfile
138
+ - test/gemfiles/chef-12.18.gemfile
139
+ - test/gemfiles/chef-12.19.gemfile
108
140
  - test/gemfiles/chef-12.2.gemfile
109
141
  - test/gemfiles/chef-12.3.gemfile
110
142
  - test/gemfiles/chef-12.4.gemfile
111
143
  - test/gemfiles/chef-12.5.gemfile
112
144
  - test/gemfiles/chef-12.6.gemfile
145
+ - test/gemfiles/chef-12.7.gemfile
146
+ - test/gemfiles/chef-12.8.gemfile
147
+ - test/gemfiles/chef-12.9.gemfile
113
148
  - test/gemfiles/chef-12.gemfile
149
+ - test/gemfiles/chef-13.0.gemfile
150
+ - test/gemfiles/chef-13.gemfile
114
151
  - test/gemfiles/master.gemfile
115
152
  - test/integration/default/serverspec/default_spec.rb
116
153
  - test/spec/app_mixin_spec.rb
117
154
  - test/spec/resources/application_cookbook_file_spec.rb
155
+ - test/spec/resources/application_directory_spec.rb
118
156
  - test/spec/resources/application_file_spec.rb
119
157
  - test/spec/resources/application_spec.rb
120
158
  - test/spec/resources/application_template_spec.rb
@@ -123,9 +161,10 @@ files:
123
161
  - test/spec/utils_spec.rb
124
162
  homepage: https://github.com/poise/application
125
163
  licenses:
126
- - Apache 2.0
164
+ - Apache-2.0
127
165
  metadata:
128
166
  halite_name: application
167
+ platforms: any
129
168
  post_install_message:
130
169
  rdoc_options: []
131
170
  require_paths:
@@ -142,33 +181,48 @@ required_rubygems_version: !ruby/object:Gem::Requirement
142
181
  version: '0'
143
182
  requirements: []
144
183
  rubyforge_project:
145
- rubygems_version: 2.4.8
184
+ rubygems_version: 2.6.11
146
185
  signing_key:
147
186
  specification_version: 4
148
187
  summary: A Chef cookbook for deploying application code.
149
188
  test_files:
150
- - test/cookbooks/application_test/metadata.rb
151
- - test/cookbooks/application_test/providers/test_plugin.rb
152
- - test/cookbooks/application_test/recipes/default.rb
153
- - test/cookbooks/application_test/resources/test_plugin.rb
189
+ - test/cookbook/metadata.rb
190
+ - test/cookbook/providers/test_plugin.rb
191
+ - test/cookbook/recipes/default.rb
192
+ - test/cookbook/resources/test_plugin.rb
154
193
  - test/docker/docker.ca
155
194
  - test/docker/docker.pem
156
195
  - test/gemfiles/chef-12.0.gemfile
157
196
  - test/gemfiles/chef-12.1.gemfile
197
+ - test/gemfiles/chef-12.10.gemfile
198
+ - test/gemfiles/chef-12.11.gemfile
199
+ - test/gemfiles/chef-12.12.gemfile
200
+ - test/gemfiles/chef-12.13.gemfile
201
+ - test/gemfiles/chef-12.14.gemfile
202
+ - test/gemfiles/chef-12.15.gemfile
203
+ - test/gemfiles/chef-12.16.gemfile
204
+ - test/gemfiles/chef-12.17.gemfile
205
+ - test/gemfiles/chef-12.18.gemfile
206
+ - test/gemfiles/chef-12.19.gemfile
158
207
  - test/gemfiles/chef-12.2.gemfile
159
208
  - test/gemfiles/chef-12.3.gemfile
160
209
  - test/gemfiles/chef-12.4.gemfile
161
210
  - test/gemfiles/chef-12.5.gemfile
162
211
  - test/gemfiles/chef-12.6.gemfile
212
+ - test/gemfiles/chef-12.7.gemfile
213
+ - test/gemfiles/chef-12.8.gemfile
214
+ - test/gemfiles/chef-12.9.gemfile
163
215
  - test/gemfiles/chef-12.gemfile
216
+ - test/gemfiles/chef-13.0.gemfile
217
+ - test/gemfiles/chef-13.gemfile
164
218
  - test/gemfiles/master.gemfile
165
219
  - test/integration/default/serverspec/default_spec.rb
166
220
  - test/spec/app_mixin_spec.rb
167
221
  - test/spec/resources/application_cookbook_file_spec.rb
222
+ - test/spec/resources/application_directory_spec.rb
168
223
  - test/spec/resources/application_file_spec.rb
169
224
  - test/spec/resources/application_spec.rb
170
225
  - test/spec/resources/application_template_spec.rb
171
226
  - test/spec/service_mixin_spec.rb
172
227
  - test/spec/spec_helper.rb
173
228
  - test/spec/utils_spec.rb
174
- has_rdoc: