|
|
|
|
|
by ZeroFries
4071 days ago
|
|
I like the idea. Does not seem to handle my main use case however (transforming a schema entry in Rails to a list of symbols). Eg: Input: t.integer "Id" t.integer "Active" t.string "Email", null: false t.string "CryptedPassword", null: false t.datetime "created_at" t.datetime "updated_at" Example: :Id Output: :Id :Active :Email :CryptedPassword :created :updated |
|