<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/ruby-gems/chef.git/spec/unit/resource, branch https</title>
<subtitle>github.com: opscode/chef.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/ruby-gems/chef.git/'/>
<entry>
<title>Merge pull request #10279 from chef/remove-instance-variable-from-shared-context</title>
<updated>2020-08-08T00:19:20+00:00</updated>
<author>
<name>Tim Smith</name>
<email>tsmith@chef.io</email>
</author>
<published>2020-08-08T00:19:20+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/ruby-gems/chef.git/commit/?id=534431b175055a471807b4cb8d4e1077b1c3cfe4'/>
<id>534431b175055a471807b4cb8d4e1077b1c3cfe4</id>
<content type='text'>
Clean up some interdependencies in script resource tests.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Clean up some interdependencies in script resource tests.</pre>
</div>
</content>
</entry>
<entry>
<title>Remove an unnecessary shared_context.</title>
<updated>2020-08-07T23:06:40+00:00</updated>
<author>
<name>Pete Higgins</name>
<email>pete@peterhiggins.org</email>
</author>
<published>2020-08-07T22:55:59+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/ruby-gems/chef.git/commit/?id=d0e23f8422fd44f036f1f8a1ba215e021c8ca59e'/>
<id>d0e23f8422fd44f036f1f8a1ba215e021c8ca59e</id>
<content type='text'>
Signed-off-by: Pete Higgins &lt;pete@peterhiggins.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Pete Higgins &lt;pete@peterhiggins.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Clean up some interdependencies in script resource tests.</title>
<updated>2020-08-07T22:53:15+00:00</updated>
<author>
<name>Pete Higgins</name>
<email>pete@peterhiggins.org</email>
</author>
<published>2020-08-07T22:53:15+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/ruby-gems/chef.git/commit/?id=e644f55902cc45a5fdd8a3bb7dbbc6879a542d56'/>
<id>e644f55902cc45a5fdd8a3bb7dbbc6879a542d56</id>
<content type='text'>
Signed-off-by: Pete Higgins &lt;pete@peterhiggins.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Pete Higgins &lt;pete@peterhiggins.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Simplify property definition.</title>
<updated>2020-08-07T21:45:51+00:00</updated>
<author>
<name>Pete Higgins</name>
<email>pete@peterhiggins.org</email>
</author>
<published>2020-08-07T19:10:06+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/ruby-gems/chef.git/commit/?id=43314d143c95c06b0fbff83ead0b15460d2d3058'/>
<id>43314d143c95c06b0fbff83ead0b15460d2d3058</id>
<content type='text'>
Signed-off-by: Pete Higgins &lt;pete@peterhiggins.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Pete Higgins &lt;pete@peterhiggins.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Convert osx_profile to custom resource</title>
<updated>2020-08-03T21:41:11+00:00</updated>
<author>
<name>Lamont Granquist</name>
<email>lamont@scriptkiddie.org</email>
</author>
<published>2020-08-03T21:40:08+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/ruby-gems/chef.git/commit/?id=6f93233791693b4ae193312628cb615c0fabe172'/>
<id>6f93233791693b4ae193312628cb615c0fabe172</id>
<content type='text'>
This also does some code cleanup.

The path property has been removed as a property since it was never
an input to the resource, and just some state that was necessary
to abuse the tempfile mechanism.

Documented the abuse of the tempfile mechanism for now (I think I
actually recall signing off on this awhile back because there was
no better way to do it, so its all half my fault, it's still horrible)

The actual shell_out calls now raise.  This might cause problems?  I
don't know, but it seems real bad to just blindly swallow errors and
continue.  Feels like more of a bugfix than a breaking change, but it
isn't documented clearly as to why those errors were being ignored
anywhere and didn't break any tests so it appears to be a coding
error.

The mutation of the new_resource was removed (other than the tempfile
hack) and migrated to state on the provider.

Removed some weird return values on things that are called from a
void context.

Added some lazy initializers for stuff that made it a lot more readable

Converted the cookbook_file resource to a real cookbook_file now that
we're in unified_mode.

Signed-off-by: Lamont Granquist &lt;lamont@scriptkiddie.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This also does some code cleanup.

The path property has been removed as a property since it was never
an input to the resource, and just some state that was necessary
to abuse the tempfile mechanism.

Documented the abuse of the tempfile mechanism for now (I think I
actually recall signing off on this awhile back because there was
no better way to do it, so its all half my fault, it's still horrible)

The actual shell_out calls now raise.  This might cause problems?  I
don't know, but it seems real bad to just blindly swallow errors and
continue.  Feels like more of a bugfix than a breaking change, but it
isn't documented clearly as to why those errors were being ignored
anywhere and didn't break any tests so it appears to be a coding
error.

The mutation of the new_resource was removed (other than the tempfile
hack) and migrated to state on the provider.

Removed some weird return values on things that are called from a
void context.

Added some lazy initializers for stuff that made it a lot more readable

Converted the cookbook_file resource to a real cookbook_file now that
we're in unified_mode.

Signed-off-by: Lamont Granquist &lt;lamont@scriptkiddie.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #9820 from MsysTechnologiesllc/dh/fix_feature_install_when_state_is_removed</title>
<updated>2020-07-31T17:36:41+00:00</updated>
<author>
<name>Tim Smith</name>
<email>tsmith@chef.io</email>
</author>
<published>2020-07-31T17:36:41+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/ruby-gems/chef.git/commit/?id=6d6ae2c5bd2f243a1405c1e829dcc329336be90e'/>
<id>6d6ae2c5bd2f243a1405c1e829dcc329336be90e</id>
<content type='text'>
Fix install windows features when install state is removed</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fix install windows features when install state is removed</pre>
</div>
</content>
</entry>
<entry>
<title>additional tests</title>
<updated>2020-07-31T06:57:09+00:00</updated>
<author>
<name>dheerajd-msys</name>
<email>dheeraj.dubey@msystechnologies.com</email>
</author>
<published>2020-07-31T03:55:28+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/ruby-gems/chef.git/commit/?id=183b65ae8b77ee8189b2aa147ca651620c4c8297'/>
<id>183b65ae8b77ee8189b2aa147ca651620c4c8297</id>
<content type='text'>
Signed-off-by: dheerajd-msys &lt;dheeraj.dubey@msystechnologies.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: dheerajd-msys &lt;dheeraj.dubey@msystechnologies.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>tests added</title>
<updated>2020-07-30T16:11:12+00:00</updated>
<author>
<name>dheerajd-msys</name>
<email>dheeraj.dubey@msystechnologies.com</email>
</author>
<published>2020-07-30T14:08:51+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/ruby-gems/chef.git/commit/?id=29e73bcc8b38cf587a72a6c24f30b60eb686ad87'/>
<id>29e73bcc8b38cf587a72a6c24f30b60eb686ad87</id>
<content type='text'>
Signed-off-by: dheerajd-msys &lt;dheeraj.dubey@msystechnologies.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: dheerajd-msys &lt;dheeraj.dubey@msystechnologies.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>eql -&gt; eq in the specs</title>
<updated>2020-07-22T02:05:25+00:00</updated>
<author>
<name>Tim Smith</name>
<email>tsmith84@gmail.com</email>
</author>
<published>2020-07-22T02:05:25+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/ruby-gems/chef.git/commit/?id=8ed25f15fe2ae28d12392635d27ef6afcbb1bbbc'/>
<id>8ed25f15fe2ae28d12392635d27ef6afcbb1bbbc</id>
<content type='text'>
Signed-off-by: Tim Smith &lt;tsmith@chef.io&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Tim Smith &lt;tsmith@chef.io&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Update spec/unit/resource/macos_user_defaults_spec.rb</title>
<updated>2020-07-22T02:04:26+00:00</updated>
<author>
<name>Tim Smith</name>
<email>tsmith@chef.io</email>
</author>
<published>2020-07-22T02:04:26+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/ruby-gems/chef.git/commit/?id=d52e33aac8fa9dc41ebcba4ad12844a32c752750'/>
<id>d52e33aac8fa9dc41ebcba4ad12844a32c752750</id>
<content type='text'>

Signed-off-by: Tim Smith &lt;tsmith@chef.io&gt;

Co-authored-by: pete higgins &lt;pete@peterhiggins.org&gt;</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>

Signed-off-by: Tim Smith &lt;tsmith@chef.io&gt;

Co-authored-by: pete higgins &lt;pete@peterhiggins.org&gt;</pre>
</div>
</content>
</entry>
</feed>
