0

I'm trying to install Dashing on my Linux mint. I'm having trouble with the gems it requires. I've installed the Dashing gem, but when I try to run dashing I get this error about eventmachine:

   /usr/local/lib/site_ruby/1.9.1/rubygems/dependency.rb:298:in `to_specs': Could not find 'eventmachine' (~> 1.0) - did find: [eventmachine-1.0.8-java,eventmachine-1.0.0-java] (Gem::LoadError)

gem list: (among others)

eventmachine (1.0.8 java, 1.0.0 java)

most of my other gems, don't mention java. I'm I pulling down the wrong gem?

thanks

ed_is_my_name
  • 601
  • 3
  • 9
  • 24

1 Answers1

0

Dashing makes use of a gemfile, so you should be able to install all dependencies with Bundler.

If you don't have it installed already, install it: gem install bundler

Now, cd into your dashboard directory.

Then, install the bundle for your dashboard: bundle install

Then, for good luck, run bundle exec dashing start to start your dashboard. This will ensure that Dashing runs from the bundle you just installed.

tylermauthe
  • 488
  • 4
  • 13