How to implement twitter-text-rb

Hi, I'm trying to use twitter-text-rb gem.

added "enable Twitter :: Autolink" in the application assistant, following the example after restarting the server that received the error

Routing error

uninitialized constant Twitter::Autolink 
+4
source share
1 answer

Add this to your gemfile:

 gem 'twitter-text' 

And then run:

 bundle install 
+3
source

Source: https://habr.com/ru/post/1416114/


All Articles