/twitter-sentimentalizer

A rails application to gather tweets related to a keyword and perform sentiment analysis on them.

Primary LanguageRuby

Twitter-Sentimentalizer

Introduction

Twitter-sentimentalizer is a rails application that gathers tweets from twitter related to a searched keyword and performs sentiment analysis on them.Here is a screenshot:

./vendor/assets/images/sentiment.png

Dependencies

This application uses following gems:

  • gem ‘twitter’
    • gem ‘sentimental’
    • gem ‘chartkick’
  • gem ‘groupdate’

To Run the application

Clone this repository into your computer:

	git clone git@github.com:neymarsabin/twitter-sentimentalizer.git

This application use sqlite as the development database.Move into the application directory and perform:

	rails db:create
	rails db:migrate

This will create the database and perform nescessary migrations.And,

	rails server -p 8000