locomotive_cms 0.0.2.9 → 0.0.3.1
Sign up to get free protection for your applications and to get access to all the features.
- data/Gemfile +1 -0
- data/app/controllers/admin/accounts_controller.rb +5 -11
- data/app/controllers/admin/asset_collections_controller.rb +5 -46
- data/app/controllers/admin/assets_controller.rb +12 -30
- data/app/controllers/admin/base_controller.rb +15 -19
- data/app/controllers/admin/content_types_controller.rb +1 -46
- data/app/controllers/admin/contents_controller.rb +15 -42
- data/app/controllers/admin/current_sites_controller.rb +10 -11
- data/app/controllers/admin/custom_fields_controller.rb +1 -1
- data/app/controllers/admin/layouts_controller.rb +2 -46
- data/app/controllers/admin/memberships_controller.rb +5 -18
- data/app/controllers/admin/my_accounts_controller.rb +11 -9
- data/app/controllers/admin/pages_controller.rb +6 -45
- data/app/controllers/admin/sitemaps_controller.rb +16 -0
- data/app/controllers/admin/sites_controller.rb +12 -19
- data/app/controllers/admin/snippets_controller.rb +2 -45
- data/app/controllers/admin/theme_assets_controller.rb +13 -54
- data/app/helpers/admin/assets_helper.rb +1 -1
- data/app/helpers/admin/base_helper.rb +2 -2
- data/app/helpers/admin/pages_helper.rb +13 -0
- data/app/models/membership.rb +4 -1
- data/app/models/page.rb +8 -1
- data/app/models/page_part.rb +1 -4
- data/app/views/admin/asset_collections/_asset.html.haml +1 -1
- data/app/views/admin/asset_collections/edit.html.haml +7 -7
- data/app/views/admin/asset_collections/new.html.haml +1 -1
- data/app/views/admin/assets/_form.html.haml +1 -1
- data/app/views/admin/assets/edit.html.haml +3 -3
- data/app/views/admin/assets/new.html.haml +2 -2
- data/app/views/admin/content_types/edit.html.haml +1 -1
- data/app/views/admin/contents/edit.html.haml +1 -1
- data/app/views/admin/contents/index.html.haml +1 -1
- data/app/views/admin/contents/new.html.haml +1 -1
- data/app/views/admin/current_sites/edit.html.haml +3 -3
- data/app/views/admin/layouts/edit.html.haml +2 -2
- data/app/views/admin/layouts/index.html.haml +1 -1
- data/app/views/admin/my_accounts/edit.html.haml +3 -3
- data/app/views/admin/pages/edit.html.haml +1 -1
- data/app/views/admin/pages/index.html.haml +1 -1
- data/app/views/admin/shared/_head.html.haml +1 -1
- data/app/views/admin/shared/menu/_assets.html.haml +2 -2
- data/app/views/admin/sitemaps/show.xml.builder +18 -0
- data/app/views/admin/snippets/edit.html.haml +2 -2
- data/app/views/admin/snippets/index.html.haml +1 -1
- data/app/views/admin/theme_assets/_form.html.haml +9 -9
- data/app/views/admin/theme_assets/edit.html.haml +4 -4
- data/app/views/admin/theme_assets/index.html.haml +1 -1
- data/app/views/admin/theme_assets/new.html.haml +1 -1
- data/app/views/layouts/admin/application.html.haml +1 -0
- data/config/initializers/locomotive.rb +21 -0
- data/config/locales/admin_ui_en.yml +2 -66
- data/config/locales/admin_ui_fr.yml +0 -64
- data/config/locales/flash.en.yml +116 -0
- data/config/locales/flash.fr.yml +116 -0
- data/config/routes.rb +3 -0
- data/lib/generators/locomotive/copy_assets/copy_assets_generator.rb +14 -0
- data/lib/generators/locomotive/install/install_generator.rb +15 -2
- data/lib/generators/locomotive/install/templates/README +17 -0
- data/lib/locomotive.rb +3 -0
- data/lib/locomotive/admin_responder.rb +28 -0
- data/lib/locomotive/inherited_resources.rb +46 -0
- data/lib/locomotive/liquid/drops/page.rb +1 -1
- data/lib/locomotive/liquid/filters/text.rb +1 -1
- data/lib/locomotive/liquid/tags/nav.rb +7 -4
- data/public/images/admin/icons/actions.png +0 -0
- data/public/images/admin/menu/icons/assets.png +0 -0
- data/public/javascripts/admin/application.js +3 -0
- data/public/javascripts/admin/pages.js +1 -1
- data/public/javascripts/admin/plugins/shortcut.js +55 -0
- data/public/stylesheets/admin/application.css +1 -1
- data/public/stylesheets/admin/buttons.css +8 -13
- data/public/stylesheets/admin/formtastic_changes.css +1 -2
- data/public/stylesheets/admin/layout.css +24 -12
- data/public/stylesheets/admin/menu.css +3 -3
- data/spec/factories.rb +1 -1
- data/spec/lib/locomotive/liquid/tags/nav_spec.rb +11 -2
- data/spec/models/membership_spec.rb +5 -4
- data/spec/models/page_spec.rb +10 -8
- metadata +30 -6
- data/lib/generators/locomotive/assets/assets_generator.rb +0 -16
@@ -110,13 +110,6 @@ fr:
|
|
110
110
|
show: voir
|
111
111
|
help: "Le titre de la page est modifiable en cliquant dessus."
|
112
112
|
ask_for_title: "Veuillez entrer le nouveau titre"
|
113
|
-
messages:
|
114
|
-
successful_create: "La page a été créée avec succès."
|
115
|
-
successful_update: "La page a été mise à jour avec succès."
|
116
|
-
successful_destroy: "La page a été supprimée avec succès."
|
117
|
-
successful_sort: "Les pages ont été ordonnées avec succès."
|
118
|
-
failed_create: "La page n'a pas été créée."
|
119
|
-
failed_update: "La page n'a pas été mise à jour."
|
120
113
|
form:
|
121
114
|
cache_strategy:
|
122
115
|
none: Aucun
|
@@ -141,12 +134,6 @@ fr:
|
|
141
134
|
new: nouveau gabarit
|
142
135
|
layout:
|
143
136
|
updated_at: Mis à jour le
|
144
|
-
messages:
|
145
|
-
successful_create: "Le gabarit a été crée avec succès."
|
146
|
-
successful_update: "Le gabarit a été mis à jour avec succès."
|
147
|
-
successful_destroy: "Le gabarit a été supprimé avec succès."
|
148
|
-
failed_create: "Le gabarit n'a pas été crée."
|
149
|
-
failed_update: "Le gabarit n'a pas été mis à jour."
|
150
137
|
|
151
138
|
snippets:
|
152
139
|
index:
|
@@ -162,45 +149,27 @@ fr:
|
|
162
149
|
help: "Remplissez le formulaire ci-dessous pour mettre à jour votre snippet."
|
163
150
|
snippet:
|
164
151
|
updated_at: Mis à jour le
|
165
|
-
messages:
|
166
|
-
successful_create: "Le snippet a été crée avec succès."
|
167
|
-
successful_update: "Le snippet a été mis à jour avec succès."
|
168
|
-
successful_destroy: "Le snippet a été supprimé avec succès."
|
169
|
-
failed_create: "Le snippet n'a pas été crée."
|
170
|
-
failed_update: "Le snippet n'a pas été mis à jour."
|
171
152
|
|
172
153
|
sites:
|
173
154
|
new:
|
174
155
|
title: "Nouveau site"
|
175
156
|
help: "Remplissez le formulaire ci-dessous pour créer votre nouveau site."
|
176
|
-
messages:
|
177
|
-
successful_create: "Le site a été crée avec succès."
|
178
|
-
failed_create: "Le site n'a pas été crée."
|
179
157
|
|
180
158
|
current_sites:
|
181
159
|
edit:
|
182
160
|
new_membership: ajouter compte
|
183
161
|
help: "Le nom du site est modifiable en cliquant dessus."
|
184
162
|
ask_for_name: "Veuillez entrer le nouveau nom"
|
185
|
-
messages:
|
186
|
-
successful_update: "Le site a été mis à jour avec succès."
|
187
|
-
failed_update: "Le site n'a pas été mis à jour."
|
188
163
|
|
189
164
|
memberships:
|
190
165
|
new:
|
191
166
|
title: "Ajout d'un compte"
|
192
167
|
help: "Donnez l'adresse email du compte à ajouter. S'il n'existe pas, vous serez redirigé(e) vers le formulaire de création d'un compte."
|
193
|
-
messages:
|
194
|
-
successful_create: "Le compte a été ajouté avec succès."
|
195
|
-
failed_create: "Le compte n'a pas été ajouté."
|
196
168
|
|
197
169
|
accounts:
|
198
170
|
new:
|
199
171
|
title: Nouveau compte
|
200
172
|
help: "Remplissez le formulaire ci-dessous pour ajouter un nouveau compte."
|
201
|
-
messages:
|
202
|
-
successful_create: "Le compte a été crée avec succès."
|
203
|
-
failed_create: "Le compte n'a pas été crée."
|
204
173
|
|
205
174
|
my_accounts:
|
206
175
|
edit:
|
@@ -209,9 +178,6 @@ fr:
|
|
209
178
|
en: en Anglais
|
210
179
|
fr: en Français
|
211
180
|
ask_for_name: "Veuillez entrer le nouveau nom"
|
212
|
-
messages:
|
213
|
-
successful_update: "Mon compte a été mis à jour avec succès."
|
214
|
-
failed_update: "compte site n'a pas été mis à jour."
|
215
181
|
|
216
182
|
theme_assets:
|
217
183
|
index:
|
@@ -234,12 +200,6 @@ fr:
|
|
234
200
|
images:
|
235
201
|
title: Liste des images
|
236
202
|
no_items: "Il n'y a pas d'images."
|
237
|
-
messages:
|
238
|
-
successful_create: "Le fichier a été crée avec succès."
|
239
|
-
successful_update: "Le fichier a été mis à jour avec succès."
|
240
|
-
successful_destroy: "Le fichier a été supprimé avec succès."
|
241
|
-
failed_create: "Le fichier n'a pas été crée."
|
242
|
-
failed_update: "Le fichier n'a pas été mis à jour."
|
243
203
|
|
244
204
|
asset_collections:
|
245
205
|
index:
|
@@ -256,12 +216,6 @@ fr:
|
|
256
216
|
destroy: supprimer collection
|
257
217
|
no_items: "Il n'existe pas de médias. Vous pouvez commencer par créer un <a href='{{url}}'>ici</a>."
|
258
218
|
ask_for_name: "Veuillez entrer le nouveau nom"
|
259
|
-
messages:
|
260
|
-
successful_create: "La collection a été créée avec succès."
|
261
|
-
successful_update: "La collection a été mise à jour avec succès."
|
262
|
-
successful_destroy: "La collection a été supprimée avec succès."
|
263
|
-
failed_create: "La collection n'a pas été créée."
|
264
|
-
failed_update: "La collection n'a pas été mise à jour."
|
265
219
|
|
266
220
|
assets:
|
267
221
|
new:
|
@@ -270,12 +224,6 @@ fr:
|
|
270
224
|
edit:
|
271
225
|
title: "Edition média"
|
272
226
|
help: "Remplissez le formulaire ci-dessous pour mettre à jour votre média."
|
273
|
-
messages:
|
274
|
-
successful_create: "Le média a été crée avec succès."
|
275
|
-
successful_update: "Le média a été mis à jour avec succès."
|
276
|
-
successful_destroy: "Le média a été supprimé avec succès."
|
277
|
-
failed_create: "Le média n'a pas été crée."
|
278
|
-
failed_update: "Le média n'a pas été mis à jour."
|
279
227
|
|
280
228
|
content_types:
|
281
229
|
index:
|
@@ -292,12 +240,6 @@ fr:
|
|
292
240
|
order_by:
|
293
241
|
updated_at: 'Par date de mise à jour'
|
294
242
|
position_in_list: Manuellement
|
295
|
-
messages:
|
296
|
-
successful_create: "Le modèle a été crée avec succès."
|
297
|
-
successful_update: "Le modèle a été mis à jour avec succès."
|
298
|
-
successful_destroy: "Le modèle a été supprimé avec succès."
|
299
|
-
failed_create: "Le modèle n'a pas été crée."
|
300
|
-
failed_update: "Le modèle n'a pas été mis à jour."
|
301
243
|
|
302
244
|
contents:
|
303
245
|
index:
|
@@ -315,12 +257,6 @@ fr:
|
|
315
257
|
title: '{{type}} — nouvel élément'
|
316
258
|
edit:
|
317
259
|
title: '{{type}} — édition élément'
|
318
|
-
messages:
|
319
|
-
successful_create: "L'élément a été crée avec succès."
|
320
|
-
successful_update: "L'élément a été mis à jour avec succès."
|
321
|
-
successful_destroy: "L'élément a été supprimé avec succès."
|
322
|
-
failed_create: "L'élément a été crée avec succès."
|
323
|
-
failed_update: "L'élément a été supprimé avec succès."
|
324
260
|
|
325
261
|
formtastic:
|
326
262
|
titles:
|
@@ -0,0 +1,116 @@
|
|
1
|
+
en:
|
2
|
+
flash:
|
3
|
+
admin:
|
4
|
+
pages:
|
5
|
+
create:
|
6
|
+
notice: "Page was successfully created."
|
7
|
+
alert: "Page was not created."
|
8
|
+
update:
|
9
|
+
notice: "Page was successfully updated."
|
10
|
+
alert: "Page was not updated."
|
11
|
+
sort:
|
12
|
+
notice: "Pages were successfully sorted."
|
13
|
+
destroy:
|
14
|
+
notice: "Page was successfully deleted."
|
15
|
+
|
16
|
+
contents:
|
17
|
+
create:
|
18
|
+
notice: "Content was successfully created."
|
19
|
+
alert: "Content was not created."
|
20
|
+
update:
|
21
|
+
notice: "Content was successfully updated."
|
22
|
+
alert: "Content was not updated."
|
23
|
+
sort:
|
24
|
+
notice: "Contents were successfully sorted."
|
25
|
+
destroy:
|
26
|
+
notice: "Content was successfully deleted."
|
27
|
+
|
28
|
+
content_types:
|
29
|
+
create:
|
30
|
+
notice: "Model was successfully created."
|
31
|
+
alert: "Model was not created."
|
32
|
+
update:
|
33
|
+
notice: "Model was successfully updated."
|
34
|
+
alert: "Model was not updated."
|
35
|
+
destroy:
|
36
|
+
notice: "Model was successfully deleted."
|
37
|
+
|
38
|
+
current_sites:
|
39
|
+
update:
|
40
|
+
notice: "My site was successfully updated."
|
41
|
+
alert: "My site was not updated."
|
42
|
+
|
43
|
+
layouts:
|
44
|
+
create:
|
45
|
+
notice: "Layout was successfully created."
|
46
|
+
alert: "Layout was not created."
|
47
|
+
update:
|
48
|
+
notice: "Layout was successfully updated."
|
49
|
+
alert: "Layout was not updated."
|
50
|
+
destroy:
|
51
|
+
notice: "Layout was successfully deleted."
|
52
|
+
|
53
|
+
snippets:
|
54
|
+
create:
|
55
|
+
notice: "Snippet was successfully created."
|
56
|
+
alert: "Snippet was not created."
|
57
|
+
update:
|
58
|
+
notice: "Snippet was successfully updated."
|
59
|
+
alert: "Snippet was not updated."
|
60
|
+
destroy:
|
61
|
+
notice: "Snippet was successfully deleted."
|
62
|
+
|
63
|
+
accounts:
|
64
|
+
create:
|
65
|
+
notice: "Account was successfully created."
|
66
|
+
alert: "Account was not created."
|
67
|
+
|
68
|
+
my_accounts:
|
69
|
+
update:
|
70
|
+
notice: "My account was successfully updated."
|
71
|
+
alert: "My account was not updated."
|
72
|
+
|
73
|
+
sites:
|
74
|
+
create:
|
75
|
+
notice: "Site was successfully created."
|
76
|
+
alert: "Site was not created."
|
77
|
+
destroy:
|
78
|
+
notice: "Site was successfully deleted."
|
79
|
+
|
80
|
+
memberships:
|
81
|
+
create:
|
82
|
+
notice: "Membership was successfully created."
|
83
|
+
alert: "Membership was not created."
|
84
|
+
already_created: "Account was already added the current site."
|
85
|
+
|
86
|
+
asset_collections:
|
87
|
+
create:
|
88
|
+
notice: "Collection was successfully created."
|
89
|
+
alert: "Collection was not created."
|
90
|
+
update:
|
91
|
+
notice: "Collection was successfully updated."
|
92
|
+
alert: "Collection was not updated."
|
93
|
+
destroy:
|
94
|
+
notice: "Collection was successfully deleted."
|
95
|
+
|
96
|
+
assets:
|
97
|
+
create:
|
98
|
+
notice: "Asset was successfully created."
|
99
|
+
alert: "Asset was not created."
|
100
|
+
update:
|
101
|
+
notice: "Asset was successfully updated."
|
102
|
+
alert: "Asset was not updated."
|
103
|
+
|
104
|
+
theme_assets:
|
105
|
+
create:
|
106
|
+
notice: "File was successfully created."
|
107
|
+
alert: "File was not created."
|
108
|
+
update:
|
109
|
+
notice: "File was successfully updated."
|
110
|
+
alert: "File was not updated."
|
111
|
+
destroy:
|
112
|
+
notice: "File was successfully deleted."
|
113
|
+
|
114
|
+
custom_fields:
|
115
|
+
update:
|
116
|
+
alert: "Field not updated"
|
@@ -0,0 +1,116 @@
|
|
1
|
+
fr:
|
2
|
+
flash:
|
3
|
+
admin:
|
4
|
+
pages:
|
5
|
+
create:
|
6
|
+
notice: "La page a été créée avec succès."
|
7
|
+
alert: "La page n'a pas été créée."
|
8
|
+
update:
|
9
|
+
notice: "La page a été mise à jour avec succès."
|
10
|
+
alert: "La page n'a pas été mise à jour."
|
11
|
+
sort:
|
12
|
+
notice: "Les pages ont été ordonnées avec succès."
|
13
|
+
destroy:
|
14
|
+
notice: "La page a été supprimée avec succès."
|
15
|
+
|
16
|
+
contents:
|
17
|
+
create:
|
18
|
+
notice: "L'élément a été crée avec succès."
|
19
|
+
alert: "L'élément a été crée avec succès."
|
20
|
+
update:
|
21
|
+
notice: "L'élément a été mis à jour avec succès."
|
22
|
+
alert: "L'élément n'a pas été mis à jour."
|
23
|
+
sort:
|
24
|
+
notice: "Les éléments ont été ordonnés avec succès."
|
25
|
+
destroy:
|
26
|
+
notice: "L'élément a été supprimé avec succès."
|
27
|
+
|
28
|
+
content_types:
|
29
|
+
create:
|
30
|
+
notice: "Le modèle a été crée avec succès."
|
31
|
+
alert: "Le modèle n'a pas été crée."
|
32
|
+
update:
|
33
|
+
notice: "Le modèle a été mis à jour avec succès."
|
34
|
+
alert: "Le modèle n'a pas été mis à jour."
|
35
|
+
destroy:
|
36
|
+
notice: "Le modèle a été supprimé avec succès."
|
37
|
+
|
38
|
+
current_sites:
|
39
|
+
update:
|
40
|
+
notice: "Mon site a été mis à jour avec succès."
|
41
|
+
alert: "Mon site n'a pas été mis à jour."
|
42
|
+
|
43
|
+
layouts:
|
44
|
+
create:
|
45
|
+
notice: "Le gabarit a été crée avec succès."
|
46
|
+
alert: "Le gabarit n'a pas été crée."
|
47
|
+
update:
|
48
|
+
notice: "Le gabarit a été mis à jour avec succès."
|
49
|
+
alert: "Le gabarit n'a pas été mis à jour."
|
50
|
+
destroy:
|
51
|
+
notice: "Le gabarit a été supprimé avec succès."
|
52
|
+
|
53
|
+
snippets:
|
54
|
+
create:
|
55
|
+
notice: "Le snippet a été crée avec succès."
|
56
|
+
alert: "Le snippet n'a pas été crée."
|
57
|
+
update:
|
58
|
+
notice: "Le snippet a été mis à jour avec succès."
|
59
|
+
alert: "Le snippet n'a pas été mis à jour."
|
60
|
+
destroy:
|
61
|
+
notice: "Le snippet a été supprimé avec succès."
|
62
|
+
|
63
|
+
accounts:
|
64
|
+
create:
|
65
|
+
notice: "Le compte a été crée avec succès."
|
66
|
+
alert: "Le compte n'a pas été crée."
|
67
|
+
|
68
|
+
my_accounts:
|
69
|
+
update:
|
70
|
+
notice: "Mon compte a été mis à jour avec succès."
|
71
|
+
alert: "Mon compte n'a pas été mis à jour."
|
72
|
+
|
73
|
+
sites:
|
74
|
+
create:
|
75
|
+
notice: "Le site a été crée avec succès."
|
76
|
+
alert: "Le site n'a pas été crée."
|
77
|
+
destroy:
|
78
|
+
notice: "Le site a été supprimé avec succès."
|
79
|
+
|
80
|
+
memberships:
|
81
|
+
create:
|
82
|
+
notice: "Le compte a été ajouté avec succès."
|
83
|
+
alert: "Le compte n'a pas été ajouté."
|
84
|
+
already_created: "Le compte a déjà été ajouté pour ce site."
|
85
|
+
|
86
|
+
asset_collections:
|
87
|
+
create:
|
88
|
+
notice: "La collection a été créée avec succès."
|
89
|
+
alert: "La collection n'a pas été créée."
|
90
|
+
update:
|
91
|
+
notice: "La collection a été mise à jour avec succès."
|
92
|
+
alert: "La collection n'a pas été mise à jour."
|
93
|
+
destroy:
|
94
|
+
notice: "La collection a été supprimée avec succès."
|
95
|
+
|
96
|
+
assets:
|
97
|
+
create:
|
98
|
+
notice: "Le média a été crée avec succès."
|
99
|
+
alert: "Le média n'a pas été crée."
|
100
|
+
update:
|
101
|
+
notice: "Le média a été mis à jour avec succès."
|
102
|
+
alert: "Le média n'a pas été mis à jour."
|
103
|
+
|
104
|
+
theme_assets:
|
105
|
+
create:
|
106
|
+
notice: "Le fichier a été crée avec succès."
|
107
|
+
alert: "Le fichier n'a pas été crée."
|
108
|
+
update:
|
109
|
+
notice: "Le fichier a été mis à jour avec succès."
|
110
|
+
alert: "Le fichier n'a pas été mis à jour."
|
111
|
+
destroy:
|
112
|
+
notice: "Le fichier a été supprimé avec succès."
|
113
|
+
|
114
|
+
custom_fields:
|
115
|
+
update:
|
116
|
+
alert: "Champ non mis à jour."
|
data/config/routes.rb
CHANGED
@@ -49,6 +49,9 @@ Rails.application.routes.draw do |map|
|
|
49
49
|
resources :custom_fields, :path => 'custom/:parent/:slug/fields'
|
50
50
|
end
|
51
51
|
|
52
|
+
# sitemap
|
53
|
+
match '/sitemap.xml' => 'admin/sitemaps#show', :format => 'xml'
|
54
|
+
|
52
55
|
# magic urls
|
53
56
|
match '/' => 'admin/rendering#show'
|
54
57
|
match '*path' => 'admin/rendering#show'
|
@@ -0,0 +1,14 @@
|
|
1
|
+
module Locomotive
|
2
|
+
class CopyAssetsGenerator < Rails::Generators::Base
|
3
|
+
|
4
|
+
def self.source_root
|
5
|
+
@_locomotive_source_root ||= File.expand_path('../../../../../', __FILE__)
|
6
|
+
@_locomotive_source_root
|
7
|
+
end
|
8
|
+
|
9
|
+
def copy_public_files
|
10
|
+
directory 'public', 'public', :recursive => true
|
11
|
+
end
|
12
|
+
|
13
|
+
end
|
14
|
+
end
|
@@ -2,11 +2,24 @@ module Locomotive
|
|
2
2
|
class InstallGenerator < Rails::Generators::Base
|
3
3
|
|
4
4
|
def self.source_root
|
5
|
-
@_locomotive_source_root ||= File.expand_path(
|
5
|
+
@_locomotive_source_root ||= File.expand_path('../templates', __FILE__)
|
6
6
|
end
|
7
7
|
|
8
8
|
def copy_initializer
|
9
|
-
template
|
9
|
+
template 'locomotive.rb', 'config/initializers/locomotive.rb'
|
10
|
+
end
|
11
|
+
|
12
|
+
def seed_db
|
13
|
+
append_file 'db/seeds.rb', %{
|
14
|
+
# Uncomment the following lines if you want to create the first website / account
|
15
|
+
#account = Account.create! :name => 'Admin', :email => 'admin@example.com', :password => 'locomotive', :password_confirmation => 'locomotive'
|
16
|
+
#site = Site.new :name => 'Locomotive test website', :subdomain => 'test'
|
17
|
+
#site.memberships.build :account => account, :admin => true
|
18
|
+
#site.save!}
|
19
|
+
end
|
20
|
+
|
21
|
+
def show_readme
|
22
|
+
readme 'README'
|
10
23
|
end
|
11
24
|
|
12
25
|
end
|
@@ -0,0 +1,17 @@
|
|
1
|
+
===============================================================================
|
2
|
+
|
3
|
+
Locomotive initializer has been added to your application. Your db/seeds.rb file has also been updated.
|
4
|
+
|
5
|
+
1. Take a look at this to match your environment.
|
6
|
+
|
7
|
+
2. Uncomment added code in db/seeds.rb if necessary
|
8
|
+
|
9
|
+
Note: do not forget to run rake db:seed if you modify your db/seeds.rb file.
|
10
|
+
|
11
|
+
Once it is done, the next step is to install assets:
|
12
|
+
|
13
|
+
bundle exec rails g locomotive:copy_assets
|
14
|
+
|
15
|
+
Fire your application server and launch a browser !
|
16
|
+
|
17
|
+
===============================================================================
|