disguise 0.3.10 → 0.3.11
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/LICENSE +1 -1
- data/README.rdoc +1 -1
- data/Rakefile +8 -17
- data/VERSION +1 -1
- data/disguise.gemspec +1 -73
- data/locales/fr.yml +2 -2
- metadata +1 -1
data/LICENSE
CHANGED
data/README.rdoc
CHANGED
data/Rakefile
CHANGED
|
@@ -10,23 +10,14 @@ end
|
|
|
10
10
|
|
|
11
11
|
begin
|
|
12
12
|
require 'jeweler'
|
|
13
|
-
Jeweler::Tasks.new do |
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
gem.files.include %w( tasks/*
|
|
22
|
-
db/migrate/*.rb
|
|
23
|
-
generators/**/**/**/*
|
|
24
|
-
app/**/**/**/*
|
|
25
|
-
config/*
|
|
26
|
-
locales/*
|
|
27
|
-
rails/*
|
|
28
|
-
test/*
|
|
29
|
-
lib/**/* )
|
|
13
|
+
Jeweler::Tasks.new do |gemspec|
|
|
14
|
+
gemspec.name = "disguise"
|
|
15
|
+
gemspec.summary = "Easy to use view theme system for Rails"
|
|
16
|
+
gemspec.email = "justinball@gmail.com"
|
|
17
|
+
gemspec.homepage = "http://github.com/jbasdf/disguise"
|
|
18
|
+
gemspec.description = "Add themes to your Rails application to easily change the view layer and impress everyone you know"
|
|
19
|
+
gemspec.authors = ["Justin Ball"]
|
|
20
|
+
gemspec.rubyforge_project = "disguise"
|
|
30
21
|
end
|
|
31
22
|
Jeweler::GemcutterTasks.new
|
|
32
23
|
Jeweler::RubyforgeTasks.new do |rubyforge|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.3.
|
|
1
|
+
0.3.11
|
data/disguise.gemspec
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{disguise}
|
|
8
|
-
s.version = "0.3.
|
|
8
|
+
s.version = "0.3.11"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Justin Ball"]
|
|
@@ -24,149 +24,77 @@ Gem::Specification.new do |s|
|
|
|
24
24
|
"Rakefile",
|
|
25
25
|
"VERSION",
|
|
26
26
|
"app/controllers/admin/disguise/domain_themes_controller.rb",
|
|
27
|
-
"app/controllers/admin/disguise/domain_themes_controller.rb",
|
|
28
|
-
"app/controllers/admin/disguise/themes_controller.rb",
|
|
29
27
|
"app/controllers/admin/disguise/themes_controller.rb",
|
|
30
28
|
"app/models/domain_theme.rb",
|
|
31
|
-
"app/models/domain_theme.rb",
|
|
32
29
|
"app/models/theme.rb",
|
|
33
|
-
"app/models/theme.rb",
|
|
34
|
-
"app/views/admin/themes/_theme.html.erb",
|
|
35
30
|
"app/views/admin/themes/_theme.html.erb",
|
|
36
31
|
"app/views/admin/themes/edit.html.erb",
|
|
37
|
-
"app/views/admin/themes/edit.html.erb",
|
|
38
|
-
"app/views/admin/themes/no_themes.html.erb",
|
|
39
32
|
"app/views/admin/themes/no_themes.html.erb",
|
|
40
33
|
"config/disguise_routes.rb",
|
|
41
|
-
"config/disguise_routes.rb",
|
|
42
|
-
"db/migrate/20090530170040_create_themes.rb",
|
|
43
34
|
"db/migrate/20090530170040_create_themes.rb",
|
|
44
35
|
"db/migrate/20090606153236_create_domain_themes.rb",
|
|
45
|
-
"db/migrate/20090606153236_create_domain_themes.rb",
|
|
46
36
|
"disguise.gemspec",
|
|
47
37
|
"generators/theme/USAGE",
|
|
48
|
-
"generators/theme/USAGE",
|
|
49
|
-
"generators/theme/templates/INSTALL",
|
|
50
38
|
"generators/theme/templates/INSTALL",
|
|
51
39
|
"generators/theme/templates/description.txt",
|
|
52
|
-
"generators/theme/templates/description.txt",
|
|
53
|
-
"generators/theme/templates/locales/en.yml",
|
|
54
40
|
"generators/theme/templates/locales/en.yml",
|
|
55
41
|
"generators/theme/templates/preview.gif",
|
|
56
|
-
"generators/theme/templates/preview.gif",
|
|
57
|
-
"generators/theme/templates/stylesheets/styles.css",
|
|
58
42
|
"generators/theme/templates/stylesheets/styles.css",
|
|
59
43
|
"generators/theme/templates/views/_footer.html.erb",
|
|
60
|
-
"generators/theme/templates/views/_footer.html.erb",
|
|
61
|
-
"generators/theme/templates/views/_head.html.erb",
|
|
62
44
|
"generators/theme/templates/views/_head.html.erb",
|
|
63
45
|
"generators/theme/templates/views/_header.html.erb",
|
|
64
|
-
"generators/theme/templates/views/_header.html.erb",
|
|
65
|
-
"generators/theme/templates/views/default.html.erb",
|
|
66
46
|
"generators/theme/templates/views/default.html.erb",
|
|
67
47
|
"generators/theme/theme_generator.rb",
|
|
68
|
-
"generators/theme/theme_generator.rb",
|
|
69
48
|
"lib/action_controller/disguise_application.rb",
|
|
70
|
-
"lib/action_controller/disguise_application.rb",
|
|
71
|
-
"lib/disguise.rb",
|
|
72
49
|
"lib/disguise.rb",
|
|
73
50
|
"lib/disguise/initialize_routes.rb",
|
|
74
|
-
"lib/disguise/initialize_routes.rb",
|
|
75
|
-
"lib/disguise/tasks.rb",
|
|
76
51
|
"lib/disguise/tasks.rb",
|
|
77
52
|
"locales/ar.yml",
|
|
78
|
-
"locales/ar.yml",
|
|
79
|
-
"locales/bg.yml",
|
|
80
53
|
"locales/bg.yml",
|
|
81
54
|
"locales/ca.yml",
|
|
82
|
-
"locales/ca.yml",
|
|
83
|
-
"locales/cs.yml",
|
|
84
55
|
"locales/cs.yml",
|
|
85
56
|
"locales/da.yml",
|
|
86
|
-
"locales/da.yml",
|
|
87
57
|
"locales/de.yml",
|
|
88
|
-
"locales/de.yml",
|
|
89
|
-
"locales/el.yml",
|
|
90
58
|
"locales/el.yml",
|
|
91
59
|
"locales/en.yml",
|
|
92
|
-
"locales/en.yml",
|
|
93
|
-
"locales/es.yml",
|
|
94
60
|
"locales/es.yml",
|
|
95
61
|
"locales/et.yml",
|
|
96
|
-
"locales/et.yml",
|
|
97
|
-
"locales/fa.yml",
|
|
98
62
|
"locales/fa.yml",
|
|
99
63
|
"locales/fi.yml",
|
|
100
|
-
"locales/fi.yml",
|
|
101
|
-
"locales/fr.yml",
|
|
102
64
|
"locales/fr.yml",
|
|
103
65
|
"locales/gl.yml",
|
|
104
|
-
"locales/gl.yml",
|
|
105
66
|
"locales/hi.yml",
|
|
106
|
-
"locales/hi.yml",
|
|
107
|
-
"locales/hr.yml",
|
|
108
67
|
"locales/hr.yml",
|
|
109
68
|
"locales/hu.yml",
|
|
110
|
-
"locales/hu.yml",
|
|
111
|
-
"locales/id.yml",
|
|
112
69
|
"locales/id.yml",
|
|
113
70
|
"locales/it.yml",
|
|
114
|
-
"locales/it.yml",
|
|
115
|
-
"locales/iw.yml",
|
|
116
71
|
"locales/iw.yml",
|
|
117
72
|
"locales/ja.yml",
|
|
118
|
-
"locales/ja.yml",
|
|
119
|
-
"locales/ko.yml",
|
|
120
73
|
"locales/ko.yml",
|
|
121
74
|
"locales/lt.yml",
|
|
122
|
-
"locales/lt.yml",
|
|
123
75
|
"locales/lv.yml",
|
|
124
|
-
"locales/lv.yml",
|
|
125
|
-
"locales/mt.yml",
|
|
126
76
|
"locales/mt.yml",
|
|
127
77
|
"locales/nl.yml",
|
|
128
|
-
"locales/nl.yml",
|
|
129
|
-
"locales/no.yml",
|
|
130
78
|
"locales/no.yml",
|
|
131
79
|
"locales/pl.yml",
|
|
132
|
-
"locales/pl.yml",
|
|
133
|
-
"locales/pt-PT.yml",
|
|
134
80
|
"locales/pt-PT.yml",
|
|
135
81
|
"locales/pt.yml",
|
|
136
|
-
"locales/pt.yml",
|
|
137
|
-
"locales/ro.yml",
|
|
138
82
|
"locales/ro.yml",
|
|
139
83
|
"locales/ru.yml",
|
|
140
|
-
"locales/ru.yml",
|
|
141
84
|
"locales/sk.yml",
|
|
142
|
-
"locales/sk.yml",
|
|
143
|
-
"locales/sl.yml",
|
|
144
85
|
"locales/sl.yml",
|
|
145
86
|
"locales/sq.yml",
|
|
146
|
-
"locales/sq.yml",
|
|
147
|
-
"locales/sr.yml",
|
|
148
87
|
"locales/sr.yml",
|
|
149
88
|
"locales/sv.yml",
|
|
150
|
-
"locales/sv.yml",
|
|
151
|
-
"locales/th.yml",
|
|
152
89
|
"locales/th.yml",
|
|
153
90
|
"locales/tl.yml",
|
|
154
|
-
"locales/tl.yml",
|
|
155
|
-
"locales/tr.yml",
|
|
156
91
|
"locales/tr.yml",
|
|
157
92
|
"locales/uk.yml",
|
|
158
|
-
"locales/uk.yml",
|
|
159
93
|
"locales/vi.yml",
|
|
160
|
-
"locales/vi.yml",
|
|
161
|
-
"locales/zh-CN.yml",
|
|
162
94
|
"locales/zh-CN.yml",
|
|
163
95
|
"locales/zh-TW.yml",
|
|
164
|
-
"locales/zh-TW.yml",
|
|
165
|
-
"locales/zh.yml",
|
|
166
96
|
"locales/zh.yml",
|
|
167
97
|
"rails/init.rb",
|
|
168
|
-
"rails/init.rb",
|
|
169
|
-
"tasks/rails.rake",
|
|
170
98
|
"tasks/rails.rake",
|
|
171
99
|
"test/rails_root/.gitignore",
|
|
172
100
|
"test/rails_root/.rake_tasks",
|
data/locales/fr.yml
CHANGED
|
@@ -7,13 +7,13 @@ fr:
|
|
|
7
7
|
delete_uri: Supprimer
|
|
8
8
|
error_creating_domain_theme: "Il y avait un problème en ajoutant l'url: {{error}}"
|
|
9
9
|
name_theme: ~
|
|
10
|
-
no_current_theme: "Actuellement, aucun thème n'a été
|
|
10
|
+
no_current_theme: "Actuellement, aucun thème n'a été sélectionnée pour cette application de sorte que la vue de l'application par défaut sera utilisé."
|
|
11
11
|
no_themes_message: "Vous n'avez pas encore créé de thèmes pour votre application. Si vous souhaitez créer un nouveau thème, lancez simplement le générateur de thème et suivez les instructions:"
|
|
12
12
|
remove_all_themes: "Supprimer tous les thèmes et l'application par défaut utiliser des modèles"
|
|
13
13
|
set_theme: "Définir un thème"
|
|
14
14
|
theme_removed: "Tous les thèmes ont été retirés"
|
|
15
15
|
theme_updated: "Thème a été mis à jour."
|
|
16
|
-
theme_uri_label: "URL pour le
|
|
16
|
+
theme_uri_label: "URL pour le Thème"
|
|
17
17
|
update_uri: "À jour l'URL"
|
|
18
18
|
uri_deleted: "L'URL spécifiée a été supprimée"
|
|
19
19
|
uris_title: "Ce thème sera affiché pour l'ensemble des URL suivantes"
|