First, thank you for considering contributing to Uffizzi! You are what drive the open source community.
Uffizzi welcomes all contributions from everyone, not just Pull Requests. You can also help by filing detailed bug reports, proposing new features, and sharing Continuous Previews and Uffizzi with your local community.
Working on your first Pull Request? You can learn how from this free series How to Contribute to an Open Source Project on GitHub
If you find a security vulnerability, DO NOT open an issue. Email [email protected] instead.
Please join us on the Uffizzi Slack where we look forward to discussing any feature requests, bugs, and other proposed changes.
After checking out the repo, run bin/setup
to install dependencies. Then, run bundle exec rake test
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.
Run rubocop:
bundle exec rubocop -A
In order to generate a manual, create a .ronn
file having a name pattern like uffizzi-{command-name}
(for example uffizzi-project-compose
) in the man
directory and run bundle exec ronn man/{filename}.ronn
Run tests:
bundle exec rake test
Run tests from a file:
bundle exec rake test TEST=test/uffizzi/cli/preview_test.rb
Run single test
bundle exec rake test TEST=test/uffizzi/cli/preview_test.rb TESTOPTS="--name=test_name"
-
Clone the repository and checkout to
develop
branch -
Pull repository to ensure you have the latest changes
git pull --rebase develop
- Start new branch from
develop
git checkout -b feature/ISSUE_NUMBER_short_issue_description (e.g. feature/99_add_domain_settings)
- Make changes you need for the feature, commit them to the repo
git add .
git commit -m '[#ISSUE_NUMBER] short commit description' (e.g. git commit -m '[#99] added domain settings')
git push origin BRANCH_NAME
-
You already can create PR with develop branch as a target. Once the feature is ready let us know in the channel - we will review
-
Merge your feature to
qa
branch and push. Ensure your pipeline is successful
git checkout qa
git pull --rebase qa
git merge --no-ff BRANCH_NAME
git push origin qa