Skip to content

instructure/scorm-cloud

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

98 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Rustici SCORM Cloud Ruby Client

This is a fork of https://github.com/aeseducation/scorm-cloud that has been modified for some use in production. Not all code paths have been tested and used in Instructure software.

This ruby gem provides a ruby interface to Rustici Scorm Cloud.

For more information regarding Scorm Engine API concepts, see: http://cloud.scorm.com/doc/web-services/api.html

Shell CLI Interface

$ gem install scorm_cloud
$ scorm_cloud rustici.course.getCourseList -—appid myappid -—secret mysecret
$ scorm_cloud rustici.course.getMetadata --courseid a-valid-course-id-12345

Example Ruby Usage

require 'scorm_cloud'
sc = ScormCloud::ScormCloud.new("my_app_id", "my_secret_key")
# sc = ScormCloud::ScormCloud.new("my_app_id", "my_secret_key", "http://custom/api/url")
# sc = ScormCloud::ScormCloud.new("my_app_id", "my_secret_key", "http://custom/api/url", custom_logger)
sc.course.get_course_list.each { |c| puts "#{c.id} #{c.title}"}

Example Ruby on Rails Usage

Place the following in: Gemfile

require 'scorm_cloud', :git => 'git@github.com:aeseducation/scorm-cloud.git'

Place the following in: config/initializers/scorm_cloud.rb

MyApplication::Application.configure do |config|
  config.scorm_cloud.appid = "my_app_id"
  config.scorm_cloud.secretkey = "my_secret_key"
  # config.scorm_cloud.api_url = "http://custom/api/url"
end

Place the following in: app/controllers.course_controller.rb

class CourseController < ApplicationController
  def index
    @courses = scorm_cloud.course.get_course_list
  end
  
  def launch
    return_url = course_index_url
    reg = scorm_cloud.registrations.create_registration(...)
    redirect_to scorm_cloud.registrations.launch(...)
  end
end

Place the following in: app/views/course/index.html.erb

<ul>
  <%= @courses.each |course| %>
    <li>
      <%= link_to course_launch_path(course.title, course.id) %>
    </li>
  <% end %>
</ul>

About

Ruby API Wrapper for Rustici SCORM Cloud

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Ruby 93.7%
  • Gherkin 6.3%