# README
goRailsYourself
A suite of packages useful when you have to deal with Go and Rails apps or when migrating from Ruby to Go.
The crypto package allows for shared authentication cookie support with Rails, included version 5.2+.
See the documentation and/or the test suite for more examples.
Dependencies:
The inflector package relies on: unidecode to handle the transliteration.
The crypto package relies on: pbkdf2 to handle the generation of derived keys.
The test suite uses Goblin
# Packages
Package crypto ports some of Ruby on Rails' crypto:
* version 4+: encrypted & signed messages (aes-cbc)
* version 5.2+: encrypted & authenticated messages (aes-256-gcm)
Messages can be shared between a Ruby app and a Go app.
The inflector package ports some of Rails' ActiveSupport functions that can be useful outside of Rails.