Module: Schoolkeep

Defined in:
lib/schoolkeep.rb,
lib/schoolkeep/cli.rb,
lib/schoolkeep/client.rb,
lib/schoolkeep/server.rb,
lib/schoolkeep/fixture.rb,
lib/schoolkeep/version.rb,
lib/schoolkeep/scribble.rb,
lib/schoolkeep/template.rb,
lib/schoolkeep/gui_client.rb,
lib/schoolkeep/views/layout.rb,
lib/schoolkeep/template_names.rb,
lib/schoolkeep/views/asset_cache.rb,
lib/schoolkeep/views/color_scheme.rb

Defined Under Namespace

Modules: Scribble, Views Classes: CLI, Client, Fixture, GuiClient, Server, Template

Constant Summary collapse

GEM_ROOT =
File.expand_path("../../", __FILE__)
API_URL =
"https://api.northpass.com"
ASSET_HOST =
"https://app.northpass.com"
VERSION =
"0.0.2"
TEMPLATE_NAMES =
%w(
  _course.html
  _filters.html
  _footer.html
  _head.html
  _header.html
  _my_content_header.html
  _search_form.html
  _virtual_event_session.html
  course_cover.html
  course_details.html
  course_index.html
  custom_page.html
  custom_javascript.html
  custom_javascript_v1.html
  custom_javascript_v2.html
  homepage.html
  my_content.html
  not_found.html
  server_error.html
  styles.css
)

Class Attribute Summary collapse

Class Attribute Details

.api_urlObject



12
13
14
# File 'lib/schoolkeep.rb', line 12

def api_url
  @api_url ||= ENV["SK_API_URL"] || API_URL
end