Changes between Version 10 and Version 11 of Software/eTutorialSupport


Ignore:
Timestamp:
Jun 27, 2016, 1:40:26 AM (8 years ago)
Author:
ffund01
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Software/eTutorialSupport

    v10 v11  
    216216=== Installing/configuring packages on Ubuntu ===
    217217
    218 These instructions are for installing the dashboard locally as an unprivileged user, not system-wide.
    219 
    220 First, install RVM and prepare to use it:
    221 
    222 {{{
    223 command curl -sSL https://rvm.io/mpapis.asc | gpg --import -
    224 curl -L https://get.rvm.io | bash -s stable
    225 source ~/.rvm/scripts/rvm
    226 }}}
    227 
    228 Install ruby 1.9.2 with RVM:
    229 
    230 {{{
    231 rvm install ruby-1.9.2
     218Install a JavaScript runtim:
     219
     220{{{
     221sudo apt-get install nodejs
    232222}}}
    233223
    234224Get the [https://github.com/Shopify/dashing dashing] gem:
    235225{{{
    236 rvm use 1.9.2
    237226gem install dashing
    238 gem install sqlite3
     227gem install bundler
    239228gem install execjs --version 1.4.0  # see https://github.com/Shopify/dashing/issues/195
    240229gem uninstall execjs --version 2.0.2
    241230}}}
    242231
    243 In  {{{~/.rvm/gems/ruby-1.9.2-p330/specifications/dashing-1.3.6.gemspec}}} (or equivalent), change the version for the "execjs" dependency to 1.4.0.
     232In the dashing gemspec (wherever it is located), you may have to change the version for the "execjs" dependency to 1.4.0.
     233
     234Get the source code for the dashboard. {{{cd}}} to that directory, then run
     235
     236{{{
     237bundle
     238dashing start
     239}}}
    244240
    245241