module Mumuki::Bibliotheca

Constants

VERSION

Public Class Methods

api_syncer(json) click to toggle source
# File lib/mumuki/bibliotheca/syncer.rb, line 24
def api_syncer(json)
  Mumukit::Sync::Syncer.new(ApiSource.new(json), api_inflators)
end
history_syncer(user) click to toggle source
# File lib/mumuki/bibliotheca/syncer.rb, line 20
def history_syncer(user)
  Mumukit::Sync::Syncer.new(history_store[user], history_inflators)
end
upload_asset!(slug, name, content) click to toggle source
# File lib/mumuki/bibliotheca/syncer.rb, line 16
def upload_asset!(slug, name, content)
  assets_uploader[slug, name, content]
end