diff --git a/config/initializers/monkey_patch_arel.rb b/config/initializers/monkey_patch_arel.rb deleted file mode 100644 index bed0da5c..00000000 --- a/config/initializers/monkey_patch_arel.rb +++ /dev/null @@ -1,15 +0,0 @@ -# From https://github.com/rails/arel/issues/149 -# Also fixes https://github.com/rails/rails/issues/9263 - -module Arel - module Nodes - class SqlLiteral < String - def encode_with(coder) - coder['string'] = to_s - end - def init_with(coder) - clear << coder['string'] - end - end - end -end \ No newline at end of file