I just started using the ruby-bulksms gem, but I found a problem.
In our project (rails 2.3.11), we have a model named Message that is used for the internal messaging system. However, when I started using the ruby-bulksms gem, that model can no longer be accessed, as the Net::SMS::BulkSMS::Message is used instead.
Calling ::Message or ActiveRecord::Base::Message yields the same result, i.e., the Net::SMS::BulkSMS::Message is returned instead.
I just started using the ruby-bulksms gem, but I found a problem.
In our project (rails 2.3.11), we have a model named
Messagethat is used for the internal messaging system. However, when I started using the ruby-bulksms gem, that model can no longer be accessed, as theNet::SMS::BulkSMS::Messageis used instead.Calling
::MessageorActiveRecord::Base::Messageyields the same result, i.e., theNet::SMS::BulkSMS::Messageis returned instead.