hassox / rack-rescue

Catches and handles exceptions in rack
MIT License
26 stars 4 forks source link

Depends on ActiveSupport #1

Open rkh opened 14 years ago

rkh commented 14 years ago

Good work. For a seemingly slim middleware depending on AS is rather heavy, imho. I was thinking about adding it to the BigBand stack, but depending on AS is a no go. I understand that you might not consider this change, just wanted to let you know.

hassox commented 14 years ago

ActiveSupport is very limited in Rack::Rescue. It only loads what is needed, inheritable accessors string methods and such. It's deliberately kept as small as possible.

rkh commented 14 years ago

Yes, already saw that. I just had someone complain about even having to install AS and potentially loading two different extension libs. Hmmm... I'll think about that.