Skip to content

Commit

Permalink
Finalize RockyLinux 8 support (#74)
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-riddle authored Aug 1, 2023
1 parent a4220a2 commit b8c8804
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 20 deletions.
1 change: 1 addition & 0 deletions .github/workflows/pr_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,7 @@ jobs:
puppet_version: '~> 8.0'
ruby_version: 3.1
experimental: true
fail-fast: false
env:
PUPPET_VERSION: ${{matrix.puppet.puppet_version}}
steps:
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,4 @@ dist
/junit
/log
/doc
/Gemfile.lock
1 change: 1 addition & 0 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -340,6 +340,7 @@ pup7.pe-unit:
<<: *pup_7_pe
<<: *unit_tests

# Commenting until Puppet 8 is released
#pup8.x-unit:
# <<: *pup_8_x
# <<: *unit_tests
Expand Down
40 changes: 20 additions & 20 deletions REFERENCE.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,20 +6,20 @@

### Functions

* [`simpkv::delete`](#simpkvdelete): Deletes a `key` from the configured backend.
* [`simpkv::deletetree`](#simpkvdeletetree): Deletes a whole folder from the configured backend.
* [`simpkv::exists`](#simpkvexists): Returns whether key or key folder exists in the configured backend.
* [`simpkv::get`](#simpkvget): Retrieves the value and any metadata stored at `key` from the configured backend.
* [`simpkv::list`](#simpkvlist): Returns a listing of all keys and sub-folders in a folder. The list operation does not recurse through any sub-folders. Only information abo
* [`simpkv::put`](#simpkvput): Sets the data at `key` to the specified `value` in the configured backend. Optionally sets metadata along with the `value`.
* [`simpkv::support::config::merge`](#simpkvsupportconfigmerge): Create merged backend configuration and then validate it. The merge entails the following operations: * The `options` argument is merged wit
* [`simpkv::support::config::validate`](#simpkvsupportconfigvalidate): Validate backend configuration
* [`simpkv::support::key::validate`](#simpkvsupportkeyvalidate): Validates key conforms to the simpkv key specification * simpkv key specification * Key must contain only the following characters:
* [`simpkv::support::load`](#simpkvsupportload): Load simpkv adapter and plugins and add simpkv 'extension' to the catalog instance, if it is not present
* [`simpkv::delete`](#simpkv--delete): Deletes a `key` from the configured backend.
* [`simpkv::deletetree`](#simpkv--deletetree): Deletes a whole folder from the configured backend.
* [`simpkv::exists`](#simpkv--exists): Returns whether key or key folder exists in the configured backend.
* [`simpkv::get`](#simpkv--get): Retrieves the value and any metadata stored at `key` from the configured backend.
* [`simpkv::list`](#simpkv--list): Returns a listing of all keys and sub-folders in a folder. The list operation does not recurse through any sub-folders. Only information abo
* [`simpkv::put`](#simpkv--put): Sets the data at `key` to the specified `value` in the configured backend. Optionally sets metadata along with the `value`.
* [`simpkv::support::config::merge`](#simpkv--support--config--merge): Create merged backend configuration and then validate it. The merge entails the following operations: * The `options` argument is merged wit
* [`simpkv::support::config::validate`](#simpkv--support--config--validate): Validate backend configuration
* [`simpkv::support::key::validate`](#simpkv--support--key--validate): Validates key conforms to the simpkv key specification * simpkv key specification * Key must contain only the following characters:
* [`simpkv::support::load`](#simpkv--support--load): Load simpkv adapter and plugins and add simpkv 'extension' to the catalog instance, if it is not present

## Functions

### <a name="simpkvdelete"></a>`simpkv::delete`
### <a name="simpkv--delete"></a>`simpkv::delete`

Type: Ruby 4.x API

Expand Down Expand Up @@ -147,7 +147,7 @@ being compiled.
failed.
* Defaults to `false`.

### <a name="simpkvdeletetree"></a>`simpkv::deletetree`
### <a name="simpkv--deletetree"></a>`simpkv::deletetree`

Type: Ruby 4.x API

Expand Down Expand Up @@ -275,7 +275,7 @@ being compiled.
failed.
* Defaults to `false`.

### <a name="simpkvexists"></a>`simpkv::exists`
### <a name="simpkv--exists"></a>`simpkv::exists`

Type: Ruby 4.x API

Expand Down Expand Up @@ -415,7 +415,7 @@ being compiled.
failed.
* Defaults to `false`.

### <a name="simpkvget"></a>`simpkv::get`
### <a name="simpkv--get"></a>`simpkv::get`

Type: Ruby 4.x API

Expand Down Expand Up @@ -573,7 +573,7 @@ being compiled.
failed.
* Defaults to `false`.

### <a name="simpkvlist"></a>`simpkv::list`
### <a name="simpkv--list"></a>`simpkv::list`

Type: Ruby 4.x API

Expand Down Expand Up @@ -733,7 +733,7 @@ being compiled.
failed.
* Defaults to `false`.

### <a name="simpkvput"></a>`simpkv::put`
### <a name="simpkv--put"></a>`simpkv::put`

Type: Ruby 4.x API

Expand Down Expand Up @@ -879,7 +879,7 @@ being compiled.
failed.
* Defaults to `false`.

### <a name="simpkvsupportconfigmerge"></a>`simpkv::support::config::merge`
### <a name="simpkv--support--config--merge"></a>`simpkv::support::config::merge`

Type: Ruby 4.x API

Expand Down Expand Up @@ -962,7 +962,7 @@ Data type: `Array`
List of backends for which plugins have been successfully
loaded.

### <a name="simpkvsupportconfigvalidate"></a>`simpkv::support::config::validate`
### <a name="simpkv--support--config--validate"></a>`simpkv::support::config::validate`

Type: Ruby 4.x API

Expand Down Expand Up @@ -991,7 +991,7 @@ Data type: `Array`
List of backends for which plugins have been successfully
loaded.

### <a name="simpkvsupportkeyvalidate"></a>`simpkv::support::key::validate`
### <a name="simpkv--support--key--validate"></a>`simpkv::support::key::validate`

Type: Ruby 4.x API

Expand Down Expand Up @@ -1075,7 +1075,7 @@ Data type: `String[1]`

simpkv key

### <a name="simpkvsupportload"></a>`simpkv::support::load`
### <a name="simpkv--support--load"></a>`simpkv::support::load`

Type: Ruby 4.x API

Expand Down

0 comments on commit b8c8804

Please sign in to comment.