Dogeku 1.0.1
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.
- checksums.yaml +7 -0
- data/LICENSE +21 -0
- data/README.md +39 -0
- data/app/Historique/Action.rb +29 -0
- data/app/Historique/ChangerCase.rb +44 -0
- data/app/Historique/HistoriqueAction.rb +114 -0
- data/app/components/CaseDessin.rb +325 -0
- data/app/components/GrilleDessin.rb +235 -0
- data/app/components/Header.rb +194 -0
- data/app/config/app.yml +0 -0
- data/app/config/database.yml +2 -0
- data/app/controller/ApprentissageControleur.rb +75 -0
- data/app/controller/ChargerControleur.rb +41 -0
- data/app/controller/JeuLibreControleur.rb +244 -0
- data/app/controller/MenuControleur.rb +57 -0
- data/app/controller/NiveauControleur.rb +54 -0
- data/app/controller/NouvellePartieControleur.rb +34 -0
- data/app/controller/PrincipaleControleur.rb +30 -0
- data/app/controller/PseudoControleur.rb +95 -0
- data/app/controller/ReglagesControleur.rb +86 -0
- data/app/controller/ReglesControleur.rb +34 -0
- data/app/controller/ScoresControleur.rb +42 -0
- data/app/controller/StatistiquesControleur.rb +64 -0
- data/app/core/Conf.rb +26 -0
- data/app/core/Controller.rb +180 -0
- data/app/core/Core.rb +186 -0
- data/app/core/Model.rb +159 -0
- data/app/core/View.rb +56 -0
- data/app/db/main.sqlite3 +0 -0
- data/app/model/Configuration.rb +180 -0
- data/app/model/Grille.rb +180 -0
- data/app/model/Jeu.rb +74 -0
- data/app/model/Score.rb +100 -0
- data/app/model/Utilisateur.rb +113 -0
- data/app/utils/DSubset.rb +98 -0
- data/app/utils/Generateur.rb +171 -0
- data/app/utils/HPTriple.rb +75 -0
- data/app/utils/Peche.rb +46 -0
- data/app/utils/SCandidate.rb +86 -0
- data/app/utils/SCell.rb +73 -0
- data/app/utils/Technique.rb +202 -0
- data/app/utils/TechniqueUsine.rb +25 -0
- data/app/utils/XWing.rb +203 -0
- data/app/view/Fenetre.rb +424 -0
- data/app/view/FenetreApprentissage.rb +272 -0
- data/app/view/FenetreCharger.rb +31 -0
- data/app/view/FenetreJeuLibre.rb +468 -0
- data/app/view/FenetreMenu.rb +198 -0
- data/app/view/FenetreNiveau.rb +105 -0
- data/app/view/FenetreNouvellePartie.rb +92 -0
- data/app/view/FenetrePrincipale.rb +45 -0
- data/app/view/FenetrePseudo.rb +115 -0
- data/app/view/FenetreReglages.rb +209 -0
- data/app/view/FenetreRegles.rb +111 -0
- data/app/view/FenetreScores.rb +120 -0
- data/app/view/FenetreStatistiques.rb +134 -0
- data/assets/css/style.css +69 -0
- data/assets/img/eraser.png +0 -0
- data/assets/img/fond.jpg +0 -0
- data/assets/img/iconApp.png +0 -0
- data/assets/img/logoS.jpeg +0 -0
- data/assets/img/sudokuIntro.jpg +0 -0
- data/assets/img/user.png +0 -0
- data/bin/dogeku +19 -0
- data/doc/Action.html +309 -0
- data/doc/ApprentissageControleur.html +568 -0
- data/doc/CaseDessin.html +2405 -0
- data/doc/ChangerCase.html +405 -0
- data/doc/ChargerControleur.html +342 -0
- data/doc/Conf.html +378 -0
- data/doc/Configuration.html +1115 -0
- data/doc/Controller.html +1008 -0
- data/doc/Core.html +1191 -0
- data/doc/DSubset.html +647 -0
- data/doc/Fenetre.html +2631 -0
- data/doc/FenetreApprentissage.html +1175 -0
- data/doc/FenetreCharger.html +343 -0
- data/doc/FenetreJeuLibre.html +1859 -0
- data/doc/FenetreMenu.html +900 -0
- data/doc/FenetreNiveau.html +626 -0
- data/doc/FenetreNouvellePartie.html +602 -0
- data/doc/FenetrePrincipale.html +371 -0
- data/doc/FenetrePseudo.html +695 -0
- data/doc/FenetreReglages.html +946 -0
- data/doc/FenetreRegles.html +636 -0
- data/doc/FenetreScores.html +650 -0
- data/doc/FenetreStatistiques.html +672 -0
- data/doc/Generateur.html +1015 -0
- data/doc/Grille.html +1348 -0
- data/doc/GrilleDessin.html +1281 -0
- data/doc/HPTriple.html +593 -0
- data/doc/Header.html +1253 -0
- data/doc/HistoriqueAction.html +792 -0
- data/doc/Jeu.html +923 -0
- data/doc/JeuLibreControleur.html +1445 -0
- data/doc/MenuControleur.html +522 -0
- data/doc/Model.html +996 -0
- data/doc/NiveauControleur.html +451 -0
- data/doc/NouvellePartieControleur.html +330 -0
- data/doc/Peche.html +396 -0
- data/doc/PrincipaleControleur.html +320 -0
- data/doc/PseudoControleur.html +695 -0
- data/doc/ReglagesControleur.html +747 -0
- data/doc/ReglesControleur.html +330 -0
- data/doc/SCandidate.html +617 -0
- data/doc/SCell.html +587 -0
- data/doc/Score.html +926 -0
- data/doc/ScoresControleur.html +346 -0
- data/doc/StatistiquesControleur.html +390 -0
- data/doc/Technique.html +543 -0
- data/doc/TechniqueUsine.html +252 -0
- data/doc/Utilisateur.html +806 -0
- data/doc/View.html +844 -0
- data/doc/XWing.html +1031 -0
- data/doc/_index.html +478 -0
- data/doc/class_list.html +51 -0
- data/doc/css/common.css +1 -0
- data/doc/css/full_list.css +58 -0
- data/doc/css/style.css +492 -0
- data/doc/file.README.html +141 -0
- data/doc/file_list.html +56 -0
- data/doc/frames.html +17 -0
- data/doc/index.html +141 -0
- data/doc/js/app.js +243 -0
- data/doc/js/full_list.js +216 -0
- data/doc/js/jquery.js +4 -0
- data/doc/method_list.html +2523 -0
- data/doc/top-level-namespace.html +112 -0
- data/test/Generateur/grilleCorrecte.rb +198 -0
- data/test/Model/scoreCorrecte.rb +55 -0
- data/test/Model/utilisateurCorrecte.rb +68 -0
- data/test/test_helper.rb +2 -0
- data/test/unitTest.rb +72 -0
- metadata +187 -0
metadata
ADDED
|
@@ -0,0 +1,187 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: Dogeku
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 1.0.1
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- DanAurea
|
|
8
|
+
- Nikuto
|
|
9
|
+
- Flambii
|
|
10
|
+
- gaduran
|
|
11
|
+
- AlexTAB
|
|
12
|
+
- yguenver
|
|
13
|
+
- keryann
|
|
14
|
+
- BastienMor
|
|
15
|
+
autorequire:
|
|
16
|
+
bindir: bin
|
|
17
|
+
cert_chain: []
|
|
18
|
+
date: 2017-04-22 00:00:00.000000000 Z
|
|
19
|
+
dependencies: []
|
|
20
|
+
description: Help you to resolve a sudoku and learn how to resolve them.
|
|
21
|
+
email: laochi.bc@gmail.com
|
|
22
|
+
executables:
|
|
23
|
+
- dogeku
|
|
24
|
+
extensions: []
|
|
25
|
+
extra_rdoc_files:
|
|
26
|
+
- README.md
|
|
27
|
+
files:
|
|
28
|
+
- LICENSE
|
|
29
|
+
- README.md
|
|
30
|
+
- app/Historique/Action.rb
|
|
31
|
+
- app/Historique/ChangerCase.rb
|
|
32
|
+
- app/Historique/HistoriqueAction.rb
|
|
33
|
+
- app/components/CaseDessin.rb
|
|
34
|
+
- app/components/GrilleDessin.rb
|
|
35
|
+
- app/components/Header.rb
|
|
36
|
+
- app/config/app.yml
|
|
37
|
+
- app/config/database.yml
|
|
38
|
+
- app/controller/ApprentissageControleur.rb
|
|
39
|
+
- app/controller/ChargerControleur.rb
|
|
40
|
+
- app/controller/JeuLibreControleur.rb
|
|
41
|
+
- app/controller/MenuControleur.rb
|
|
42
|
+
- app/controller/NiveauControleur.rb
|
|
43
|
+
- app/controller/NouvellePartieControleur.rb
|
|
44
|
+
- app/controller/PrincipaleControleur.rb
|
|
45
|
+
- app/controller/PseudoControleur.rb
|
|
46
|
+
- app/controller/ReglagesControleur.rb
|
|
47
|
+
- app/controller/ReglesControleur.rb
|
|
48
|
+
- app/controller/ScoresControleur.rb
|
|
49
|
+
- app/controller/StatistiquesControleur.rb
|
|
50
|
+
- app/core/Conf.rb
|
|
51
|
+
- app/core/Controller.rb
|
|
52
|
+
- app/core/Core.rb
|
|
53
|
+
- app/core/Model.rb
|
|
54
|
+
- app/core/View.rb
|
|
55
|
+
- app/db/main.sqlite3
|
|
56
|
+
- app/model/Configuration.rb
|
|
57
|
+
- app/model/Grille.rb
|
|
58
|
+
- app/model/Jeu.rb
|
|
59
|
+
- app/model/Score.rb
|
|
60
|
+
- app/model/Utilisateur.rb
|
|
61
|
+
- app/utils/DSubset.rb
|
|
62
|
+
- app/utils/Generateur.rb
|
|
63
|
+
- app/utils/HPTriple.rb
|
|
64
|
+
- app/utils/Peche.rb
|
|
65
|
+
- app/utils/SCandidate.rb
|
|
66
|
+
- app/utils/SCell.rb
|
|
67
|
+
- app/utils/Technique.rb
|
|
68
|
+
- app/utils/TechniqueUsine.rb
|
|
69
|
+
- app/utils/XWing.rb
|
|
70
|
+
- app/view/Fenetre.rb
|
|
71
|
+
- app/view/FenetreApprentissage.rb
|
|
72
|
+
- app/view/FenetreCharger.rb
|
|
73
|
+
- app/view/FenetreJeuLibre.rb
|
|
74
|
+
- app/view/FenetreMenu.rb
|
|
75
|
+
- app/view/FenetreNiveau.rb
|
|
76
|
+
- app/view/FenetreNouvellePartie.rb
|
|
77
|
+
- app/view/FenetrePrincipale.rb
|
|
78
|
+
- app/view/FenetrePseudo.rb
|
|
79
|
+
- app/view/FenetreReglages.rb
|
|
80
|
+
- app/view/FenetreRegles.rb
|
|
81
|
+
- app/view/FenetreScores.rb
|
|
82
|
+
- app/view/FenetreStatistiques.rb
|
|
83
|
+
- assets/css/style.css
|
|
84
|
+
- assets/img/eraser.png
|
|
85
|
+
- assets/img/fond.jpg
|
|
86
|
+
- assets/img/iconApp.png
|
|
87
|
+
- assets/img/logoS.jpeg
|
|
88
|
+
- assets/img/sudokuIntro.jpg
|
|
89
|
+
- assets/img/user.png
|
|
90
|
+
- bin/dogeku
|
|
91
|
+
- doc/Action.html
|
|
92
|
+
- doc/ApprentissageControleur.html
|
|
93
|
+
- doc/CaseDessin.html
|
|
94
|
+
- doc/ChangerCase.html
|
|
95
|
+
- doc/ChargerControleur.html
|
|
96
|
+
- doc/Conf.html
|
|
97
|
+
- doc/Configuration.html
|
|
98
|
+
- doc/Controller.html
|
|
99
|
+
- doc/Core.html
|
|
100
|
+
- doc/DSubset.html
|
|
101
|
+
- doc/Fenetre.html
|
|
102
|
+
- doc/FenetreApprentissage.html
|
|
103
|
+
- doc/FenetreCharger.html
|
|
104
|
+
- doc/FenetreJeuLibre.html
|
|
105
|
+
- doc/FenetreMenu.html
|
|
106
|
+
- doc/FenetreNiveau.html
|
|
107
|
+
- doc/FenetreNouvellePartie.html
|
|
108
|
+
- doc/FenetrePrincipale.html
|
|
109
|
+
- doc/FenetrePseudo.html
|
|
110
|
+
- doc/FenetreReglages.html
|
|
111
|
+
- doc/FenetreRegles.html
|
|
112
|
+
- doc/FenetreScores.html
|
|
113
|
+
- doc/FenetreStatistiques.html
|
|
114
|
+
- doc/Generateur.html
|
|
115
|
+
- doc/Grille.html
|
|
116
|
+
- doc/GrilleDessin.html
|
|
117
|
+
- doc/HPTriple.html
|
|
118
|
+
- doc/Header.html
|
|
119
|
+
- doc/HistoriqueAction.html
|
|
120
|
+
- doc/Jeu.html
|
|
121
|
+
- doc/JeuLibreControleur.html
|
|
122
|
+
- doc/MenuControleur.html
|
|
123
|
+
- doc/Model.html
|
|
124
|
+
- doc/NiveauControleur.html
|
|
125
|
+
- doc/NouvellePartieControleur.html
|
|
126
|
+
- doc/Peche.html
|
|
127
|
+
- doc/PrincipaleControleur.html
|
|
128
|
+
- doc/PseudoControleur.html
|
|
129
|
+
- doc/ReglagesControleur.html
|
|
130
|
+
- doc/ReglesControleur.html
|
|
131
|
+
- doc/SCandidate.html
|
|
132
|
+
- doc/SCell.html
|
|
133
|
+
- doc/Score.html
|
|
134
|
+
- doc/ScoresControleur.html
|
|
135
|
+
- doc/StatistiquesControleur.html
|
|
136
|
+
- doc/Technique.html
|
|
137
|
+
- doc/TechniqueUsine.html
|
|
138
|
+
- doc/Utilisateur.html
|
|
139
|
+
- doc/View.html
|
|
140
|
+
- doc/XWing.html
|
|
141
|
+
- doc/_index.html
|
|
142
|
+
- doc/class_list.html
|
|
143
|
+
- doc/css/common.css
|
|
144
|
+
- doc/css/full_list.css
|
|
145
|
+
- doc/css/style.css
|
|
146
|
+
- doc/file.README.html
|
|
147
|
+
- doc/file_list.html
|
|
148
|
+
- doc/frames.html
|
|
149
|
+
- doc/index.html
|
|
150
|
+
- doc/js/app.js
|
|
151
|
+
- doc/js/full_list.js
|
|
152
|
+
- doc/js/jquery.js
|
|
153
|
+
- doc/method_list.html
|
|
154
|
+
- doc/top-level-namespace.html
|
|
155
|
+
- test/Generateur/grilleCorrecte.rb
|
|
156
|
+
- test/Model/scoreCorrecte.rb
|
|
157
|
+
- test/Model/utilisateurCorrecte.rb
|
|
158
|
+
- test/test_helper.rb
|
|
159
|
+
- test/unitTest.rb
|
|
160
|
+
homepage: http://rubygems.org/gems/Dogeku
|
|
161
|
+
licenses:
|
|
162
|
+
- MIT
|
|
163
|
+
- GPL-2.0
|
|
164
|
+
metadata: {}
|
|
165
|
+
post_install_message: |2-
|
|
166
|
+
|
|
167
|
+
Merci d'avoir installé Dogeku, vous ne regretterez rien !
|
|
168
|
+
rdoc_options: []
|
|
169
|
+
require_paths:
|
|
170
|
+
- lib
|
|
171
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
172
|
+
requirements:
|
|
173
|
+
- - ">="
|
|
174
|
+
- !ruby/object:Gem::Version
|
|
175
|
+
version: '0'
|
|
176
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
177
|
+
requirements:
|
|
178
|
+
- - ">="
|
|
179
|
+
- !ruby/object:Gem::Version
|
|
180
|
+
version: '0'
|
|
181
|
+
requirements: []
|
|
182
|
+
rubyforge_project:
|
|
183
|
+
rubygems_version: 2.5.2
|
|
184
|
+
signing_key:
|
|
185
|
+
specification_version: 4
|
|
186
|
+
summary: Sudoku helper
|
|
187
|
+
test_files: []
|