Member-only story

Twitter Search Application In Ruby on Rails

Gokul
5 min readJun 12, 2021

--

Nowadays most famous people like actors, politicians, and influencers use Twitter to publish their thoughts, feelings, information…

Twitter is what’s happening and what people are talking about right now.

Here I’m going to explain how to integrate the Twitter text search with the Ruby on rails application.

Step 1

Create a new rails application

rails new twitter_search --skip-keeps --skip-active-storage --skip-action-cable --skip-active-record - T --skip-active-job --skip-action-text

twitter_search => Application name

--skip-keeps => Skip source control .keep files

--skip-active-storage => Skip Active Storage files

--skip-action-cable => Skip Action Cable files

--skip-active-record => Skip Active Record files

- T => Skip test files

--skip-active-job => Skip Active Job

--skip-action-text => Skip Action Text gem

Once the new Ruby on rails application has been created, execute the rails s command in the terminal and make sure the application is running without any issue and getting the following screen.

--

--

Gokul
Gokul

No responses yet