This gem keeps track of time consumed by test takers.
-
Install
redis
$ brew install redis
-
Start the redis server
$ redis-server
-
In your Rails app, create
config/initializers/ariadne.rb
with following content# config/initializers/ariadne.rb # Set Redis URL ENV['REDIS_URL'] = "#{your_redis_server_URL}" # set the host application name to be used to save data in Ariadne ENV['APP_NAME'] = "#{your_application_name}"
-
Include in your
Gemfile
# Gemfile gem 'ariadne', git: 'https://github.com/elitmus/ariadne.git'
-
run
$ bundle install