Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Rails gem for adding an on site tutorial

Does anyone know of a gem for rails to add a tutorial to a site?

Something like a step by step tutorial that a logged in user can follow when they come to a site. It would have things like:

  • a sequence of steps or lessons to progress through
  • the ability to mark lessons as done either by the user or within the site
  • the ability to skip steps/lessons
  • turn the tutorial on or off for the user

Online games often have an introductory tutorial like this and I'm just wondering if there are any gems to shortcut setting one up.

like image 872
Shadwell Avatar asked Feb 19 '13 22:02

Shadwell


People also ask

What is the difference between gem and plugin?

The basic difference is a gem is something that needs to be installed on the system running your Rails application, whereas a plugin is deployed along with your application. More specifically, plugins live in vendor/plugins whereas gems need to be install using rake gem install gem_name.


1 Answers

I don't know a specific gem to do an onboarding tutorial but there is this javascript plugin which would help you:

http://www.zurb.com/playground/jquery-joyride-feature-tour-plugin

Here a gem to easily include it into your app

https://github.com/TrueNorth/joyride-rails

like image 190
Supportie Avatar answered Oct 20 '22 00:10

Supportie