For excessively paranoid client authentication.
Original: https://gist.github.com/mtigas/952344
openssl x509 -in server.crt -out server.der -outform DER
openssl x509 -in server.der -inform DER -out server.pem -outform PEM
| 1) Commit everything you need to a branch and then create a new annotated tag locally | |
| git tag -a v0.1.0 -m "Primeira Versão de Produção Release v0.1.0" | |
| 2) Push the tag to remote | |
| git push origin v0.1.0 | |
| 3) When needed to fix something on tag delete the tag locally and commit everything necessary | |
| git tag -d v0.1.0 | |
| 3.1) Recreate the tag (step 1) |
For excessively paranoid client authentication.
Original: https://gist.github.com/mtigas/952344
openssl x509 -in server.crt -out server.der -outform DER
openssl x509 -in server.der -inform DER -out server.pem -outform PEM
-- Rubocop https://docs.rubocop.org/projects/rails/en/stable/cops_rails/ Dica rodar rubocop somente quando tiver os testes unitários $ rubocop $ rubocop -a $ rubocop --auto-gen-config
To set up rbenv follow this tutorial from digitalocean.
List only latest stable releases for each Ruby implementation
$ rbenv install -l
Git Flow Usage: Git Flow Commands
Basic Usage:
git init