university 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +17 -0
- data/.travis.yml +5 -0
- data/CONTRIBUTING.md +7 -0
- data/Gemfile +4 -0
- data/Guardfile +11 -0
- data/LICENSE.txt +22 -0
- data/README.md +21 -0
- data/Rakefile +10 -0
- data/lib/university.rb +101 -0
- data/lib/university/version.rb +3 -0
- data/test/fixtures/course_catalog.rb +122 -0
- data/test/fixtures/course_catalog.yaml +82 -0
- data/test/helper.rb +2 -0
- data/test/unit/test_lecture.rb +9 -0
- data/university.gemspec +31 -0
- metadata +194 -0
data/.gitignore
ADDED
data/.travis.yml
ADDED
data/CONTRIBUTING.md
ADDED
data/Gemfile
ADDED
data/Guardfile
ADDED
@@ -0,0 +1,11 @@
|
|
1
|
+
guard 'bundler' do
|
2
|
+
watch('Gemfile')
|
3
|
+
end
|
4
|
+
|
5
|
+
guard 'minitest' do
|
6
|
+
watch(%r|^test/unit/test_(.*)\.rb|)
|
7
|
+
watch(%r|^lib/*\.rb|){'test'}
|
8
|
+
watch(%r{^lib/.*/([^/]+)\.rb$}){|m| "test/unit/test_#{m[1]}.rb"}
|
9
|
+
watch(%r|^test/helper\.rb|){'test'}
|
10
|
+
watch(%r|^test/helpers/.*|){'test'}
|
11
|
+
end
|
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2012 Nicholas E. Rabenau
|
2
|
+
|
3
|
+
MIT License
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
# University
|
2
|
+
|
3
|
+
Models a course system of a university or another education institution
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add this line to your application's Gemfile:
|
8
|
+
|
9
|
+
gem 'university'
|
10
|
+
|
11
|
+
And then execute:
|
12
|
+
|
13
|
+
$ bundle
|
14
|
+
|
15
|
+
Or install it yourself as:
|
16
|
+
|
17
|
+
$ gem install university
|
18
|
+
|
19
|
+
## Usage
|
20
|
+
|
21
|
+
See tests
|
data/Rakefile
ADDED
data/lib/university.rb
ADDED
@@ -0,0 +1,101 @@
|
|
1
|
+
require 'university/version'
|
2
|
+
require 'ddd-associations'
|
3
|
+
|
4
|
+
module University
|
5
|
+
#
|
6
|
+
# A list of course offerings at a college, university or other educational outlet.
|
7
|
+
#
|
8
|
+
class Catalog
|
9
|
+
include DDD::Associations
|
10
|
+
|
11
|
+
has_many :courses
|
12
|
+
|
13
|
+
# Construct a new course catalog from an io object
|
14
|
+
def initialize(io)
|
15
|
+
end
|
16
|
+
|
17
|
+
def find_course_by_year(year)
|
18
|
+
end
|
19
|
+
end
|
20
|
+
|
21
|
+
#
|
22
|
+
# A unit of instruction in one subject, lasting one academic term
|
23
|
+
#
|
24
|
+
class Course
|
25
|
+
include DDD::Associations
|
26
|
+
|
27
|
+
has_one :title
|
28
|
+
has_many :lectures
|
29
|
+
has_many :tutorials
|
30
|
+
has_one :exam
|
31
|
+
end
|
32
|
+
|
33
|
+
#
|
34
|
+
# A lecture is an oral presentation intended to present information or teach people about a particular subject
|
35
|
+
#
|
36
|
+
class Lecture
|
37
|
+
include DDD::Associations
|
38
|
+
|
39
|
+
# optional, use the course's title if not present
|
40
|
+
has_one :title
|
41
|
+
|
42
|
+
has_one :begin
|
43
|
+
has_one :end
|
44
|
+
|
45
|
+
has_many :attachments
|
46
|
+
end
|
47
|
+
|
48
|
+
#
|
49
|
+
# A tutorial is a class that is supplemental to a large lecture course, which gives students the opportunity to discuss the lectures and/or additional readings in smaller groups.
|
50
|
+
#
|
51
|
+
class Tutorial
|
52
|
+
include DDD::Associations
|
53
|
+
|
54
|
+
has_one :begin
|
55
|
+
has_one :end
|
56
|
+
|
57
|
+
has_many :attachments
|
58
|
+
end
|
59
|
+
|
60
|
+
#
|
61
|
+
# An exam is an assessment intended to measure a groups knowledge, gained by taking a course.
|
62
|
+
#
|
63
|
+
class Exam
|
64
|
+
include DDD::Associations
|
65
|
+
|
66
|
+
has_many :slots
|
67
|
+
end
|
68
|
+
|
69
|
+
#
|
70
|
+
# A slot where a number of students are examined together
|
71
|
+
#
|
72
|
+
class Slot
|
73
|
+
include DDD::Associations
|
74
|
+
|
75
|
+
has_one :begin
|
76
|
+
has_one :end
|
77
|
+
|
78
|
+
has_one :task
|
79
|
+
has_many :members
|
80
|
+
end
|
81
|
+
|
82
|
+
#
|
83
|
+
# The task that is used to examine the students
|
84
|
+
#
|
85
|
+
class Task
|
86
|
+
include DDD::Associations
|
87
|
+
|
88
|
+
has_one :title
|
89
|
+
has_many :attachments
|
90
|
+
end
|
91
|
+
|
92
|
+
#
|
93
|
+
# Generic attachment to lecture, tutorial or exam task
|
94
|
+
#
|
95
|
+
class Attachment
|
96
|
+
include DDD::Associations
|
97
|
+
|
98
|
+
has_one :title
|
99
|
+
has_one :url
|
100
|
+
end
|
101
|
+
end
|
@@ -0,0 +1,122 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
require 'yaml'
|
3
|
+
|
4
|
+
# Define this in Ruby and write to YAML once we are done with
|
5
|
+
# ruby test/fixtures/course_catalog.rb > test/fixtures/course_catalog.yaml
|
6
|
+
|
7
|
+
puts [
|
8
|
+
{
|
9
|
+
:title => 'Datenbanksysteme',
|
10
|
+
:lectures => [{
|
11
|
+
:begin => '10.10.2012 10:00',
|
12
|
+
:end => '10.10.2012 11:30',
|
13
|
+
:location => 'PC-Unterrichtsraum 6, Währinger Straße 29 2.OG',
|
14
|
+
:title => 'Erstellung von Anwendungssystemen'
|
15
|
+
}, {
|
16
|
+
:begin => '17.10.2012 10:00',
|
17
|
+
:end => '17.10.2012 11:30',
|
18
|
+
:location => 'PC-Unterrichtsraum 6, Währinger Straße 29 2.OG',
|
19
|
+
:title => 'Datenbanken entwerfen'
|
20
|
+
}, {
|
21
|
+
:begin => '21.10.2012 10:00',
|
22
|
+
:end => '21.10.2012 11:30',
|
23
|
+
:location => 'PC-Unterrichtsraum 6, Währinger Straße 29 2.OG',
|
24
|
+
:title => 'Datenbanken abfragen'
|
25
|
+
}, {
|
26
|
+
:begin => '30.01.2013 10:00',
|
27
|
+
:end => '30.01.2013 11:30',
|
28
|
+
:location => 'PC-Unterrichtsraum 6, Währinger Straße 29 2.OG',
|
29
|
+
:title => 'Theoretische Grundlagen der relationalen Datenbanken'
|
30
|
+
}
|
31
|
+
],
|
32
|
+
:tutorials => [{
|
33
|
+
:begin => '10.10.2012 11:45',
|
34
|
+
:end => '10.10.2012 13:15',
|
35
|
+
:location => 'PC-Unterrichtsraum 6, Währinger Straße 29 2.OG',
|
36
|
+
:title => 'Tutorium Erstellung von Anwendungssystemen'
|
37
|
+
}, {
|
38
|
+
:begin => '17.10.2012 11:45',
|
39
|
+
:end => '17.10.2012 13:15',
|
40
|
+
:location => 'PC-Unterrichtsraum 6, Währinger Straße 29 2.OG',
|
41
|
+
:title => 'Tutorium Datenbankentwurf'
|
42
|
+
}
|
43
|
+
],
|
44
|
+
:exam => {
|
45
|
+
:tasks => [{
|
46
|
+
:title => 'Bibliothek',
|
47
|
+
:description => 'Büchern einer Bibliothek',
|
48
|
+
:model => 'Titel, Autor, ISBN',
|
49
|
+
:data => 'Co-Autoren und Übersetzungen'
|
50
|
+
}
|
51
|
+
],
|
52
|
+
:slots => [
|
53
|
+
{
|
54
|
+
:begin => '30.01.2013 14:00',
|
55
|
+
:end => '30.01.2013 14:15',
|
56
|
+
:location => 'PC-Unterrichtsraum 6, Währinger Straße 29 2.OG',
|
57
|
+
:task => 'Schema einer Maschinenschraube', # TODO Make this a YAML reference
|
58
|
+
:members => [
|
59
|
+
# TODO Make these YAML references, too
|
60
|
+
'Schikuta', 'Schüttengruber', 'Beran'
|
61
|
+
]
|
62
|
+
},
|
63
|
+
{
|
64
|
+
:begin => '30.01.2013 14:15',
|
65
|
+
:end => '30.01.2013 14:30',
|
66
|
+
:location => 'PC-Unterrichtsraum 6, Währinger Straße 29 2.OG',
|
67
|
+
:task => 'Relationen im Urlaub',
|
68
|
+
:members => [
|
69
|
+
'Sonneck', 'Pllana', 'Köhler'
|
70
|
+
]
|
71
|
+
},
|
72
|
+
]
|
73
|
+
}
|
74
|
+
},
|
75
|
+
{
|
76
|
+
:title => 'Technische Grundlagen und Systemsoftware',
|
77
|
+
:lectures => [
|
78
|
+
{
|
79
|
+
:begin => '22.10.2012 09:45',
|
80
|
+
:end => '22.10.2012 10:30',
|
81
|
+
:location => 'PC-Unterrichtsraum 5, Währinger Straße 29 2.OG',
|
82
|
+
:title => 'Zahlensysteme und -darstellungen'
|
83
|
+
},
|
84
|
+
{
|
85
|
+
:begin => '29.10.2012 09:45',
|
86
|
+
:end => '29.10.2012 10:30',
|
87
|
+
:location => 'PC-Unterrichtsraum 5, Währinger Straße 29 2.OG',
|
88
|
+
:title => 'Boolsche Algebra'
|
89
|
+
},
|
90
|
+
{
|
91
|
+
:begin => '05.11.2012 09:45',
|
92
|
+
:end => '05.11.2012 10:30',
|
93
|
+
:location => 'PC-Unterrichtsraum 5, Währinger Straße 29 2.OG',
|
94
|
+
:title => 'Digitale Logik'
|
95
|
+
},
|
96
|
+
{
|
97
|
+
:begin => '12.11.2012 09:45',
|
98
|
+
:end => '12.11.2012 10:30',
|
99
|
+
:location => 'PC-Unterrichtsraum 5, Währinger Straße 29 2.OG',
|
100
|
+
:title => 'Prozesse'
|
101
|
+
},
|
102
|
+
{
|
103
|
+
:begin => '19.11.2012 09:45',
|
104
|
+
:end => '19.11.2012 10:30',
|
105
|
+
:location => 'PC-Unterrichtsraum 5, Währinger Straße 29 2.OG',
|
106
|
+
:title => 'Shell Scripts'
|
107
|
+
},
|
108
|
+
{
|
109
|
+
:begin => '26.11.2012 09:45',
|
110
|
+
:end => '26.11.2012 10:30',
|
111
|
+
:location => 'PC-Unterrichtsraum 5, Währinger Straße 29 2.OG',
|
112
|
+
:title => 'Unix Basics'
|
113
|
+
},
|
114
|
+
{
|
115
|
+
:begin => '03.12.2012 09:45',
|
116
|
+
:end => '03.12.2012 10:30',
|
117
|
+
:location => 'PC-Unterrichtsraum 5, Währinger Straße 29 2.OG',
|
118
|
+
:title => 'Prozess- und Diskscheduling'
|
119
|
+
}
|
120
|
+
]
|
121
|
+
}
|
122
|
+
].to_yaml
|
@@ -0,0 +1,82 @@
|
|
1
|
+
---
|
2
|
+
- :title: Datenbanksysteme
|
3
|
+
:lectures:
|
4
|
+
- :begin: 10.10.2012 10:00
|
5
|
+
:end: 10.10.2012 11:30
|
6
|
+
:location: PC-Unterrichtsraum 6, Währinger Straße 29 2.OG
|
7
|
+
:title: Erstellung von Anwendungssystemen
|
8
|
+
- :begin: 17.10.2012 10:00
|
9
|
+
:end: 17.10.2012 11:30
|
10
|
+
:location: PC-Unterrichtsraum 6, Währinger Straße 29 2.OG
|
11
|
+
:title: Datenbanken entwerfen
|
12
|
+
- :begin: 21.10.2012 10:00
|
13
|
+
:end: 21.10.2012 11:30
|
14
|
+
:location: PC-Unterrichtsraum 6, Währinger Straße 29 2.OG
|
15
|
+
:title: Datenbanken abfragen
|
16
|
+
- :begin: 30.01.2013 10:00
|
17
|
+
:end: 30.01.2013 11:30
|
18
|
+
:location: PC-Unterrichtsraum 6, Währinger Straße 29 2.OG
|
19
|
+
:title: Theoretische Grundlagen der relationalen Datenbanken
|
20
|
+
:tutorials:
|
21
|
+
- :begin: 10.10.2012 11:45
|
22
|
+
:end: 10.10.2012 13:15
|
23
|
+
:location: PC-Unterrichtsraum 6, Währinger Straße 29 2.OG
|
24
|
+
:title: Tutorium Erstellung von Anwendungssystemen
|
25
|
+
- :begin: 17.10.2012 11:45
|
26
|
+
:end: 17.10.2012 13:15
|
27
|
+
:location: PC-Unterrichtsraum 6, Währinger Straße 29 2.OG
|
28
|
+
:title: Tutorium Datenbankentwurf
|
29
|
+
:exam:
|
30
|
+
:tasks: &bibliothek
|
31
|
+
- :title: Bibliothek
|
32
|
+
:description: Büchern in einer Bibliothek
|
33
|
+
:model: Titel, Autor und ISBN der Bücher
|
34
|
+
:data: mit mehreren Exemplaren des gleichen Buches umgehen können und u.U. nur
|
35
|
+
ein Teil der Exemplare ausgeliehen ist
|
36
|
+
:slots:
|
37
|
+
- :begin: 30.01.2013 14:00
|
38
|
+
:end: 30.01.2013 14:15
|
39
|
+
:location: PC-Unterrichtsraum 6, Währinger Straße 29 2.OG
|
40
|
+
:task: *bibliothek
|
41
|
+
:members:
|
42
|
+
- Schikuta
|
43
|
+
- Schüttengruber
|
44
|
+
- Beran
|
45
|
+
- :begin: 30.01.2013 14:15
|
46
|
+
:end: 30.01.2013 14:30
|
47
|
+
:location: PC-Unterrichtsraum 6, Währinger Straße 29 2.OG
|
48
|
+
:task: Relationen im Urlaub
|
49
|
+
:members:
|
50
|
+
- Sonneck
|
51
|
+
- Pllana
|
52
|
+
- Köhler
|
53
|
+
- :title: Technische Grundlagen und Systemsoftware
|
54
|
+
:lectures:
|
55
|
+
- :begin: 22.10.2012 09:45
|
56
|
+
:end: 22.10.2012 10:30
|
57
|
+
:location: PC-Unterrichtsraum 5, Währinger Straße 29 2.OG
|
58
|
+
:title: Zahlensysteme und -darstellungen
|
59
|
+
- :begin: 29.10.2012 09:45
|
60
|
+
:end: 29.10.2012 10:30
|
61
|
+
:location: PC-Unterrichtsraum 5, Währinger Straße 29 2.OG
|
62
|
+
:title: Boolsche Algebra
|
63
|
+
- :begin: 05.11.2012 09:45
|
64
|
+
:end: 05.11.2012 10:30
|
65
|
+
:location: PC-Unterrichtsraum 5, Währinger Straße 29 2.OG
|
66
|
+
:title: Digitale Logik
|
67
|
+
- :begin: 12.11.2012 09:45
|
68
|
+
:end: 12.11.2012 10:30
|
69
|
+
:location: PC-Unterrichtsraum 5, Währinger Straße 29 2.OG
|
70
|
+
:title: Prozesse
|
71
|
+
- :begin: 19.11.2012 09:45
|
72
|
+
:end: 19.11.2012 10:30
|
73
|
+
:location: PC-Unterrichtsraum 5, Währinger Straße 29 2.OG
|
74
|
+
:title: Shell Scripts
|
75
|
+
- :begin: 26.11.2012 09:45
|
76
|
+
:end: 26.11.2012 10:30
|
77
|
+
:location: PC-Unterrichtsraum 5, Währinger Straße 29 2.OG
|
78
|
+
:title: Unix Basics
|
79
|
+
- :begin: 03.12.2012 09:45
|
80
|
+
:end: 03.12.2012 10:30
|
81
|
+
:location: PC-Unterrichtsraum 5, Währinger Straße 29 2.OG
|
82
|
+
:title: Prozess- und Diskscheduling
|
data/test/helper.rb
ADDED
data/university.gemspec
ADDED
@@ -0,0 +1,31 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'university/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |gem|
|
7
|
+
gem.name = "university"
|
8
|
+
gem.version = University::VERSION
|
9
|
+
gem.authors = ["Nicholas E. Rabenau"]
|
10
|
+
gem.email = ["nerab@gmx.net"]
|
11
|
+
gem.description = %q{Models the course system of a university or another institution of higher education}
|
12
|
+
gem.summary = %q{Model of a course system}
|
13
|
+
gem.homepage = "http://github.com/nerab/university"
|
14
|
+
|
15
|
+
gem.files = `git ls-files`.split($/)
|
16
|
+
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
17
|
+
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
18
|
+
gem.require_paths = ["lib"]
|
19
|
+
|
20
|
+
gem.add_dependency 'ddd-associations'
|
21
|
+
|
22
|
+
gem.add_development_dependency 'guard-minitest', '~> 0.5'
|
23
|
+
gem.add_development_dependency 'guard-bundler', '~> 1.0'
|
24
|
+
gem.add_development_dependency 'rb-fsevent', '~> 0.9.1'
|
25
|
+
gem.add_development_dependency 'coolline', '~> 0.3'
|
26
|
+
|
27
|
+
gem.add_development_dependency 'minitest'
|
28
|
+
gem.add_development_dependency 'rake'
|
29
|
+
gem.add_development_dependency 'pry'
|
30
|
+
end
|
31
|
+
|
metadata
ADDED
@@ -0,0 +1,194 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: university
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Nicholas E. Rabenau
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2012-10-12 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: ddd-associations
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
17
|
+
none: false
|
18
|
+
requirements:
|
19
|
+
- - ! '>='
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: '0'
|
22
|
+
type: :runtime
|
23
|
+
prerelease: false
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - ! '>='
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '0'
|
30
|
+
- !ruby/object:Gem::Dependency
|
31
|
+
name: guard-minitest
|
32
|
+
requirement: !ruby/object:Gem::Requirement
|
33
|
+
none: false
|
34
|
+
requirements:
|
35
|
+
- - ~>
|
36
|
+
- !ruby/object:Gem::Version
|
37
|
+
version: '0.5'
|
38
|
+
type: :development
|
39
|
+
prerelease: false
|
40
|
+
version_requirements: !ruby/object:Gem::Requirement
|
41
|
+
none: false
|
42
|
+
requirements:
|
43
|
+
- - ~>
|
44
|
+
- !ruby/object:Gem::Version
|
45
|
+
version: '0.5'
|
46
|
+
- !ruby/object:Gem::Dependency
|
47
|
+
name: guard-bundler
|
48
|
+
requirement: !ruby/object:Gem::Requirement
|
49
|
+
none: false
|
50
|
+
requirements:
|
51
|
+
- - ~>
|
52
|
+
- !ruby/object:Gem::Version
|
53
|
+
version: '1.0'
|
54
|
+
type: :development
|
55
|
+
prerelease: false
|
56
|
+
version_requirements: !ruby/object:Gem::Requirement
|
57
|
+
none: false
|
58
|
+
requirements:
|
59
|
+
- - ~>
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '1.0'
|
62
|
+
- !ruby/object:Gem::Dependency
|
63
|
+
name: rb-fsevent
|
64
|
+
requirement: !ruby/object:Gem::Requirement
|
65
|
+
none: false
|
66
|
+
requirements:
|
67
|
+
- - ~>
|
68
|
+
- !ruby/object:Gem::Version
|
69
|
+
version: 0.9.1
|
70
|
+
type: :development
|
71
|
+
prerelease: false
|
72
|
+
version_requirements: !ruby/object:Gem::Requirement
|
73
|
+
none: false
|
74
|
+
requirements:
|
75
|
+
- - ~>
|
76
|
+
- !ruby/object:Gem::Version
|
77
|
+
version: 0.9.1
|
78
|
+
- !ruby/object:Gem::Dependency
|
79
|
+
name: coolline
|
80
|
+
requirement: !ruby/object:Gem::Requirement
|
81
|
+
none: false
|
82
|
+
requirements:
|
83
|
+
- - ~>
|
84
|
+
- !ruby/object:Gem::Version
|
85
|
+
version: '0.3'
|
86
|
+
type: :development
|
87
|
+
prerelease: false
|
88
|
+
version_requirements: !ruby/object:Gem::Requirement
|
89
|
+
none: false
|
90
|
+
requirements:
|
91
|
+
- - ~>
|
92
|
+
- !ruby/object:Gem::Version
|
93
|
+
version: '0.3'
|
94
|
+
- !ruby/object:Gem::Dependency
|
95
|
+
name: minitest
|
96
|
+
requirement: !ruby/object:Gem::Requirement
|
97
|
+
none: false
|
98
|
+
requirements:
|
99
|
+
- - ! '>='
|
100
|
+
- !ruby/object:Gem::Version
|
101
|
+
version: '0'
|
102
|
+
type: :development
|
103
|
+
prerelease: false
|
104
|
+
version_requirements: !ruby/object:Gem::Requirement
|
105
|
+
none: false
|
106
|
+
requirements:
|
107
|
+
- - ! '>='
|
108
|
+
- !ruby/object:Gem::Version
|
109
|
+
version: '0'
|
110
|
+
- !ruby/object:Gem::Dependency
|
111
|
+
name: rake
|
112
|
+
requirement: !ruby/object:Gem::Requirement
|
113
|
+
none: false
|
114
|
+
requirements:
|
115
|
+
- - ! '>='
|
116
|
+
- !ruby/object:Gem::Version
|
117
|
+
version: '0'
|
118
|
+
type: :development
|
119
|
+
prerelease: false
|
120
|
+
version_requirements: !ruby/object:Gem::Requirement
|
121
|
+
none: false
|
122
|
+
requirements:
|
123
|
+
- - ! '>='
|
124
|
+
- !ruby/object:Gem::Version
|
125
|
+
version: '0'
|
126
|
+
- !ruby/object:Gem::Dependency
|
127
|
+
name: pry
|
128
|
+
requirement: !ruby/object:Gem::Requirement
|
129
|
+
none: false
|
130
|
+
requirements:
|
131
|
+
- - ! '>='
|
132
|
+
- !ruby/object:Gem::Version
|
133
|
+
version: '0'
|
134
|
+
type: :development
|
135
|
+
prerelease: false
|
136
|
+
version_requirements: !ruby/object:Gem::Requirement
|
137
|
+
none: false
|
138
|
+
requirements:
|
139
|
+
- - ! '>='
|
140
|
+
- !ruby/object:Gem::Version
|
141
|
+
version: '0'
|
142
|
+
description: Models the course system of a university or another institution of higher
|
143
|
+
education
|
144
|
+
email:
|
145
|
+
- nerab@gmx.net
|
146
|
+
executables: []
|
147
|
+
extensions: []
|
148
|
+
extra_rdoc_files: []
|
149
|
+
files:
|
150
|
+
- .gitignore
|
151
|
+
- .travis.yml
|
152
|
+
- CONTRIBUTING.md
|
153
|
+
- Gemfile
|
154
|
+
- Guardfile
|
155
|
+
- LICENSE.txt
|
156
|
+
- README.md
|
157
|
+
- Rakefile
|
158
|
+
- lib/university.rb
|
159
|
+
- lib/university/version.rb
|
160
|
+
- test/fixtures/course_catalog.rb
|
161
|
+
- test/fixtures/course_catalog.yaml
|
162
|
+
- test/helper.rb
|
163
|
+
- test/unit/test_lecture.rb
|
164
|
+
- university.gemspec
|
165
|
+
homepage: http://github.com/nerab/university
|
166
|
+
licenses: []
|
167
|
+
post_install_message:
|
168
|
+
rdoc_options: []
|
169
|
+
require_paths:
|
170
|
+
- lib
|
171
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
172
|
+
none: false
|
173
|
+
requirements:
|
174
|
+
- - ! '>='
|
175
|
+
- !ruby/object:Gem::Version
|
176
|
+
version: '0'
|
177
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
178
|
+
none: false
|
179
|
+
requirements:
|
180
|
+
- - ! '>='
|
181
|
+
- !ruby/object:Gem::Version
|
182
|
+
version: '0'
|
183
|
+
requirements: []
|
184
|
+
rubyforge_project:
|
185
|
+
rubygems_version: 1.8.24
|
186
|
+
signing_key:
|
187
|
+
specification_version: 3
|
188
|
+
summary: Model of a course system
|
189
|
+
test_files:
|
190
|
+
- test/fixtures/course_catalog.rb
|
191
|
+
- test/fixtures/course_catalog.yaml
|
192
|
+
- test/helper.rb
|
193
|
+
- test/unit/test_lecture.rb
|
194
|
+
has_rdoc:
|