Sha256: 6e3a063ca645a81deba25b976187fd1deeb2cba81af5b10c3ec68909d480980d

Contents?: true

Size: 1.56 KB

Versions: 8

Compression:

Stored size: 1.56 KB

Contents

require 'coursegen'

# bucket for AWS Deployment of the course
AWS_BUCKET = "cosi236b.courses.salas.com"

# Local directory path for directory of content
CONTENT_PATH = "/mydev/cosi236b"

# Copyright string
COPYRIGHT_STRING = "Copyright (2013-2014) R. Pito Salas, pitosalas@gmail.com"

# Course short name
COURSE_SHORT_NAME = "COSI 236B"
COURSE_LONG_NAME = "Software Engineering"

# Schedule information. Note that Monday is day 0
LECTURES_SCHEDULE_CONFIG = ScheduleDef.new(
		first_day: "jan-14-2014",
		weekdays: [:tuesday, :friday],
		number: 26,
		skips: ["feb-18-2014", "feb-21-2014", "apr-15-2014", "apr-18-2014", "apr-22-2014"])

LABS_SCHEDULE_CONFIG = ScheduleDef.new(
		first_day: "jan-16-2014",
		weekdays: [:thursday],
		number: 13,
		skips: ["feb-20-2014", "apr-17-2014"])

# Sections in the right hand margin of the page
SECTION_CONFIG = [
		SectionDef.new("Lectures", "lectures", type: :lecture, schedule: LECTURES_SCHEDULE_CONFIG),
		SectionDef.new("Labs", "lab", type: :lecture, schedule: LABS_SCHEDULE_CONFIG),
		SectionDef.new("Incubator", "incubator", type: :section),
		SectionDef.new("PA", "pa", type: :section),
		SectionDef.new("Crib Sheets", "cribsheets", type: :section),
		SectionDef.new("Background", "background", type: :section),
		SectionDef.new("Root", "root", hidden: true, type: :section),
		SectionDef.new("Topics", "topics", hidden: true, type: :section),
		SectionDef.new("Hidden", "hidden", hidden: true, type: :section)
]

# Options are:
# bullet_style: css style for each bullet
STYLING_CONFIG = {bullet_style: "\"font-size: 60%; width: 10px; color: grey\""}

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
coursegen-0.7.4 templates/cg_config.rb_sample
coursegen-0.7.3 templates/cg_config.rb_sample
coursegen-0.7.2 templates/cg_config.rb_sample
coursegen-0.7.1 templates/cg_config.rb_sample
coursegen-0.7.0 templates/cg_config.rb_sample
coursegen-0.5.0 templates/cg_config.rb_sample
coursegen-0.4.2 templates/cg_config.rb_sample
coursegen-0.3.1 templates/cg_config.rb_sample