Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Automated PR: Cookstyle Changes #263

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

This file is used to list changes made in each version of the habitat cookbook.

## Unreleased ## Unreleased

- resolved cookstyle error: resources/config.rb:1:1 refactor: `Chef/Deprecations/ResourceWithoutUnifiedTrue`
- resolved cookstyle error: resources/install.rb:1:1 refactor: `Chef/Deprecations/ResourceWithoutUnifiedTrue`
- resolved cookstyle error: resources/service.rb:1:1 refactor: `Chef/Deprecations/ResourceWithoutUnifiedTrue`
- resolved cookstyle error: resources/user_toml.rb:1:1 refactor: `Chef/Deprecations/ResourceWithoutUnifiedTrue`

## Unreleased

<!-- latest_release unreleased -->
Expand Down Expand Up @@ -596,4 +603,4 @@ This cookbook was updated to be compatible with the changes made in Habitat 0.26

## v0.0.3 (2016-07-14)

- Initial release, includes `hab_package` and `hab_install` resources
- Initial release, includes `hab_package` and `hab_install` resources
1 change: 1 addition & 0 deletions resources/config.rb
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@

resource_name :hab_config
provides :hab_config
unified_mode true

property :config, Mash,
required: true,
Expand Down
1 change: 1 addition & 0 deletions resources/install.rb
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@

resource_name :hab_install
provides :hab_install
unified_mode true

property :name, String, default: ''
# The following are only used on *nix
Expand Down
1 change: 1 addition & 0 deletions resources/service.rb
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@

resource_name :hab_service
provides :hab_service
unified_mode true

property :service_name, String, name_property: true
property :loaded, [true, false], default: false
Expand Down
1 change: 1 addition & 0 deletions resources/user_toml.rb
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
# See the License for the specific language governing
resource_name :hab_user_toml
provides :hab_user_toml
unified_mode true

property :config, Mash,
required: true,
Expand Down