user955732
user955732

Reputation: 1370

Ruby Dashboard - Dashing - needs rails to run?

Trying to set up the sample project following the instructions found on the project page for Dashing. When starting up using the command: $ dashing start, nothing happens, no errors, no output, nothing.

I have not install rails and its not mentioned as a requirement in the instructions, but is it needed for Dashing to run?

Any ideas how to trace this, or what might be wrong here?

Thanks!

Upvotes: 1

Views: 1062

Answers (1)

Stoic
Stoic

Reputation: 10754

You can test if the dashing gem is working, by following the steps outlined on this page:

  1. gem install dashing
  2. dashing new sweet_dashboard_project
  3. bundle
  4. dashing start

I tried the above steps before posting this as an answer, and everything seems to work nicely. However, I needed to comment everything inside jobs/twitter.rb file (you can, alternatively, add your twitter API credentials to that file)

Upvotes: 1

Related Questions