Closed timkurvers closed 3 years ago
Proposal to deprecate Cellular::Backends and introduce:
Cellular::Backends
class Cellular::Backend def deliver(...) raise NotImplementedError end end class Cellular::Backend::HyperSMS < Cellular::Backend; end
For backwards compatibility we could point Cellular::Backends to Cellular::Backend.
Cellular::Backend
Yeah, this seems like a good idea. That would also get rid of that pesky autoload. We should definitely do this! :+1:
autoload
Proposal to deprecate
Cellular::Backends
and introduce:For backwards compatibility we could point
Cellular::Backends
toCellular::Backend
.