forked from refinery/refinerycms
-
Notifications
You must be signed in to change notification settings - Fork 1
/
refinerycms.gemspec
783 lines (782 loc) · 40.2 KB
/
refinerycms.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
Gem::Specification.new do |s|
s.name = %q{refinerycms}
s.version = %q{0.9.7.dev}
s.description = %q{A beautiful open source Ruby on Rails content manager for small business. Easy to extend, easy to use, lightweight and all wrapped up in a super slick UI.}
s.date = %q{2010-06-19}
s.summary = %q{A beautiful open source Ruby on Rails content manager for small business.}
s.email = %q{[email protected]}
s.homepage = %q{http://refinerycms.com}
s.authors = %w(Resolve\ Digital David\ Jones Philip\ Arndt)
s.require_paths = %w(lib)
s.executables = %w(refinery refinery-update-core)
s.files = [
'.gems',
'.gitignore',
'.yardopts',
'Gemfile',
'Rakefile',
'readme.md',
'license.md',
'VERSION',
'todo.md',
'public/.htaccess',
'app/controllers',
'app/controllers/admin',
'app/controllers/admin/base_controller.rb',
'app/controllers/application.rb',
'app/controllers/application_controller.rb',
'app/helpers',
'app/helpers/application_helper.rb',
'bin/refinery',
'bin/refinery-update-core',
'config/amazon_s3.yml.example',
'config/application.rb',
'config/boot.rb',
'config/cucumber.yml',
'config/database.yml.example',
'config/environment.rb',
'config/environments',
'config/environments/cucumber.rb',
'config/environments/development.rb',
'config/environments/production.rb',
'config/environments/test.rb',
'config/initializers',
'config/initializers/acts_as_indexed_config.rb',
'config/initializers/field_with_error_fix.rb',
'config/initializers/inflections.rb',
'config/initializers/mime_types.rb',
'config/preinitializer.rb',
'config/rackspace_cloudfiles.yml.example',
'config/routes.rb',
'config/settings.rb',
'db/migrate',
'db/migrate/20091109012126_add_missing_indexes.rb',
'db/migrate/20091130040711_add_down_for_maintenance_page.rb',
'db/migrate/20091207033335_add_superuser_to_users.rb',
'db/migrate/20100114092849_add_themes_table.rb',
'db/migrate/20100127004649_add_reset_code_to_users.rb',
'db/migrate/20100202034802_remove_custom_title_image_id_and_image_id_from_pages.rb',
'db/migrate/20100204011654_change_part_titles_to_titleized_version_for_new_format.rb',
'db/migrate/20100223211536_remove_themes_table.rb',
'db/migrate/20100305023036_change_users_columns_for_authlogic.rb',
'db/migrate/20100305023037_remove_unused_users_columns.rb',
'db/migrate/20100312155331_make_user_perishable_token_nullable.rb',
'db/migrate/20100312160327_make_user_persistence_token_nullable.rb',
'db/migrate/20100315203301_remove_state_from_users.rb',
'db/migrate/20100522020225_rename_permissions_for_resources_plugin_to_files.rb',
'db/migrate/20100525084518_remove_take_down_for_maintenance_page.rb',
'db/migrate/20100525110237_add_small_and_large_thumbnail_sizes.rb',
'db/migrate/20100530205942_update_link_url_on_pages_from_inquiries_new_to_contact.rb',
'db/migrate/20100608062447_add_scoping_to_refinery_settings.rb',
'db/schema.rb',
'db/seeds',
'db/seeds/inquiry_settings.rb',
'db/seeds/pages.rb',
'db/seeds/refinery_settings.rb',
'db/seeds.rb',
'features/refinery',
'features/refinery/manage_pages.feature',
'features/step_definitions',
'features/step_definitions/refinery',
'features/step_definitions/refinery/page_steps.rb',
'features/step_definitions/refinery/user_steps.rb',
'features/step_definitions/web_steps.rb',
'features/support',
'features/support/env.rb',
'features/support/negative_expectations_helper.rb',
'features/support/paths.rb',
'lib/gemspec.rb',
'lib/refinery',
'lib/refinery/tasks',
'lib/refinery/tasks/refinery.rake',
'lib/refinery/tasks/refinery.rb',
'lib/refinery_initializer.rb',
'lib/tasks',
'lib/tasks/cucumber.rake',
'public/404.html',
'public/422.html',
'public/500.html',
'public/favicon.ico',
'public/images',
'public/images/refinery',
'public/images/refinery/add.png',
'public/images/refinery/admin_bg.png',
'public/images/refinery/ajax-loader.gif',
'public/images/refinery/branch-end.gif',
'public/images/refinery/branch-start.gif',
'public/images/refinery/branch.gif',
'public/images/refinery/cross.png',
'public/images/refinery/dialogLoadingAnimation.gif',
'public/images/refinery/header_background.png',
'public/images/refinery/hover-gradient.jpg',
'public/images/refinery/icons',
'public/images/refinery/icons/accept.png',
'public/images/refinery/icons/add.png',
'public/images/refinery/icons/application_edit.png',
'public/images/refinery/icons/application_go.png',
'public/images/refinery/icons/arrow_left.png',
'public/images/refinery/icons/arrow_switch.png',
'public/images/refinery/icons/arrow_up.png',
'public/images/refinery/icons/cancel.png',
'public/images/refinery/icons/cog_add.png',
'public/images/refinery/icons/cog_edit.png',
'public/images/refinery/icons/cross.png',
'public/images/refinery/icons/delete.png',
'public/images/refinery/icons/edit.png',
'public/images/refinery/icons/email_edit.png',
'public/images/refinery/icons/email_go.png',
'public/images/refinery/icons/email_open.png',
'public/images/refinery/icons/eye.png',
'public/images/refinery/icons/image_add.png',
'public/images/refinery/icons/image_edit.png',
'public/images/refinery/icons/layout_add.png',
'public/images/refinery/icons/layout_edit.png',
'public/images/refinery/icons/page_add.png',
'public/images/refinery/icons/page_edit.png',
'public/images/refinery/icons/page_white_edit.png',
'public/images/refinery/icons/page_white_gear.png',
'public/images/refinery/icons/page_white_put.png',
'public/images/refinery/icons/star.png',
'public/images/refinery/icons/tick.png',
'public/images/refinery/icons/user_add.png',
'public/images/refinery/icons/user_comment.png',
'public/images/refinery/icons/user_edit.png',
'public/images/refinery/icons/zoom.png',
'public/images/refinery/logo-large.png',
'public/images/refinery/logo-medium.png',
'public/images/refinery/logo-site-bar.png',
'public/images/refinery/logo-small-medium.png',
'public/images/refinery/logo-small.png',
'public/images/refinery/logo-tiny.png',
'public/images/refinery/logo.png',
'public/images/refinery/nav-3-background.gif',
'public/images/refinery/nav_inactive_background.png',
'public/images/refinery/orange_button.png',
'public/images/refinery/page_bg.png',
'public/images/refinery/resolve_digital_footer_logo.png',
'public/images/refinery/text_field_background.png',
'public/images/refinery/tooltip-nib.png',
'public/images/wymeditor',
'public/images/wymeditor/skins',
'public/images/wymeditor/skins/refinery',
'public/images/wymeditor/skins/refinery/arrow_redo.png',
'public/images/wymeditor/skins/refinery/arrow_undo.png',
'public/images/wymeditor/skins/refinery/eye.png',
'public/images/wymeditor/skins/refinery/iframe',
'public/images/wymeditor/skins/refinery/iframe/lbl-blockquote.png',
'public/images/wymeditor/skins/refinery/iframe/lbl-h1.png',
'public/images/wymeditor/skins/refinery/iframe/lbl-h2.png',
'public/images/wymeditor/skins/refinery/iframe/lbl-h3.png',
'public/images/wymeditor/skins/refinery/iframe/lbl-h4.png',
'public/images/wymeditor/skins/refinery/iframe/lbl-h5.png',
'public/images/wymeditor/skins/refinery/iframe/lbl-h6.png',
'public/images/wymeditor/skins/refinery/iframe/lbl-p.png',
'public/images/wymeditor/skins/refinery/iframe/lbl-pre.png',
'public/images/wymeditor/skins/refinery/link_add.png',
'public/images/wymeditor/skins/refinery/link_break.png',
'public/images/wymeditor/skins/refinery/page_code.png',
'public/images/wymeditor/skins/refinery/page_paste.png',
'public/images/wymeditor/skins/refinery/photo_add.png',
'public/images/wymeditor/skins/refinery/right.png',
'public/images/wymeditor/skins/refinery/style.png',
'public/images/wymeditor/skins/refinery/table_add.png',
'public/images/wymeditor/skins/refinery/text_align_center.png',
'public/images/wymeditor/skins/refinery/text_align_justify.png',
'public/images/wymeditor/skins/refinery/text_align_left.png',
'public/images/wymeditor/skins/refinery/text_align_right.png',
'public/images/wymeditor/skins/refinery/text_bold.png',
'public/images/wymeditor/skins/refinery/text_heading_1.png',
'public/images/wymeditor/skins/refinery/text_heading_2.png',
'public/images/wymeditor/skins/refinery/text_heading_3.png',
'public/images/wymeditor/skins/refinery/text_heading_4.png',
'public/images/wymeditor/skins/refinery/text_heading_5.png',
'public/images/wymeditor/skins/refinery/text_heading_6.png',
'public/images/wymeditor/skins/refinery/text_indent.png',
'public/images/wymeditor/skins/refinery/text_indent_remove.png',
'public/images/wymeditor/skins/refinery/text_italic.png',
'public/images/wymeditor/skins/refinery/text_list_bullets.png',
'public/images/wymeditor/skins/refinery/text_list_numbers.png',
'public/images/wymeditor/skins/refinery/text_paragraph.png',
'public/images/wymeditor/skins/refinery/text_strikethrough.png',
'public/images/wymeditor/skins/refinery/text_subscript.png',
'public/images/wymeditor/skins/refinery/text_superscript.png',
'public/images/wymeditor/skins/refinery/text_underline.png',
'public/images/wymeditor/skins/wymeditor_icon.png',
'public/javascripts',
'public/javascripts/admin.js',
'public/javascripts/application.js',
'public/javascripts/jquery',
'public/javascripts/jquery/GPL-LICENSE.txt',
'public/javascripts/jquery/jquery.corner.js',
'public/javascripts/jquery/jquery.html5-placeholder-shim.js',
'public/javascripts/jquery/jquery.nestedsortables.js',
'public/javascripts/jquery/jquery.textTruncate.js',
'public/javascripts/jquery/jquery.timers.js',
'public/javascripts/jquery/MIT-LICENSE.txt',
'public/javascripts/jquery-min.js',
'public/javascripts/jquery-ui-custom-min.js',
'public/javascripts/jquery.js',
'public/javascripts/refinery',
'public/javascripts/refinery/admin.js',
'public/javascripts/refinery/boot_wym.js',
'public/javascripts/wymeditor',
'public/javascripts/wymeditor/jquery.refinery.wymeditor.js',
'public/javascripts/wymeditor/lang',
'public/javascripts/wymeditor/lang/ca.js',
'public/javascripts/wymeditor/lang/cs.js',
'public/javascripts/wymeditor/lang/de.js',
'public/javascripts/wymeditor/lang/en.js',
'public/javascripts/wymeditor/lang/es.js',
'public/javascripts/wymeditor/lang/fa.js',
'public/javascripts/wymeditor/lang/fr.js',
'public/javascripts/wymeditor/lang/he.js',
'public/javascripts/wymeditor/lang/hu.js',
'public/javascripts/wymeditor/lang/it.js',
'public/javascripts/wymeditor/lang/nb.js',
'public/javascripts/wymeditor/lang/nl.js',
'public/javascripts/wymeditor/lang/nn.js',
'public/javascripts/wymeditor/lang/pl.js',
'public/javascripts/wymeditor/lang/pt-br.js',
'public/javascripts/wymeditor/lang/pt.js',
'public/javascripts/wymeditor/lang/ru.js',
'public/javascripts/wymeditor/lang/sv.js',
'public/javascripts/wymeditor/lang/tr.js',
'public/javascripts/wymeditor/lang/zh_cn.js',
'public/javascripts/wymeditor/skins',
'public/javascripts/wymeditor/skins/refinery',
'public/javascripts/wymeditor/skins/refinery/skin.js',
'public/robots.txt',
'public/stylesheets',
'public/stylesheets/application.css',
'public/stylesheets/formatting.css',
'public/stylesheets/home.css',
'public/stylesheets/ie6.css',
'public/stylesheets/ie7.css',
'public/stylesheets/refinery',
'public/stylesheets/refinery/application.css',
'public/stylesheets/refinery/formatting.css',
'public/stylesheets/refinery/home.css',
'public/stylesheets/refinery/ie.css',
'public/stylesheets/refinery/refinery.css',
'public/stylesheets/refinery/site_bar.css',
'public/stylesheets/refinery/theme.css',
'public/stylesheets/refinery/tooltips.css',
'public/stylesheets/refinery/ui.css',
'public/stylesheets/theme.css',
'public/stylesheets/wymeditor',
'public/stylesheets/wymeditor/skins',
'public/stylesheets/wymeditor/skins/refinery',
'public/stylesheets/wymeditor/skins/refinery/skin.css',
'public/stylesheets/wymeditor/skins/refinery/wymiframe.css',
'public/wymeditor',
'public/wymeditor/GPL-license.txt',
'public/wymeditor/MIT-license.txt',
'public/wymeditor/README',
'script/about',
'script/console',
'script/cucumber',
'script/dbconsole',
'script/destroy',
'script/generate',
'script/performance',
'script/performance/benchmarker',
'script/performance/profiler',
'script/performance/request',
'script/plugin',
'script/process',
'script/process/inspector',
'script/process/reaper',
'script/process/spawner',
'script/runner',
'script/server',
'test/files',
'test/files/car-wallpapers19.jpg',
'test/files/teng.pdf',
'test/files/The world!.gif',
'test/fixtures',
'test/fixtures/images.yml',
'test/fixtures/inquiries.yml',
'test/fixtures/page_parts.yml',
'test/fixtures/pages.yml',
'test/fixtures/refinery_settings.yml',
'test/fixtures/resources.yml',
'test/fixtures/user_plugins.yml',
'test/fixtures/users.yml',
'test/functional',
'test/functional/dashboard_controller_test.rb',
'test/functional/images_controller_test.rb',
'test/performance',
'test/performance/browsing_test.rb',
'test/test_helper.rb',
'test/unit',
'test/unit/image_test.rb',
'test/unit/inquiry_test.rb',
'test/unit/page_part_test.rb',
'test/unit/page_test.rb',
'test/unit/refinery_setting_test.rb',
'test/unit/resource_test.rb',
'themes/demolicious',
'themes/demolicious/images',
'themes/demolicious/images/footer_background.png',
'themes/demolicious/images/header_background.png',
'themes/demolicious/LICENSE',
'themes/demolicious/README',
'themes/demolicious/stylesheets',
'themes/demolicious/stylesheets/application.css',
'themes/demolicious/stylesheets/formatting.css',
'themes/demolicious/stylesheets/home.css',
'themes/demolicious/stylesheets/ie6.css',
'themes/demolicious/stylesheets/ie7.css',
'themes/demolicious/views',
'themes/demolicious/views/layouts',
'themes/demolicious/views/layouts/application.html.erb',
'themes/demolicious/views/pages',
'themes/demolicious/views/pages/home.html.erb',
'themes/demolicious/views/pages/show.html.erb',
'themes/hemingway',
'themes/hemingway/images',
'themes/hemingway/images/archives.gif',
'themes/hemingway/images/footer_black.gif',
'themes/hemingway/images/kyle-header.jpg',
'themes/hemingway/images/readon_black.gif',
'themes/hemingway/images/search.gif',
'themes/hemingway/images/spinner.gif',
'themes/hemingway/images/trackback_pingback.gif',
'themes/hemingway/LICENSE',
'themes/hemingway/README',
'themes/hemingway/stylesheets',
'themes/hemingway/stylesheets/application.css',
'themes/hemingway/stylesheets/formatting.css',
'themes/hemingway/stylesheets/home.css',
'themes/hemingway/views',
'themes/hemingway/views/layouts',
'themes/hemingway/views/layouts/application.html.erb',
'vendor/plugins',
'vendor/plugins/acts_as_tree',
'vendor/plugins/acts_as_tree/init.rb',
'vendor/plugins/acts_as_tree/lib',
'vendor/plugins/acts_as_tree/lib/active_record',
'vendor/plugins/acts_as_tree/lib/active_record/acts',
'vendor/plugins/acts_as_tree/lib/active_record/acts/tree.rb',
'vendor/plugins/acts_as_tree/Rakefile',
'vendor/plugins/acts_as_tree/README',
'vendor/plugins/acts_as_tree/test',
'vendor/plugins/acts_as_tree/test/abstract_unit.rb',
'vendor/plugins/acts_as_tree/test/acts_as_tree_test.rb',
'vendor/plugins/acts_as_tree/test/database.yml',
'vendor/plugins/acts_as_tree/test/fixtures',
'vendor/plugins/acts_as_tree/test/fixtures/mixin.rb',
'vendor/plugins/acts_as_tree/test/fixtures/mixins.yml',
'vendor/plugins/acts_as_tree/test/schema.rb',
'vendor/plugins/attachment_fu',
'vendor/plugins/attachment_fu/amazon_s3.yml.tpl',
'vendor/plugins/attachment_fu/CHANGELOG',
'vendor/plugins/attachment_fu/init.rb',
'vendor/plugins/attachment_fu/install.rb',
'vendor/plugins/attachment_fu/lib',
'vendor/plugins/attachment_fu/lib/geometry.rb',
'vendor/plugins/attachment_fu/lib/technoweenie',
'vendor/plugins/attachment_fu/lib/technoweenie/attachment_fu',
'vendor/plugins/attachment_fu/lib/technoweenie/attachment_fu/backends',
'vendor/plugins/attachment_fu/lib/technoweenie/attachment_fu/backends/cloud_file_backend.rb',
'vendor/plugins/attachment_fu/lib/technoweenie/attachment_fu/backends/db_file_backend.rb',
'vendor/plugins/attachment_fu/lib/technoweenie/attachment_fu/backends/file_system_backend.rb',
'vendor/plugins/attachment_fu/lib/technoweenie/attachment_fu/backends/s3_backend.rb',
'vendor/plugins/attachment_fu/lib/technoweenie/attachment_fu/processors',
'vendor/plugins/attachment_fu/lib/technoweenie/attachment_fu/processors/core_image_processor.rb',
'vendor/plugins/attachment_fu/lib/technoweenie/attachment_fu/processors/gd2_processor.rb',
'vendor/plugins/attachment_fu/lib/technoweenie/attachment_fu/processors/image_science_processor.rb',
'vendor/plugins/attachment_fu/lib/technoweenie/attachment_fu/processors/mini_magick_processor.rb',
'vendor/plugins/attachment_fu/lib/technoweenie/attachment_fu/processors/rmagick_processor.rb',
'vendor/plugins/attachment_fu/lib/technoweenie/attachment_fu.rb',
'vendor/plugins/attachment_fu/LICENSE',
'vendor/plugins/attachment_fu/rackspace_cloudfiles.yml.tpl',
'vendor/plugins/attachment_fu/Rakefile',
'vendor/plugins/attachment_fu/README',
'vendor/plugins/attachment_fu/test',
'vendor/plugins/attachment_fu/test/backends',
'vendor/plugins/attachment_fu/test/backends/db_file_test.rb',
'vendor/plugins/attachment_fu/test/backends/file_system_test.rb',
'vendor/plugins/attachment_fu/test/backends/remote',
'vendor/plugins/attachment_fu/test/backends/remote/cloudfiles_test.rb',
'vendor/plugins/attachment_fu/test/backends/remote/s3_test.rb',
'vendor/plugins/attachment_fu/test/base_attachment_tests.rb',
'vendor/plugins/attachment_fu/test/basic_test.rb',
'vendor/plugins/attachment_fu/test/database.yml',
'vendor/plugins/attachment_fu/test/extra_attachment_test.rb',
'vendor/plugins/attachment_fu/test/fixtures',
'vendor/plugins/attachment_fu/test/fixtures/attachment.rb',
'vendor/plugins/attachment_fu/test/fixtures/files',
'vendor/plugins/attachment_fu/test/fixtures/files/fake',
'vendor/plugins/attachment_fu/test/fixtures/files/fake/rails.png',
'vendor/plugins/attachment_fu/test/fixtures/files/foo.txt',
'vendor/plugins/attachment_fu/test/fixtures/files/rails.png',
'vendor/plugins/attachment_fu/test/geometry_test.rb',
'vendor/plugins/attachment_fu/test/processors',
'vendor/plugins/attachment_fu/test/processors/core_image_test.rb',
'vendor/plugins/attachment_fu/test/processors/gd2_test.rb',
'vendor/plugins/attachment_fu/test/processors/image_science_test.rb',
'vendor/plugins/attachment_fu/test/processors/mini_magick_test.rb',
'vendor/plugins/attachment_fu/test/processors/rmagick_test.rb',
'vendor/plugins/attachment_fu/test/schema.rb',
'vendor/plugins/attachment_fu/test/test_helper.rb',
'vendor/plugins/attachment_fu/test/validation_test.rb',
'vendor/plugins/attachment_fu/vendor',
'vendor/plugins/attachment_fu/vendor/red_artisan',
'vendor/plugins/attachment_fu/vendor/red_artisan/core_image',
'vendor/plugins/attachment_fu/vendor/red_artisan/core_image/filters',
'vendor/plugins/attachment_fu/vendor/red_artisan/core_image/filters/color.rb',
'vendor/plugins/attachment_fu/vendor/red_artisan/core_image/filters/effects.rb',
'vendor/plugins/attachment_fu/vendor/red_artisan/core_image/filters/perspective.rb',
'vendor/plugins/attachment_fu/vendor/red_artisan/core_image/filters/quality.rb',
'vendor/plugins/attachment_fu/vendor/red_artisan/core_image/filters/scale.rb',
'vendor/plugins/attachment_fu/vendor/red_artisan/core_image/filters/watermark.rb',
'vendor/plugins/attachment_fu/vendor/red_artisan/core_image/processor.rb',
'vendor/plugins/authentication',
'vendor/plugins/authentication/app',
'vendor/plugins/authentication/app/controllers',
'vendor/plugins/authentication/app/controllers/admin',
'vendor/plugins/authentication/app/controllers/admin/users_controller.rb',
'vendor/plugins/authentication/app/controllers/sessions_controller.rb',
'vendor/plugins/authentication/app/controllers/users_controller.rb',
'vendor/plugins/authentication/app/helpers',
'vendor/plugins/authentication/app/helpers/sessions_helper.rb',
'vendor/plugins/authentication/app/helpers/users_helper.rb',
'vendor/plugins/authentication/app/models',
'vendor/plugins/authentication/app/models/user.rb',
'vendor/plugins/authentication/app/models/user_mailer.rb',
'vendor/plugins/authentication/app/models/user_plugin.rb',
'vendor/plugins/authentication/app/models/user_session.rb',
'vendor/plugins/authentication/app/views',
'vendor/plugins/authentication/app/views/admin',
'vendor/plugins/authentication/app/views/admin/users',
'vendor/plugins/authentication/app/views/admin/users/_form.html.erb',
'vendor/plugins/authentication/app/views/admin/users/_user.html.erb',
'vendor/plugins/authentication/app/views/admin/users/edit.html.erb',
'vendor/plugins/authentication/app/views/admin/users/index.html.erb',
'vendor/plugins/authentication/app/views/admin/users/new.html.erb',
'vendor/plugins/authentication/app/views/sessions',
'vendor/plugins/authentication/app/views/sessions/new.html.erb',
'vendor/plugins/authentication/app/views/user_mailer',
'vendor/plugins/authentication/app/views/user_mailer/reset_notification.html.erb',
'vendor/plugins/authentication/app/views/users',
'vendor/plugins/authentication/app/views/users/forgot.html.erb',
'vendor/plugins/authentication/app/views/users/new.html.erb',
'vendor/plugins/authentication/app/views/users/reset.html.erb',
'vendor/plugins/authentication/authentication.md',
'vendor/plugins/authentication/config',
'vendor/plugins/authentication/config/routes.rb',
'vendor/plugins/authentication/lib',
'vendor/plugins/authentication/lib/authenticated_system.rb',
'vendor/plugins/authentication/lib/authenticated_test_helper.rb',
'vendor/plugins/authentication/rails',
'vendor/plugins/authentication/rails/init.rb',
'vendor/plugins/authentication/Rakefile',
'vendor/plugins/authentication/README',
'vendor/plugins/authentication/test',
'vendor/plugins/authentication/test/functional',
'vendor/plugins/authentication/test/functional/admin',
'vendor/plugins/authentication/test/functional/admin/base_controller_test.rb',
'vendor/plugins/authentication/test/functional/admin/dashboard_controller_test.rb',
'vendor/plugins/authentication/test/functional/admin/pages_controller_test.rb',
'vendor/plugins/authentication/test/test_helper.rb',
'vendor/plugins/authentication/test/unit',
'vendor/plugins/authentication/test/unit/user_mailer_test.rb',
'vendor/plugins/dashboard',
'vendor/plugins/dashboard/app',
'vendor/plugins/dashboard/app/controllers',
'vendor/plugins/dashboard/app/controllers/admin',
'vendor/plugins/dashboard/app/controllers/admin/dashboard_controller.rb',
'vendor/plugins/dashboard/app/helpers',
'vendor/plugins/dashboard/app/helpers/admin',
'vendor/plugins/dashboard/app/helpers/admin/dashboard_helper.rb',
'vendor/plugins/dashboard/app/views',
'vendor/plugins/dashboard/app/views/admin',
'vendor/plugins/dashboard/app/views/admin/dashboard',
'vendor/plugins/dashboard/app/views/admin/dashboard/_recent_activity.html.erb',
'vendor/plugins/dashboard/app/views/admin/dashboard/_recent_inquiries.html.erb',
'vendor/plugins/dashboard/app/views/admin/dashboard/index.html.erb',
'vendor/plugins/dashboard/config',
'vendor/plugins/dashboard/config/routes.rb',
'vendor/plugins/dashboard/dashboard.md',
'vendor/plugins/dashboard/rails',
'vendor/plugins/dashboard/rails/init.rb',
'vendor/plugins/images',
'vendor/plugins/images/app',
'vendor/plugins/images/app/controllers',
'vendor/plugins/images/app/controllers/admin',
'vendor/plugins/images/app/controllers/admin/images_controller.rb',
'vendor/plugins/images/app/helpers',
'vendor/plugins/images/app/helpers/admin',
'vendor/plugins/images/app/helpers/admin/images_helper.rb',
'vendor/plugins/images/app/models',
'vendor/plugins/images/app/models/image.rb',
'vendor/plugins/images/app/views',
'vendor/plugins/images/app/views/admin',
'vendor/plugins/images/app/views/admin/images',
'vendor/plugins/images/app/views/admin/images/_existing_image.erb',
'vendor/plugins/images/app/views/admin/images/_form.html.erb',
'vendor/plugins/images/app/views/admin/images/_grid_view.html.erb',
'vendor/plugins/images/app/views/admin/images/_list_view.html.erb',
'vendor/plugins/images/app/views/admin/images/_list_view_image.html.erb',
'vendor/plugins/images/app/views/admin/images/edit.html.erb',
'vendor/plugins/images/app/views/admin/images/index.html.erb',
'vendor/plugins/images/app/views/admin/images/insert.html.erb',
'vendor/plugins/images/app/views/admin/images/new.html.erb',
'vendor/plugins/images/config',
'vendor/plugins/images/config/routes.rb',
'vendor/plugins/images/images.md',
'vendor/plugins/images/lib',
'vendor/plugins/images/lib/tasks',
'vendor/plugins/images/lib/tasks/images.rake',
'vendor/plugins/images/rails',
'vendor/plugins/images/rails/init.rb',
'vendor/plugins/inquiries',
'vendor/plugins/inquiries/app',
'vendor/plugins/inquiries/app/controllers',
'vendor/plugins/inquiries/app/controllers/admin',
'vendor/plugins/inquiries/app/controllers/admin/inquiries_controller.rb',
'vendor/plugins/inquiries/app/controllers/admin/inquiry_settings_controller.rb',
'vendor/plugins/inquiries/app/controllers/inquiries_controller.rb',
'vendor/plugins/inquiries/app/helpers',
'vendor/plugins/inquiries/app/helpers/inquiries_helper.rb',
'vendor/plugins/inquiries/app/models',
'vendor/plugins/inquiries/app/models/inquiry.rb',
'vendor/plugins/inquiries/app/models/inquiry_mailer.rb',
'vendor/plugins/inquiries/app/models/inquiry_setting.rb',
'vendor/plugins/inquiries/app/views',
'vendor/plugins/inquiries/app/views/admin',
'vendor/plugins/inquiries/app/views/admin/inquiries',
'vendor/plugins/inquiries/app/views/admin/inquiries/_inquiry.html.erb',
'vendor/plugins/inquiries/app/views/admin/inquiries/index.html.erb',
'vendor/plugins/inquiries/app/views/admin/inquiries/show.html.erb',
'vendor/plugins/inquiries/app/views/admin/inquiry_settings',
'vendor/plugins/inquiries/app/views/admin/inquiry_settings/_confirmation_email_form.html.erb',
'vendor/plugins/inquiries/app/views/admin/inquiry_settings/_notification_recipients_form.html.erb',
'vendor/plugins/inquiries/app/views/admin/inquiry_settings/edit.html.erb',
'vendor/plugins/inquiries/app/views/admin/inquiry_settings/index.html.erb',
'vendor/plugins/inquiries/app/views/inquiries',
'vendor/plugins/inquiries/app/views/inquiries/new.html.erb',
'vendor/plugins/inquiries/app/views/inquiries/thank_you.html.erb',
'vendor/plugins/inquiries/app/views/inquiry_mailer',
'vendor/plugins/inquiries/app/views/inquiry_mailer/confirmation.html.erb',
'vendor/plugins/inquiries/app/views/inquiry_mailer/notification.html.erb',
'vendor/plugins/inquiries/config',
'vendor/plugins/inquiries/config/routes.rb',
'vendor/plugins/inquiries/inquiries.md',
'vendor/plugins/inquiries/rails',
'vendor/plugins/inquiries/rails/init.rb',
'vendor/plugins/pages',
'vendor/plugins/pages/app',
'vendor/plugins/pages/app/controllers',
'vendor/plugins/pages/app/controllers/admin',
'vendor/plugins/pages/app/controllers/admin/page_dialogs_controller.rb',
'vendor/plugins/pages/app/controllers/admin/page_parts_controller.rb',
'vendor/plugins/pages/app/controllers/admin/pages_controller.rb',
'vendor/plugins/pages/app/controllers/pages_controller.rb',
'vendor/plugins/pages/app/helpers',
'vendor/plugins/pages/app/helpers/pages_helper.rb',
'vendor/plugins/pages/app/models',
'vendor/plugins/pages/app/models/page.rb',
'vendor/plugins/pages/app/models/page_part.rb',
'vendor/plugins/pages/app/presenters',
'vendor/plugins/pages/app/presenters/page_presenter.rb',
'vendor/plugins/pages/app/views',
'vendor/plugins/pages/app/views/admin',
'vendor/plugins/pages/app/views/admin/page_dialogs',
'vendor/plugins/pages/app/views/admin/page_dialogs/_page_link.html.erb',
'vendor/plugins/pages/app/views/admin/page_dialogs/link_to.html.erb',
'vendor/plugins/pages/app/views/admin/pages',
'vendor/plugins/pages/app/views/admin/pages/_form.html.erb',
'vendor/plugins/pages/app/views/admin/pages/_form_advanced_options.html.erb',
'vendor/plugins/pages/app/views/admin/pages/_form_advanced_options_seo.html.erb',
'vendor/plugins/pages/app/views/admin/pages/_form_new_page_parts.html.erb',
'vendor/plugins/pages/app/views/admin/pages/_form_page_parts.html.erb',
'vendor/plugins/pages/app/views/admin/pages/_page.html.erb',
'vendor/plugins/pages/app/views/admin/pages/_page_part_field.html.erb',
'vendor/plugins/pages/app/views/admin/pages/_sortable_list.html.erb',
'vendor/plugins/pages/app/views/admin/pages/edit.html.erb',
'vendor/plugins/pages/app/views/admin/pages/index.html.erb',
'vendor/plugins/pages/app/views/admin/pages/new.html.erb',
'vendor/plugins/pages/app/views/pages',
'vendor/plugins/pages/app/views/pages/home.html.erb',
'vendor/plugins/pages/app/views/pages/show.html.erb',
'vendor/plugins/pages/config',
'vendor/plugins/pages/config/routes.rb',
'vendor/plugins/pages/pages.md',
'vendor/plugins/pages/rails',
'vendor/plugins/pages/rails/init.rb',
'vendor/plugins/refinery',
'vendor/plugins/refinery/app',
'vendor/plugins/refinery/app/controllers',
'vendor/plugins/refinery/app/controllers/admin',
'vendor/plugins/refinery/app/controllers/admin/refinery_core_controller.rb',
'vendor/plugins/refinery/app/controllers/refinery',
'vendor/plugins/refinery/app/controllers/refinery/fast_controller.rb',
'vendor/plugins/refinery/app/views',
'vendor/plugins/refinery/app/views/admin',
'vendor/plugins/refinery/app/views/admin/_head.html.erb',
'vendor/plugins/refinery/app/views/admin/_menu.html.erb',
'vendor/plugins/refinery/app/views/layouts',
'vendor/plugins/refinery/app/views/layouts/admin.html.erb',
'vendor/plugins/refinery/app/views/layouts/application.html.erb',
'vendor/plugins/refinery/app/views/shared',
'vendor/plugins/refinery/app/views/shared/_content_page.html.erb',
'vendor/plugins/refinery/app/views/shared/_draft_page_message.html.erb',
'vendor/plugins/refinery/app/views/shared/_footer.html.erb',
'vendor/plugins/refinery/app/views/shared/_google_analytics.html.erb',
'vendor/plugins/refinery/app/views/shared/_head.html.erb',
'vendor/plugins/refinery/app/views/shared/_header.html.erb',
'vendor/plugins/refinery/app/views/shared/_ie6check.html.erb',
'vendor/plugins/refinery/app/views/shared/_menu.html.erb',
'vendor/plugins/refinery/app/views/shared/_menu_branch.html.erb',
'vendor/plugins/refinery/app/views/shared/_message.html.erb',
'vendor/plugins/refinery/app/views/shared/_site_bar.html.erb',
'vendor/plugins/refinery/app/views/shared/admin',
'vendor/plugins/refinery/app/views/shared/admin/_continue_editing.html.erb',
'vendor/plugins/refinery/app/views/shared/admin/_error_messages_for.html.erb',
'vendor/plugins/refinery/app/views/shared/admin/_form_actions.html.erb',
'vendor/plugins/refinery/app/views/shared/admin/_head_before_javascript_libraries.html.erb',
'vendor/plugins/refinery/app/views/shared/admin/_image_picker.html.erb',
'vendor/plugins/refinery/app/views/shared/admin/_make_sortable.html.erb',
'vendor/plugins/refinery/app/views/shared/admin/_resource_picker.html.erb',
'vendor/plugins/refinery/app/views/shared/admin/_search.html.erb',
'vendor/plugins/refinery/app/views/shared/admin/_sortable_list.html.erb',
'vendor/plugins/refinery/app/views/welcome.html.erb',
'vendor/plugins/refinery/app/views/wymiframe.html.erb',
'vendor/plugins/refinery/config',
'vendor/plugins/refinery/config/routes.rb',
'vendor/plugins/refinery/crud.md',
'vendor/plugins/refinery/lib',
'vendor/plugins/refinery/lib/crud.rb',
'vendor/plugins/refinery/lib/generators',
'vendor/plugins/refinery/lib/generators/refinery',
'vendor/plugins/refinery/lib/generators/refinery/install.rb',
'vendor/plugins/refinery/lib/generators/refinery/Rakefile',
'vendor/plugins/refinery/lib/generators/refinery/README',
'vendor/plugins/refinery/lib/generators/refinery/refinery_generator.rb',
'vendor/plugins/refinery/lib/generators/refinery/templates',
'vendor/plugins/refinery/lib/generators/refinery/templates/config',
'vendor/plugins/refinery/lib/generators/refinery/templates/config/routes.rb',
'vendor/plugins/refinery/lib/generators/refinery/templates/controller.rb',
'vendor/plugins/refinery/lib/generators/refinery/templates/MIGRATE',
'vendor/plugins/refinery/lib/generators/refinery/templates/migration.rb',
'vendor/plugins/refinery/lib/generators/refinery/templates/model.rb',
'vendor/plugins/refinery/lib/generators/refinery/templates/public_controller.rb',
'vendor/plugins/refinery/lib/generators/refinery/templates/rails',
'vendor/plugins/refinery/lib/generators/refinery/templates/rails/init.rb',
'vendor/plugins/refinery/lib/generators/refinery/templates/seed.rb',
'vendor/plugins/refinery/lib/generators/refinery/templates/views',
'vendor/plugins/refinery/lib/generators/refinery/templates/views/admin',
'vendor/plugins/refinery/lib/generators/refinery/templates/views/admin/_form.html.erb',
'vendor/plugins/refinery/lib/generators/refinery/templates/views/admin/_singular_name.html.erb',
'vendor/plugins/refinery/lib/generators/refinery/templates/views/admin/_sortable_list.html.erb',
'vendor/plugins/refinery/lib/generators/refinery/templates/views/admin/edit.html.erb',
'vendor/plugins/refinery/lib/generators/refinery/templates/views/admin/index.html.erb',
'vendor/plugins/refinery/lib/generators/refinery/templates/views/admin/new.html.erb',
'vendor/plugins/refinery/lib/generators/refinery/templates/views/index.html.erb',
'vendor/plugins/refinery/lib/generators/refinery/templates/views/show.html.erb',
'vendor/plugins/refinery/lib/generators/refinery/USAGE',
'vendor/plugins/refinery/lib/refinery',
'vendor/plugins/refinery/lib/refinery/activity.rb',
'vendor/plugins/refinery/lib/refinery/admin_base_controller.rb',
'vendor/plugins/refinery/lib/refinery/application_controller.rb',
'vendor/plugins/refinery/lib/refinery/application_helper.rb',
'vendor/plugins/refinery/lib/refinery/attachment_fu_patch.rb',
'vendor/plugins/refinery/lib/refinery/base_presenter.rb',
'vendor/plugins/refinery/lib/refinery/deprecations.rb',
'vendor/plugins/refinery/lib/refinery/form_helpers.rb',
'vendor/plugins/refinery/lib/refinery/html_truncation_helper.rb',
'vendor/plugins/refinery/lib/refinery/initializer.rb',
'vendor/plugins/refinery/lib/refinery/link_renderer.rb',
'vendor/plugins/refinery/lib/refinery/plugin.rb',
'vendor/plugins/refinery/lib/refinery/plugins.rb',
'vendor/plugins/refinery/lib/refinery.rb',
'vendor/plugins/refinery/lib/tasks',
'vendor/plugins/refinery/lib/tasks/doc.rake',
'vendor/plugins/refinery/lib/tasks/refinery.rake',
'vendor/plugins/refinery/lib/tasks/yard.rake',
'vendor/plugins/refinery/plugins.md',
'vendor/plugins/refinery/rails',
'vendor/plugins/refinery/rails/init.rb',
'vendor/plugins/refinery_dialogs',
'vendor/plugins/refinery_dialogs/app',
'vendor/plugins/refinery_dialogs/app/controllers',
'vendor/plugins/refinery_dialogs/app/controllers/admin',
'vendor/plugins/refinery_dialogs/app/controllers/admin/dialogs_controller.rb',
'vendor/plugins/refinery_dialogs/app/views',
'vendor/plugins/refinery_dialogs/app/views/admin',
'vendor/plugins/refinery_dialogs/app/views/admin/dialogs',
'vendor/plugins/refinery_dialogs/app/views/admin/dialogs/show.html.erb',
'vendor/plugins/refinery_dialogs/app/views/layouts',
'vendor/plugins/refinery_dialogs/app/views/layouts/admin_dialog.html.erb',
'vendor/plugins/refinery_dialogs/config',
'vendor/plugins/refinery_dialogs/config/routes.rb',
'vendor/plugins/refinery_dialogs/rails',
'vendor/plugins/refinery_dialogs/rails/init.rb',
'vendor/plugins/refinery_settings',
'vendor/plugins/refinery_settings/app',
'vendor/plugins/refinery_settings/app/controllers',
'vendor/plugins/refinery_settings/app/controllers/admin',
'vendor/plugins/refinery_settings/app/controllers/admin/refinery_settings_controller.rb',
'vendor/plugins/refinery_settings/app/models',
'vendor/plugins/refinery_settings/app/models/refinery_setting.rb',
'vendor/plugins/refinery_settings/app/views',
'vendor/plugins/refinery_settings/app/views/admin',
'vendor/plugins/refinery_settings/app/views/admin/refinery_settings',
'vendor/plugins/refinery_settings/app/views/admin/refinery_settings/_form.html.erb',
'vendor/plugins/refinery_settings/app/views/admin/refinery_settings/_refinery_setting.html.erb',
'vendor/plugins/refinery_settings/app/views/admin/refinery_settings/edit.html.erb',
'vendor/plugins/refinery_settings/app/views/admin/refinery_settings/index.html.erb',
'vendor/plugins/refinery_settings/app/views/admin/refinery_settings/new.html.erb',
'vendor/plugins/refinery_settings/config',
'vendor/plugins/refinery_settings/config/routes.rb',
'vendor/plugins/refinery_settings/rails',
'vendor/plugins/refinery_settings/rails/init.rb',
'vendor/plugins/refinery_settings/settings.md',
'vendor/plugins/resources',
'vendor/plugins/resources/app',
'vendor/plugins/resources/app/controllers',
'vendor/plugins/resources/app/controllers/admin',
'vendor/plugins/resources/app/controllers/admin/resources_controller.rb',
'vendor/plugins/resources/app/models',
'vendor/plugins/resources/app/models/resource.rb',
'vendor/plugins/resources/app/views',
'vendor/plugins/resources/app/views/admin',
'vendor/plugins/resources/app/views/admin/resources',
'vendor/plugins/resources/app/views/admin/resources/_existing_resource.html.erb',
'vendor/plugins/resources/app/views/admin/resources/_form.html.erb',
'vendor/plugins/resources/app/views/admin/resources/_resource.html.erb',
'vendor/plugins/resources/app/views/admin/resources/edit.html.erb',
'vendor/plugins/resources/app/views/admin/resources/index.html.erb',
'vendor/plugins/resources/app/views/admin/resources/insert.html.erb',
'vendor/plugins/resources/app/views/admin/resources/new.html.erb',
'vendor/plugins/resources/config',
'vendor/plugins/resources/config/routes.rb',
'vendor/plugins/resources/rails',
'vendor/plugins/resources/rails/init.rb',
'vendor/plugins/resources/resources.md',
'vendor/plugins/themes',
'vendor/plugins/themes/app',
'vendor/plugins/themes/app/helpers',
'vendor/plugins/themes/app/helpers/themes_helper.rb',
'vendor/plugins/themes/lib',
'vendor/plugins/themes/lib/theme.rb',
'vendor/plugins/themes/lib/theme_server.rb',
'vendor/plugins/themes/rails',
'vendor/plugins/themes/rails/init.rb',
'vendor/plugins/themes/themes.md'
]
s.test_files = [
'test/functional/dashboard_controller_test.rb',
'test/functional/images_controller_test.rb',
'test/performance/browsing_test.rb',
'test/test_helper.rb',
'test/unit/image_test.rb',
'test/unit/inquiry_test.rb',
'test/unit/page_part_test.rb',
'test/unit/page_test.rb',
'test/unit/refinery_setting_test.rb',
'test/unit/resource_test.rb'
]
end