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 +4 -4
- data/README.md +51 -9
- data/app/assets/javascripts/rails_admin/featured_content.js.erb +10 -10
- data/app/assets/stylesheets/rails_admin/featured_content.scss +10 -8
- data/lib/rails_admin_featured_content/version.rb +1 -1
- data/rails_admin_featured_content.gemspec +4 -4
- data/spec/dummy/log/test.log +0 -24
- data/spec/version_spec.rb +1 -1
- data/vendor/assets/stylesheets/rails_admin_featured_content.scss +17 -14
- metadata +67 -65
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ca1e12df658f1365dfa246bcbd4308131a2b3f34
|
4
|
+
data.tar.gz: e449cff9b8f992281b6a1ca9b0185c59c9210124
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d11d30bcedcca16bab0aead68fbde0f81c024b58224b88d9304a0727b341cf6c7cc04bbcd5410f34e20e4b199a437e5abfb5424ea80e3a961172262b3fce14bb
|
7
|
+
data.tar.gz: 52d253d464feebb75208a5218fc84b06c1628d7466e9376911b54c386348bd519e048b8df9323828c5554816a66a36a8959de6bc84505e08aca83e7810136d21
|
data/README.md
CHANGED
@@ -1,17 +1,22 @@
|
|
1
1
|
# RailsAdminFeaturedContent
|
2
2
|
|
3
|
-
](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 '
|
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
|
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
|
-
|
53
|
-
|
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
|
-
##
|
106
|
+
## TODO
|
65
107
|
|
66
|
-
|
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
|
-
|
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
|
-
|
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
|
-
|
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
|
-
|
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
|
-
|
326
|
+
function addEventToInputFile(id) {
|
327
327
|
$('#' + id + ' input:file').on('change', fileSelectAndUpload);
|
328
328
|
};
|
329
329
|
|
330
330
|
// upload file via ajax
|
331
|
-
|
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
|
-
|
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
|
-
|
371
|
+
function generateID() {
|
372
372
|
return '_' + Math.random().toString(36).substr(2, 9);
|
373
373
|
};
|
374
374
|
|
375
375
|
// content editable
|
376
|
-
|
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
|
-
|
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:
|
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:
|
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.
|
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:
|
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 {
|
@@ -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 = "
|
13
|
-
spec.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
|
|
data/spec/dummy/log/test.log
CHANGED
@@ -2,18 +2,6 @@
|
|
2
2
|
[1m[35m (0.1ms)[0m rollback transaction
|
3
3
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4
4
|
[1m[35m (0.0ms)[0m rollback transaction
|
5
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
6
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
7
|
-
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
8
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
9
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
10
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
11
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
13
|
-
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
14
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
15
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
16
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
17
5
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
18
6
|
[1m[35m (0.0ms)[0m rollback transaction
|
19
7
|
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
@@ -22,15 +10,3 @@
|
|
22
10
|
[1m[35m (0.0ms)[0m rollback transaction
|
23
11
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
24
12
|
[1m[35m (0.0ms)[0m rollback transaction
|
25
|
-
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
26
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
27
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
28
|
-
[1m[35m (0.1ms)[0m rollback transaction
|
29
|
-
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
30
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
31
|
-
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
32
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
33
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
34
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
35
|
-
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
36
|
-
[1m[35m (0.0ms)[0m rollback transaction
|
data/spec/version_spec.rb
CHANGED
@@ -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
|
-
-
|
429
|
-
|
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.
|
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-
|
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:
|
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:
|
500
|
+
summary: Easy way for create featured contents using rails_admin
|
499
501
|
test_files:
|
500
|
-
- spec/
|
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/
|
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/
|
507
|
-
- spec/dummy/config/initializers/
|
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/
|
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/
|
516
|
-
- spec/dummy/config/initializers/
|
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/
|
520
|
-
- spec/dummy/config/
|
521
|
-
- spec/dummy/config/
|
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/
|
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/
|
557
|
-
- spec/dummy/
|
558
|
-
- spec/dummy/
|
559
|
-
- spec/dummy/
|
560
|
-
- spec/dummy/
|
561
|
-
- spec/dummy/
|
562
|
-
- spec/dummy/
|
563
|
-
- spec/dummy/
|
564
|
-
- spec/dummy/
|
565
|
-
- spec/dummy/
|
566
|
-
- spec/dummy/
|
567
|
-
- spec/dummy/
|
568
|
-
- spec/dummy/
|
569
|
-
- spec/dummy/
|
570
|
-
- spec/
|
571
|
-
- spec/
|
572
|
-
- spec/
|
573
|
-
- spec/
|
574
|
-
- spec/
|
575
|
-
- spec/
|
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
|