This Ruby on Rails application provides facilities to support a community of teachers and learners. It currently offers the essentials needed to manage multiple courses, and we are now also developing other features for enabling members of the community to work together.
University Web is developed by the Ruby Mendicant University (RbMU), a rapidly growing online learning community, and it is our core infrastructure. We expect it to become potentially useful to other organizations, and hope that it will be adopted elsewhere as it becomes mature.
Whether you are a member of RbMU or a developer interested in systems for learning and education, we encourage you to check out the source code: http://github.com/rmu/university-web
If you are not a member of RbMU, please get in touch through our public channels:
- Email: http://groups.google.com/group/rmu-talk
- IRC: #rmu
- Twitter: #RbMU
University Web is constantly evolving, but currently offers the following functionality:
- Administration of course admissions
- Course management
- Assignment tracking
- A clean and user-friendly interface for students
- IRC channel integration
- In application document system
University Web is a Ruby on Rails 3 application which runs on PostgreSQL databases. Other databases like MySQL or SQLite are not officially supported.
Always use the latest source code: We are constantly working on this application, with bug fixes and new features added daily, so please use the very latest source code.
To install a development version of University Web, follow these steps:
- Fork our GitHub repository: http://github.com/rmu/university-web
- Clone the fork to your computer
- Run
bundle install
to install all of the dependencies
To configure University Web:
-
Create a
database.yml
file inconfig
. Theconfig
directory contains an exampledatabase.yml
for PostgreSQL. -
Run the Rails tasks to initialize a development and a test database:
rake db:migrate
rake db:test:prepare
-
Generate the static site by running
rake public-site:generate
Finally, run the test suite to make sure everything is working correctly:
rake test
- University Web user accounts may be either admins, students, or guests.
- Every account is identified by email address.
- The admin users may access all of the management features of University Web by choosing Administration from the navigation menu at the top of page.
- The management features of University Web enable admin users to perform the standard tasks for running courses, such as creating other user accounts for students and guests, defining the courses and managing assignment submissions.
- Each term is a group of one or more courses.
- To create a new term, login as an admin user, and choose Administration > Terms > Create Term.
- To create a new course, choose Administration > Courses > Create New Course.
- Once you have created a course, use the course form to attach a user to it as an instructor, along with students and assignments. The next section explains assignments.
- You may group courses into terms. Courses don't have to be associated with a term.
- Each course may have one or more assignments attached to it.
- To create or manage assignments for a course, choose Administration > Courses, click on the Assignments link next to the name of the course, and choose Create New Assignment.
- Once an assignment has been created, some or all of the students in the course may then be set that assignment.
- The students may use the University Web interface to submit work for an assignment.
- The course instructor can then review the submissions for an assignment, and take appropriate actions, such as commenting or marking the assignment as completed.
Approved features are tracked in Pivotal Tracker while bugs and requested features should be entered into Github Issues.
Contributors retain copyright to their work but must agree to release their contributions under the Affero GPL version 3
If you would like to help with developing University Web, please get in touch! Our contact details are at the top of this file.
- Fork the project.
- Create a topic branch.
- Implement your feature or bug fix.
- Add documentation for your feature or bug fix.
- Add tests for your feature or bug fix.
- Run
rake test
. If your changes are not 100% covered, go back to step 5. - If your change affects something in this README, please update it
- Commit and push your changes.
- Submit a pull request.
University Web - a Ruby Mendicant University project