You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have twilio-ruby installed, and just tried to install this gem. I added the lines requiring "sms_spec" to my spec_helper.rb file, but whenever I try to run my specs, I get the following error:
uninitialized constant Twilio
I'm running Rails 3.2.11, version 3.9.0 of twilio-ruby, and version 0.1.6 of this gem. Am I missing something?
The text was updated successfully, but these errors were encountered:
I had this issue also and oddly enough I just changed the order of 'twilio-ruby' inclusion within my gemfile. I had it below my group :test block and moved it above and it fixed the issue.
Oddly enough manually requiring twilio-ruby within my spec_helper file did not fix it.
I also had this issue, and changing the position of 'twilio-ruby' from below the test block to above it fixed it. I'm not sure bundler is supposed to work this way, but at least now it doesn't crash on startup.
I have
twilio-ruby
installed, and just tried to install this gem. I added the lines requiring "sms_spec" to my spec_helper.rb file, but whenever I try to run my specs, I get the following error:uninitialized constant Twilio
I'm running Rails 3.2.11, version 3.9.0 of twilio-ruby, and version 0.1.6 of this gem. Am I missing something?
The text was updated successfully, but these errors were encountered: