Sha256: 66e78037d88b92ba25c5ed253b3a50a6c599a87babdd4e3e15ebc620443a716e
Contents?: true
Size: 1.34 KB
Versions: 28
Compression:
Stored size: 1.34 KB
Contents
require 'coursegen' # Copyright string COPYRIGHT_STRING = "Copyright (2014-2019) R. Pito Salas, pitosalas@brandeis.edu".freeze # bucket for AWS Deployment of the course AWS_BUCKET = "cosi105b".freeze # Course short name COURSE_SHORT_NAME = "Cosi 105b".freeze COURSE_LONG_NAME = "Software Engineering for Scalability ".freeze COURSE_ABBREV = "cs105".freeze # Schedule information. Note that Monday is day 0 LECTURES_SCHEDULE_CONFIG = ScheduleDef.new( first_day: "jan-15-2019", weekdays: [:tuesday, :thursday], number: 30, start_times: ["15:30", "15:30"], end_times: ["16:50", "16:50"], start_time: "15:30", end_time: "16:50", skips: ["jan-22-2019", "feb-19-2019", "feb-21-2019", "apr-23-2019", "apr-25-2019", "may-2-2019"]) # Sections in the right hand margin of the page SECTION_CONFIG = [ SectionDef.new("Intro", "intro", type: :section, bullet: :star), SectionDef.new("Lectures", "lectures", type: :lecture, schedule: LECTURES_SCHEDULE_CONFIG, bullet: :dash), SectionDef.new("Topics", "topics", hidden: true, type: :section), SectionDef.new("Extras", "extras", hidden: true, type: :section) ].freeze # Options are: # bullet_style: css style for each bullet STYLING_CONFIG = {bullet_style: %("font-size: 60%; width: 10px; color: grey")}.freeze HOME_PAGE = "/content/intro/05_syllabus.md.erb".freeze HELPFUL_BOX = false
Version data entries
28 entries across 28 versions & 1 rubygems