This Gem can detect that the keys in the yaml file do not match for each environment.
This prevents cases where errors occur only in the production environment.
It works powerfully in Rails, but of course it can be used in other applications as well.
The following is an example
# This file is OK.
development: &default
db:
username: username
password: password
test:
<<: *default
integration:
<<: *default
production:
<<: *default
db:
username: <%= ENV['DATABASE_UERNAME'] %>
password: <%= ENV['DATABASE_PASSWORD'] %>
# This file is NG. Raises an exception.
development: &default
db:
username: username
password: password
test:
<<: *default
integration:
<<: *default
production:
<<: *default
db:
username: <%= ENV['DATABASE_UERNAME'] %>
password: <%= ENV['DATABASE_PASSWORD'] %>
Add this line to your application's Gemfile:
gem 'yaml_structure_checker'
And then execute:
$ bundle
Or install it yourself as:
$ gem install yaml_structure_checker
Add the configuration file config/yaml_structure_checker.yml
.
YAML structure checker loads config/yaml_structure_checker.yml
by default.
An example follows
# config/yaml_structure_checker.yml
include_patterns:
- config/**/*.yml
exclude_patterns:
- config/locales/**/*.yml
envs:
- development
- test
- integration
- production
skip_paths:
- config/gcp.yml
include_patterns | Specifies the pattern of files to inspect for keys. |
exclude_patterns | Specifies patterns to exclude from include_patterns. |
envs | Specifies the environment in which comparisons will be made by the check. |
skip_paths | Specifies file paths to exclude from include_patterns. |
Run the yaml_structure_checker
command to check your YAML files.
$ bundle exec yaml_structure_checker
#################################
# YAML Structure Check #
#################################
Exclude paths:
spec/fixtures/checker/target/exclude/example.yml
spec/fixtures/checker/target/failed/alias.yml
spec/fixtures/checker/target/failed/diff.yml
Skip paths:
spec/fixtures/checker/target/skip/example.yml
# spec/fixtures/checker/target/success/alias.yml
Result: OK
# spec/fixtures/checker/target/success/same.yml
Result: OK
#################################
# YAML Structure Check Result #
#################################
NG paths:
nothing
Total count: 6
Exclude count: 3
Skip count: 1
OK count: 2
NG count: 0
If you want to use a configuration file other than config/yaml_structure_checker.yml
, do the following
$ bundle exec yaml_structure_checker other_yaml_faile_path.yml
It is recommended to run it through CI.
The following is an example of Github Actions.
name: CI
on: push
jobs:
ci:
name: CI
runs-on: ubuntu-latest
container:
image: ruby:3.2.2
steps:
- uses: actions/checkout@v2
- name: Bundle install
run: bundle install --path=vendor/bundle --jobs 4 --retry 3
- name: YAML structure checker
run: bundle exec yaml_structure_checker
After checking out the repo, run bin/setup
to install dependencies. Then, run rake spec
to run the tests. You can also run bin/console
for an interactive prompt that will allow you to experiment.
To install this gem onto your local machine, run bundle exec rake install
. To release a new version, update the version number in version.rb
, and then run bundle exec rake release
, which will create a git tag for the version, push git commits and the created tag, and push the .gem
file to rubygems.org.
Also, you can use Docker.
docker-compose run --rm app /bin/bash
Bug reports and pull requests are welcome on GitHub at https://github.com/yosipy/yaml_structure_checker. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the code of conduct.
The gem is available as open source under the terms of the MIT License.
Everyone interacting in the YAMLStructureChecker project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the code of conduct.