keepyourhead 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/COPYING.txt +674 -0
- data/LICENSE.rdoc +20 -0
- data/README.rdoc +3 -0
- data/bin/keepyourhead +6 -0
- data/data/glade/DialogEditLatex.glade +180 -0
- data/data/glade/DialogEditText.glade +66 -0
- data/data/glade/DialogTrainStart.glade +101 -0
- data/data/glade/WindowEdit.glade +1419 -0
- data/data/glade/WindowTrain.glade +271 -0
- data/data/images/error_back.png +0 -0
- data/data/images/error_front.png +0 -0
- data/data/images/loading_back.png +0 -0
- data/data/images/loading_front.png +0 -0
- data/lib/Keepyourhead.rb +62 -0
- data/lib/Keepyourhead/Application.rb +94 -0
- data/lib/Keepyourhead/Cache.rb +233 -0
- data/lib/Keepyourhead/Compilation.rb +38 -0
- data/lib/Keepyourhead/Images.rb +62 -0
- data/lib/Keepyourhead/Preferences.rb +52 -0
- data/lib/Keepyourhead/Requirements.rb +72 -0
- data/lib/Keepyourhead/Resources.rb +45 -0
- data/lib/Keepyourhead/Training.rb +132 -0
- data/lib/Keepyourhead/Utils.rb +97 -0
- data/lib/Keepyourhead/Version.rb +43 -0
- data/lib/Keepyourhead/database/Base.rb +77 -0
- data/lib/Keepyourhead/database/BaseStatistic.rb +63 -0
- data/lib/Keepyourhead/database/BaseTopicFlashcardContainer.rb +43 -0
- data/lib/Keepyourhead/database/Collection.rb +43 -0
- data/lib/Keepyourhead/database/Database.rb +139 -0
- data/lib/Keepyourhead/database/File.rb +224 -0
- data/lib/Keepyourhead/database/FileRoot.rb +44 -0
- data/lib/Keepyourhead/database/Flashcard.rb +116 -0
- data/lib/Keepyourhead/database/Topic.rb +40 -0
- data/lib/Keepyourhead/database/Visitor.rb +33 -0
- data/lib/Keepyourhead/database/XmlAccessor.rb +315 -0
- data/lib/Keepyourhead/gui/Action.rb +91 -0
- data/lib/Keepyourhead/gui/DialogEditLatex.rb +132 -0
- data/lib/Keepyourhead/gui/DialogEditText.rb +104 -0
- data/lib/Keepyourhead/gui/DialogTrainStart.rb +63 -0
- data/lib/Keepyourhead/gui/FlashcardViewController.rb +112 -0
- data/lib/Keepyourhead/gui/WindowEdit.rb +469 -0
- data/lib/Keepyourhead/gui/WindowEditActions.rb +440 -0
- data/lib/Keepyourhead/gui/WindowEditAdapters.rb +329 -0
- data/lib/Keepyourhead/gui/WindowTrain.rb +167 -0
- data/lib/Keepyourhead/style/Style.rb +48 -0
- data/lib/Keepyourhead/style/StyleLatex.rb +235 -0
- metadata +100 -0
metadata
ADDED
@@ -0,0 +1,100 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
rubygems_version: 0.9.4
|
3
|
+
specification_version: 1
|
4
|
+
name: keepyourhead
|
5
|
+
version: !ruby/object:Gem::Version
|
6
|
+
version: 0.2.0
|
7
|
+
date: 2008-10-01 00:00:00 +03:00
|
8
|
+
summary: KeepYourHead is a latex based flashcard trainer under GPL3
|
9
|
+
require_paths:
|
10
|
+
- lib
|
11
|
+
email: OliverBurghard@web.de
|
12
|
+
homepage: http://keepyourhead.rubyforge.org
|
13
|
+
rubyforge_project: keepyourhead
|
14
|
+
description: KeepYourHead is a latex based flashcard trainer under GPL3. It includes an editor as well as an trainer. Flashcards are build in latex. Latex is a powerful tool for descriping documents. The Flashcards are checked by letting the user judge if he knew the answer well enough.
|
15
|
+
autorequire: keepyourhead
|
16
|
+
default_executable:
|
17
|
+
bindir: bin
|
18
|
+
has_rdoc: true
|
19
|
+
required_ruby_version: !ruby/object:Gem::Version::Requirement
|
20
|
+
requirements:
|
21
|
+
- - ">"
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: 0.0.0
|
24
|
+
version:
|
25
|
+
platform: ruby
|
26
|
+
signing_key:
|
27
|
+
cert_chain:
|
28
|
+
post_install_message:
|
29
|
+
authors:
|
30
|
+
- Oliver Burghard
|
31
|
+
files:
|
32
|
+
- COPYING.txt
|
33
|
+
- LICENSE.rdoc
|
34
|
+
- README.rdoc
|
35
|
+
- lib/Keepyourhead
|
36
|
+
- lib/Keepyourhead/gui
|
37
|
+
- lib/Keepyourhead/gui/WindowEditAdapters.rb
|
38
|
+
- lib/Keepyourhead/gui/WindowEditActions.rb
|
39
|
+
- lib/Keepyourhead/gui/WindowTrain.rb
|
40
|
+
- lib/Keepyourhead/gui/DialogEditText.rb
|
41
|
+
- lib/Keepyourhead/gui/WindowEdit.rb
|
42
|
+
- lib/Keepyourhead/gui/Action.rb
|
43
|
+
- lib/Keepyourhead/gui/DialogEditLatex.rb
|
44
|
+
- lib/Keepyourhead/gui/DialogTrainStart.rb
|
45
|
+
- lib/Keepyourhead/gui/FlashcardViewController.rb
|
46
|
+
- lib/Keepyourhead/Compilation.rb
|
47
|
+
- lib/Keepyourhead/database
|
48
|
+
- lib/Keepyourhead/database/Database.rb
|
49
|
+
- lib/Keepyourhead/database/Base.rb
|
50
|
+
- lib/Keepyourhead/database/FileRoot.rb
|
51
|
+
- lib/Keepyourhead/database/XmlAccessor.rb
|
52
|
+
- lib/Keepyourhead/database/Visitor.rb
|
53
|
+
- lib/Keepyourhead/database/Topic.rb
|
54
|
+
- lib/Keepyourhead/database/Flashcard.rb
|
55
|
+
- lib/Keepyourhead/database/BaseTopicFlashcardContainer.rb
|
56
|
+
- lib/Keepyourhead/database/File.rb
|
57
|
+
- lib/Keepyourhead/database/Collection.rb
|
58
|
+
- lib/Keepyourhead/database/BaseStatistic.rb
|
59
|
+
- lib/Keepyourhead/style
|
60
|
+
- lib/Keepyourhead/style/StyleLatex.rb
|
61
|
+
- lib/Keepyourhead/style/Style.rb
|
62
|
+
- lib/Keepyourhead/Images.rb
|
63
|
+
- lib/Keepyourhead/Application.rb
|
64
|
+
- lib/Keepyourhead/Resources.rb
|
65
|
+
- lib/Keepyourhead/Utils.rb
|
66
|
+
- lib/Keepyourhead/Training.rb
|
67
|
+
- lib/Keepyourhead/Version.rb
|
68
|
+
- lib/Keepyourhead/Requirements.rb
|
69
|
+
- lib/Keepyourhead/Preferences.rb
|
70
|
+
- lib/Keepyourhead/Cache.rb
|
71
|
+
- lib/Keepyourhead.rb
|
72
|
+
- data/glade
|
73
|
+
- data/glade/DialogTrainStart.glade
|
74
|
+
- data/glade/WindowEdit.glade
|
75
|
+
- data/glade/DialogEditLatex.glade
|
76
|
+
- data/glade/WindowTrain.glade
|
77
|
+
- data/glade/DialogEditText.glade
|
78
|
+
- data/images
|
79
|
+
- data/images/loading_front.png
|
80
|
+
- data/images/loading_back.png
|
81
|
+
- data/images/error_back.png
|
82
|
+
- data/images/error_front.png
|
83
|
+
test_files: []
|
84
|
+
|
85
|
+
rdoc_options: []
|
86
|
+
|
87
|
+
extra_rdoc_files:
|
88
|
+
- LICENSE.rdoc
|
89
|
+
- README.rdoc
|
90
|
+
executables:
|
91
|
+
- keepyourhead
|
92
|
+
extensions: []
|
93
|
+
|
94
|
+
requirements:
|
95
|
+
- ghostscript (http://www.ghostscript.com/awki)
|
96
|
+
- latex (http://www.tug.org/texlive)
|
97
|
+
- ruby-gnome2 (http://ruby-gnome2.sourceforge.jp)
|
98
|
+
- ruby-gnome2 (http://ruby-gnome2.sourceforge.jp)
|
99
|
+
dependencies: []
|
100
|
+
|