rails_admin_featured_content 1.0.3 → 1.0.4

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f2be80d5e00f63e2d5d457b9abe58bc1b873b423
4
- data.tar.gz: 693c9c0d737be40254ce57be23d5ae7e6c6f1fca
3
+ metadata.gz: ca1e12df658f1365dfa246bcbd4308131a2b3f34
4
+ data.tar.gz: e449cff9b8f992281b6a1ca9b0185c59c9210124
5
5
  SHA512:
6
- metadata.gz: df07ac02eeec2398678a69ea7f48b91e97724e629c55595a8792abce2fe917d91311f34dd567ff92370b0ee2651f49e79eb5c885d5765d7bb9ce58ee779e7808
7
- data.tar.gz: d5554e31feedf50b2eca3910e6f336f46e1de013bdd27c6215face2b932091c94ede79a9514cf7c450bfee2ceab766ed5c143cef6703c2418fb13f411b678ebd
6
+ metadata.gz: d11d30bcedcca16bab0aead68fbde0f81c024b58224b88d9304a0727b341cf6c7cc04bbcd5410f34e20e4b199a437e5abfb5424ea80e3a961172262b3fce14bb
7
+ data.tar.gz: 52d253d464feebb75208a5218fc84b06c1628d7466e9376911b54c386348bd519e048b8df9323828c5554816a66a36a8959de6bc84505e08aca83e7810136d21
data/README.md CHANGED
@@ -1,17 +1,22 @@
1
1
  # RailsAdminFeaturedContent
2
2
 
3
- ![Work in progress](http://messages.hellobits.com/warning.svg?message=Work%20in%20progress)
3
+ [![Gem Version](https://badge.fury.io/rb/rails_admin_content_builder.svg)](https://badge.fury.io/rb/rails_admin_content_builder)
4
4
 
5
5
  Easy way for create featured contents using rails_admin
6
6
 
7
+ ## Importante
8
+
9
+ First make sure that the gem [rails_admin_content_builder](https://github.com/luizpicolo/rails_admin_content_builder) is installed and working properly
10
+
7
11
  ## Installation
8
12
 
13
+ **Test with rails < 5 and TurboLink < 5**
14
+
9
15
  Add this line to your application's Gemfile:
10
16
  This is a complement to the gem rails_admin_content_builder, only works with dependencies lists in requirements and not alone
11
17
 
12
18
  ```ruby
13
- gem 'rails_admin'
14
- gem 'rails_admin_content_builder'
19
+ gem 'owlcarousel-rails' # For slides
15
20
  gem 'rails_admin_featured_content'
16
21
  ```
17
22
 
@@ -21,13 +26,43 @@ And then execute:
21
26
 
22
27
  Run the generator and migrations
23
28
 
24
- rails g rails_admin_content_builder
29
+ rails g rails_admin_featured_content
25
30
  rake db:migrate
26
31
 
27
- Add styles in app/assets/application.scss
32
+ Add styles in app/assets/stylesheets/application.scss
28
33
 
29
34
  ```ruby
30
35
  *= require rails_admin_featured_content
36
+ *= require owl.carousel
37
+ *= require owl.theme
38
+ ```
39
+
40
+ Add Javascript in app/assets/javascripts/application.js
41
+
42
+ ```ruby
43
+ //= require owl.carousel
44
+ ```
45
+
46
+ ```javascript
47
+ $(document).ready(function() {
48
+ $(".fc-slide").owlCarousel({
49
+ autoPlay: 7000,
50
+ singleItem: true,
51
+ stopOnHover: true,
52
+ slideSpeed: 500,
53
+ paginationSpeed: 500,
54
+ rewindSpeed: 1000,
55
+ navigation: true,
56
+ navigationText: ['<span class="ion-chevron-left"></span>','<span class="ion-chevron-right"></span>']
57
+ });
58
+ });
59
+
60
+ ```
61
+
62
+ And, add in view/layouts/application.html.erb (optional)
63
+
64
+ ```html
65
+ <link rel="stylesheet" href="http://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css" media="all">
31
66
  ```
32
67
 
33
68
  ## Usage
@@ -44,13 +79,20 @@ In your show featured content view
44
79
  <%= @featured.featured_sanitized %>
45
80
  ```
46
81
 
82
+ # Demonstration
83
+
84
+ Featured Content:
85
+ [link](https://example-cb-fc.herokuapp.com/)
86
+ Rails Admin:
87
+ [link](https://example-cb-fc.herokuapp.com/admin/rails_admin_featured_content~featured_content/1/featured_content)
88
+
47
89
  ## Requirements
48
90
 
49
91
  Dependencies
50
92
 
51
93
  MiniMagick
52
- rails_admin
53
- rails_admin_content_builder
94
+ Rails_admin
95
+ Rails_admin_content_builder
54
96
 
55
97
  Supported ORM
56
98
 
@@ -61,9 +103,9 @@ Supported Asset Plugin
61
103
  CarrierWave
62
104
 
63
105
 
64
- ## Usage
106
+ ## TODO
65
107
 
66
- TODO: Write usage instructions here
108
+ - Tests :)
67
109
 
68
110
  ## Development
69
111
 
@@ -247,7 +247,7 @@ $(document).on('click', '.fc-snippet__btn', function(e) {
247
247
  });
248
248
 
249
249
  // slide active
250
- var slideActive = function(container) {
250
+ function slideActive(container) {
251
251
  if(container) {
252
252
  container.owlCarousel({
253
253
  singleItem: true,
@@ -265,14 +265,14 @@ var slideActive = function(container) {
265
265
  };
266
266
 
267
267
  // slide destroy
268
- var slideDestroy = function(container) {
268
+ function slideDestroy(container) {
269
269
  if(container.length) {
270
270
  container.data('owlCarousel').destroy();
271
271
  }
272
272
  }
273
273
 
274
274
  // slide add
275
- var slideAdd = function(row_id, reference) {
275
+ function slideAdd(row_id, reference) {
276
276
  section_id = generateID();
277
277
 
278
278
  var element = '<div class="fc-item fc-slide__owl" id="'+ section_id +'">';
@@ -308,7 +308,7 @@ var slideAdd = function(row_id, reference) {
308
308
  }
309
309
 
310
310
  // slide remove
311
- var slideRemove = function(row_id, reference) {
311
+ function slideRemove(row_id, reference) {
312
312
  var container = $('#'+ row_id +' .fc-slide');
313
313
  var items = $('#'+ row_id +' .fc-slide__owl');
314
314
 
@@ -323,12 +323,12 @@ var slideRemove = function(row_id, reference) {
323
323
  }
324
324
 
325
325
  // add event on input file
326
- var addEventToInputFile = function(id) {
326
+ function addEventToInputFile(id) {
327
327
  $('#' + id + ' input:file').on('change', fileSelectAndUpload);
328
328
  };
329
329
 
330
330
  // upload file via ajax
331
- var fileSelectAndUpload = function(evt) {
331
+ function fileSelectAndUpload(evt) {
332
332
  var file = evt.target.files[0];
333
333
 
334
334
  if(file) {
@@ -359,7 +359,7 @@ var fileSelectAndUpload = function(evt) {
359
359
  };
360
360
 
361
361
  // scroll to
362
- var scrollTo = function(id) {
362
+ function scrollTo(id) {
363
363
  if(id) {
364
364
  $('html, body').animate({
365
365
  scrollTop: $('#' + id).offset().top
@@ -368,18 +368,18 @@ var scrollTo = function(id) {
368
368
  };
369
369
 
370
370
  // generate random id
371
- var generateID = function() {
371
+ function generateID() {
372
372
  return '_' + Math.random().toString(36).substr(2, 9);
373
373
  };
374
374
 
375
375
  // content editable
376
- var editable = function() {
376
+ function editable() {
377
377
  $('.fc-title').attr('contenteditable', 'true');
378
378
  $('.fc-text').attr('contenteditable', 'true');
379
379
  $('.fc-caption').attr('contenteditable', 'true');
380
380
  }
381
381
 
382
- autocomplete = function(id) {
382
+ function autocomplete(id) {
383
383
  $('#' + id + ' input:text').autocomplete({
384
384
  source: "search_content",
385
385
  minLength: 5,
@@ -13,7 +13,7 @@
13
13
  bottom: 110px;
14
14
  right: 0;
15
15
 
16
- width: 180px;
16
+ width: 150px;
17
17
 
18
18
  padding: 20px;
19
19
 
@@ -46,7 +46,7 @@
46
46
  bottom: 0;
47
47
  right: 0;
48
48
 
49
- width: 180px;
49
+ width: 150px;
50
50
 
51
51
  padding: 20px;
52
52
 
@@ -438,7 +438,6 @@
438
438
  // slide
439
439
 
440
440
  .fc-slide {
441
-
442
441
  .owl-controls {
443
442
  position: relative;
444
443
  height: 30px;
@@ -481,7 +480,6 @@
481
480
 
482
481
  .fc-slide__item {
483
482
  position: relative;
484
- height: 496px;
485
483
  overflow: hidden;
486
484
  }
487
485
 
@@ -529,7 +527,7 @@ h2.fc-slide__caption {
529
527
  margin: 0;
530
528
 
531
529
  width: 100% !important;
532
- line-height: 1.4;
530
+ line-height: 1.3;
533
531
  color: #fff !important;
534
532
  letter-spacing: -.04em;
535
533
  font-size: 33px;
@@ -549,15 +547,21 @@ h2.fc-slide__caption {
549
547
  }
550
548
 
551
549
  .fc-slide__figure {
550
+ position: relative;
551
+ z-index: -1;
552
552
  margin: 0;
553
553
 
554
554
  width: 100%;
555
555
  height: 0;
556
- border-radius: 4px;
556
+ border-radius: 6px;
557
557
  padding-bottom: 60%;
558
558
 
559
559
  overflow: hidden;
560
560
 
561
+ -webkit-transform: translate3d(0, 0, 0);
562
+ -moz-transform: translate3d(0, 0, 0);
563
+ transform: translate3d(0, 0, 0);
564
+
561
565
  &:before {
562
566
  content: "";
563
567
 
@@ -580,8 +584,6 @@ h2.fc-slide__caption {
580
584
  position: absolute;
581
585
  width: 100%;
582
586
  min-height: 100%;
583
- z-index: 100;
584
- z-index: 0;
585
587
  }
586
588
 
587
589
  .fc-slide__link {
@@ -1,3 +1,3 @@
1
1
  module RailsAdminFeaturedContent
2
- VERSION = "1.0.3"
2
+ VERSION = "1.0.4"
3
3
  end
@@ -6,11 +6,11 @@ require 'rails_admin_featured_content/version'
6
6
  Gem::Specification.new do |spec|
7
7
  spec.name = "rails_admin_featured_content"
8
8
  spec.version = RailsAdminFeaturedContent::VERSION
9
- spec.authors = ["Luiz Picolo"]
10
- spec.email = ["luizpicolo@gmail.com"]
9
+ spec.authors = ["Luiz Picolo", "Gabriel Medina"]
10
+ spec.email = ["luizpicolo@gmail.com", "gmedina.santos@gmail.com"]
11
11
 
12
- spec.summary = "Summary"
13
- spec.description = "Description"
12
+ spec.summary = "Easy way for create featured contents using rails_admin"
13
+ spec.description = "Easy way for create featured contents using rails_admin"
14
14
  spec.homepage = "http://github.com/luizpicolo/rails_admin_featured_content"
15
15
  spec.license = "MIT"
16
16
 
@@ -2,18 +2,6 @@
2
2
   (0.1ms) rollback transaction
3
3
   (0.0ms) begin transaction
4
4
   (0.0ms) rollback transaction
5
-  (0.1ms) begin transaction
6
-  (0.1ms) rollback transaction
7
-  (0.2ms) begin transaction
8
-  (0.0ms) rollback transaction
9
-  (0.0ms) begin transaction
10
-  (0.0ms) rollback transaction
11
-  (0.0ms) begin transaction
12
-  (0.0ms) rollback transaction
13
-  (0.2ms) begin transaction
14
-  (0.0ms) rollback transaction
15
-  (0.0ms) begin transaction
16
-  (0.0ms) rollback transaction
17
5
   (0.0ms) begin transaction
18
6
   (0.0ms) rollback transaction
19
7
   (0.2ms) begin transaction
@@ -22,15 +10,3 @@
22
10
   (0.0ms) rollback transaction
23
11
   (0.0ms) begin transaction
24
12
   (0.0ms) rollback transaction
25
-  (0.2ms) begin transaction
26
-  (0.1ms) rollback transaction
27
-  (0.1ms) begin transaction
28
-  (0.1ms) rollback transaction
29
-  (0.1ms) begin transaction
30
-  (0.0ms) rollback transaction
31
-  (0.2ms) begin transaction
32
-  (0.0ms) rollback transaction
33
-  (0.0ms) begin transaction
34
-  (0.0ms) rollback transaction
35
-  (0.0ms) begin transaction
36
-  (0.0ms) rollback transaction
data/spec/version_spec.rb CHANGED
@@ -2,6 +2,6 @@ require 'spec_helper'
2
2
 
3
3
  describe RailsAdminFeaturedContent do
4
4
  it 'has a version number' do
5
- expect(RailsAdminFeaturedContent::VERSION).to eq('1.0.3')
5
+ expect(RailsAdminFeaturedContent::VERSION).to eq('1.0.4')
6
6
  end
7
7
  end
@@ -277,7 +277,18 @@
277
277
  // fc slide
278
278
 
279
279
  .fc-slide {
280
+ position: relative;
281
+
282
+ border-radius: 6px;
283
+ overflow: hidden;
284
+
285
+ -webkit-transform: translate3d(0, 0, 0);
286
+ -moz-transform: translate3d(0, 0, 0);
287
+ transform: translate3d(0, 0, 0);
288
+
280
289
  .owl-controls {
290
+ margin: 0;
291
+
281
292
  .owl-buttons {
282
293
  display: none;
283
294
  }
@@ -390,18 +401,10 @@
390
401
 
391
402
  width: 100%;
392
403
  height: 0;
393
- border-radius: 4px;
394
404
  padding-bottom: 60%;
395
405
 
396
406
  overflow: hidden;
397
407
 
398
- -webkit-backface-visibility: hidden;
399
- backface-visibility: hidden;
400
-
401
- -webkit-transform: translate3d(0, 0, 0);
402
- -moz-transform: translate3d(0, 0, 0);
403
- transform: translate3d(0, 0, 0);
404
-
405
408
  &:before {
406
409
  content: "";
407
410
 
@@ -421,12 +424,14 @@
421
424
  }
422
425
 
423
426
  .fc-slide__image {
427
+ position: absolute;
428
+ display: block;
424
429
  width: 100%;
425
430
  min-height: 100%;
426
431
 
427
- transition: .3s ease;
428
- -webkit-transition: .3s ease;
429
- -moz-transition: .3s ease;
432
+ -webkit-transition: transform .3s ease;
433
+ -moz-transition: transform .3s ease;
434
+ transition: transform .3s ease;
430
435
  }
431
436
 
432
437
 
@@ -439,8 +444,6 @@
439
444
  @media screen and (min-width: 768px) {
440
445
  .fc-slide {
441
446
  .owl-controls {
442
- margin: .25rem 0 0;
443
-
444
447
  .owl-pagination {
445
448
  position: absolute;
446
449
  right: 0;
@@ -498,9 +501,9 @@
498
501
  &:focus {
499
502
  ~ .fc-slide__figure {
500
503
  .fc-slide__image {
501
- transform: scale(1.04);
502
504
  -webkit-transform: scale(1.04);
503
505
  -moz-transform: scale(1.04);
506
+ transform: scale(1.04);
504
507
  }
505
508
  }
506
509
  }
metadata CHANGED
@@ -1,14 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rails_admin_featured_content
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.3
4
+ version: 1.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Luiz Picolo
8
+ - Gabriel Medina
8
9
  autorequire:
9
10
  bindir: exe
10
11
  cert_chain: []
11
- date: 2016-07-29 00:00:00.000000000 Z
12
+ date: 2016-09-02 00:00:00.000000000 Z
12
13
  dependencies:
13
14
  - !ruby/object:Gem::Dependency
14
15
  name: bundler
@@ -348,9 +349,10 @@ dependencies:
348
349
  - - "~>"
349
350
  - !ruby/object:Gem::Version
350
351
  version: '0'
351
- description: Description
352
+ description: Easy way for create featured contents using rails_admin
352
353
  email:
353
354
  - luizpicolo@gmail.com
355
+ - gmedina.santos@gmail.com
354
356
  executables: []
355
357
  extensions: []
356
358
  extra_rdoc_files: []
@@ -495,81 +497,81 @@ rubyforge_project:
495
497
  rubygems_version: 2.5.1
496
498
  signing_key:
497
499
  specification_version: 4
498
- summary: Summary
500
+ summary: Easy way for create featured contents using rails_admin
499
501
  test_files:
500
- - spec/dummy/Gemfile.lock
502
+ - spec/spec_helper.rb
503
+ - spec/version_spec.rb
504
+ - spec/fixtures/assets/example.jpg
505
+ - spec/controllers/rails_admin_featured_content/featured_content_controller_spec.rb
506
+ - spec/factories/featured_content.rb
507
+ - spec/factories/featured_content_image.rb
508
+ - spec/dummy/bin/rails
509
+ - spec/dummy/bin/setup
510
+ - spec/dummy/bin/rake
511
+ - spec/dummy/bin/bundle
512
+ - spec/dummy/log/test.log
513
+ - spec/dummy/log/development.log
501
514
  - spec/dummy/config.ru
502
- - spec/dummy/config/routes.rb
503
- - spec/dummy/config/boot.rb
504
- - spec/dummy/config/database.yml
515
+ - spec/dummy/config/initializers/cookies_serializer.rb
505
516
  - spec/dummy/config/initializers/mime_types.rb
506
- - spec/dummy/config/initializers/session_store.rb
507
- - spec/dummy/config/initializers/rails_admin.rb
517
+ - spec/dummy/config/initializers/wrap_parameters.rb
518
+ - spec/dummy/config/initializers/inflections.rb
508
519
  - spec/dummy/config/initializers/rails_admin_featured_content.rb
509
520
  - spec/dummy/config/initializers/simple_form.rb
510
- - spec/dummy/config/initializers/assets.rb
511
- - spec/dummy/config/initializers/rails_admin_content_builder.rb
512
- - spec/dummy/config/initializers/cookies_serializer.rb
513
- - spec/dummy/config/initializers/filter_parameter_logging.rb
521
+ - spec/dummy/config/initializers/rails_admin.rb
514
522
  - spec/dummy/config/initializers/backtrace_silencers.rb
515
- - spec/dummy/config/initializers/inflections.rb
516
- - spec/dummy/config/initializers/wrap_parameters.rb
523
+ - spec/dummy/config/initializers/filter_parameter_logging.rb
524
+ - spec/dummy/config/initializers/rails_admin_content_builder.rb
525
+ - spec/dummy/config/initializers/session_store.rb
526
+ - spec/dummy/config/initializers/assets.rb
527
+ - spec/dummy/config/environment.rb
528
+ - spec/dummy/config/secrets.yml
529
+ - spec/dummy/config/application.rb
517
530
  - spec/dummy/config/locales/simple_form.en.yml
518
531
  - spec/dummy/config/locales/en.yml
519
- - spec/dummy/config/application.rb
520
- - spec/dummy/config/environment.rb
521
- - spec/dummy/config/environments/test.rb
532
+ - spec/dummy/config/boot.rb
533
+ - spec/dummy/config/database.yml
534
+ - spec/dummy/config/routes.rb
522
535
  - spec/dummy/config/environments/production.rb
536
+ - spec/dummy/config/environments/test.rb
523
537
  - spec/dummy/config/environments/development.rb
524
- - spec/dummy/config/secrets.yml
525
538
  - spec/dummy/lib/templates/erb/scaffold/_form.html.erb
526
- - spec/dummy/public/favicon.ico
527
- - spec/dummy/public/500.html
528
- - spec/dummy/public/422.html
529
- - spec/dummy/public/uploads/rails_admin_content_builder/content_builder_image/image/1/center_example.jpg
530
- - spec/dummy/public/uploads/rails_admin_content_builder/content_builder_image/image/1/example.jpg
531
- - spec/dummy/public/uploads/rails_admin_content_builder/content_builder_image/image/1/left_or_right_example.jpg
532
- - spec/dummy/public/uploads/rails_admin_content_builder/content_builder_image/image/2/center_example.jpg
533
- - spec/dummy/public/uploads/rails_admin_content_builder/content_builder_image/image/2/example.jpg
534
- - spec/dummy/public/uploads/rails_admin_content_builder/content_builder_image/image/2/left_or_right_example.jpg
535
- - spec/dummy/public/uploads/tmp/1461693110-14578-0001-7683/center_example.jpg
536
- - spec/dummy/public/uploads/tmp/1461693110-14578-0001-7683/example.jpg
537
- - spec/dummy/public/uploads/tmp/1461693110-14578-0001-7683/left_or_right_example.jpg
538
- - spec/dummy/public/uploads/tmp/1461693245-14728-0001-4392/center_example.jpg
539
- - spec/dummy/public/uploads/tmp/1461693245-14728-0001-4392/example.jpg
540
- - spec/dummy/public/uploads/tmp/1461693245-14728-0001-4392/left_or_right_example.jpg
541
- - spec/dummy/public/uploads/tmp/1461693202-14651-0001-6505/center_example.jpg
542
- - spec/dummy/public/uploads/tmp/1461693202-14651-0001-6505/example.jpg
543
- - spec/dummy/public/uploads/tmp/1461693202-14651-0001-6505/left_or_right_example.jpg
544
- - spec/dummy/public/uploads/rails_admin_featured_content/featured_content_image/image/1/example.jpg
545
- - spec/dummy/public/uploads/rails_admin_featured_content/featured_content_image/image/1/thumb_example.jpg
546
- - spec/dummy/public/404.html
547
- - spec/dummy/Gemfile
548
- - spec/dummy/log/development.log
549
- - spec/dummy/log/test.log
539
+ - spec/dummy/Gemfile.lock
550
540
  - spec/dummy/Rakefile
541
+ - spec/dummy/db/development.sqlite3
542
+ - spec/dummy/db/migrate/20160729105803_create_content_builder_images.rb
543
+ - spec/dummy/db/migrate/20160729105947_create_featured_contents.rb
544
+ - spec/dummy/db/migrate/20160729105802_create_content_builders.rb
545
+ - spec/dummy/db/migrate/20160729105948_create_featured_content_images.rb
546
+ - spec/dummy/db/migrate/20160729105801_create_content_builder_categories.rb
547
+ - spec/dummy/db/schema.rb
548
+ - spec/dummy/db/test.sqlite3
549
+ - spec/dummy/app/views/layouts/application.html.erb
551
550
  - spec/dummy/app/assets/stylesheets/application.css
552
551
  - spec/dummy/app/assets/javascripts/application.js
552
+ - spec/dummy/app/helpers/application_helper.rb
553
553
  - spec/dummy/app/controllers/application_controller.rb
554
- - spec/dummy/app/uploaders/content_builder_image_uploader.rb
555
554
  - spec/dummy/app/uploaders/featured_content_image_uploader.rb
556
- - spec/dummy/app/views/layouts/application.html.erb
557
- - spec/dummy/app/helpers/application_helper.rb
558
- - spec/dummy/db/development.sqlite3
559
- - spec/dummy/db/schema.rb
560
- - spec/dummy/db/test.sqlite3
561
- - spec/dummy/db/migrate/20160729105801_create_content_builder_categories.rb
562
- - spec/dummy/db/migrate/20160729105948_create_featured_content_images.rb
563
- - spec/dummy/db/migrate/20160729105947_create_featured_contents.rb
564
- - spec/dummy/db/migrate/20160729105803_create_content_builder_images.rb
565
- - spec/dummy/db/migrate/20160729105802_create_content_builders.rb
566
- - spec/dummy/bin/setup
567
- - spec/dummy/bin/rake
568
- - spec/dummy/bin/bundle
569
- - spec/dummy/bin/rails
570
- - spec/spec_helper.rb
571
- - spec/controllers/rails_admin_featured_content/featured_content_controller_spec.rb
572
- - spec/factories/featured_content.rb
573
- - spec/factories/featured_content_image.rb
574
- - spec/version_spec.rb
575
- - spec/fixtures/assets/example.jpg
555
+ - spec/dummy/app/uploaders/content_builder_image_uploader.rb
556
+ - spec/dummy/Gemfile
557
+ - spec/dummy/public/uploads/rails_admin_featured_content/featured_content_image/image/1/thumb_example.jpg
558
+ - spec/dummy/public/uploads/rails_admin_featured_content/featured_content_image/image/1/example.jpg
559
+ - spec/dummy/public/uploads/rails_admin_content_builder/content_builder_image/image/2/left_or_right_example.jpg
560
+ - spec/dummy/public/uploads/rails_admin_content_builder/content_builder_image/image/2/example.jpg
561
+ - spec/dummy/public/uploads/rails_admin_content_builder/content_builder_image/image/2/center_example.jpg
562
+ - spec/dummy/public/uploads/rails_admin_content_builder/content_builder_image/image/1/left_or_right_example.jpg
563
+ - spec/dummy/public/uploads/rails_admin_content_builder/content_builder_image/image/1/example.jpg
564
+ - spec/dummy/public/uploads/rails_admin_content_builder/content_builder_image/image/1/center_example.jpg
565
+ - spec/dummy/public/uploads/tmp/1461693110-14578-0001-7683/left_or_right_example.jpg
566
+ - spec/dummy/public/uploads/tmp/1461693110-14578-0001-7683/example.jpg
567
+ - spec/dummy/public/uploads/tmp/1461693110-14578-0001-7683/center_example.jpg
568
+ - spec/dummy/public/uploads/tmp/1461693202-14651-0001-6505/left_or_right_example.jpg
569
+ - spec/dummy/public/uploads/tmp/1461693202-14651-0001-6505/example.jpg
570
+ - spec/dummy/public/uploads/tmp/1461693202-14651-0001-6505/center_example.jpg
571
+ - spec/dummy/public/uploads/tmp/1461693245-14728-0001-4392/left_or_right_example.jpg
572
+ - spec/dummy/public/uploads/tmp/1461693245-14728-0001-4392/example.jpg
573
+ - spec/dummy/public/uploads/tmp/1461693245-14728-0001-4392/center_example.jpg
574
+ - spec/dummy/public/404.html
575
+ - spec/dummy/public/favicon.ico
576
+ - spec/dummy/public/422.html
577
+ - spec/dummy/public/500.html