scythe-codegen 0.6.6

Polyglot code generation backends for scythe
Documentation
[backend]
name = "ruby-pg"
language = "ruby"
file_extension = "rb"
engine = "redshift"
description = "Ruby code generation targeting pg gem with Redshift"

[types.scalars]
bool = "Boolean"
int16 = "Integer"
int32 = "Integer"
int64 = "Integer"
float32 = "Float"
float64 = "Float"
string = "String"
bytes = "String"
uuid = "String"
decimal = "BigDecimal"
date = "Date"
time = "Time"
time_tz = "Time"
datetime = "Time"
datetime_tz = "Time"
interval = "String"
json = "Hash"
inet = "String"
super = "Hash"
geometry = "String"

[types.containers]
array = "Array<{T}>"
nullable = "{T}"
range = "String"
json_typed = "{T}"

[naming]
struct_case = "PascalCase"
field_case = "snake_case"
fn_case = "snake_case"
enum_variant_case = "SCREAMING_SNAKE_CASE"
row_suffix = "Row"

[imports.rules]