polygallery 0.1.2 → 0.1.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (48) hide show
  1. checksums.yaml +4 -4
  2. data/app/controllers/concerns/polygallery/strong_params.rb +5 -3
  3. data/app/models/concerns/polygallery/acts_as_polyphoto.rb +64 -32
  4. data/app/views/polygallery/galleries/_simple_fields_for.html.haml +5 -4
  5. data/app/views/polygallery/photos/_simple_fields_for.html.haml +2 -1
  6. data/lib/polygallery/has_polygallery.rb +85 -14
  7. data/lib/polygallery/has_polyphotos.rb +46 -55
  8. data/lib/polygallery/railtie.rb +1 -1
  9. data/lib/polygallery/version.rb +1 -1
  10. data/test/dummy/app/controllers/events_controller.rb +2 -1
  11. data/test/dummy/app/controllers/home_controller.rb +1 -0
  12. data/test/dummy/app/models/event.rb +1 -5
  13. data/test/dummy/app/views/events/_simple_form.html.haml +1 -1
  14. data/test/dummy/log/development.log +4002 -0
  15. data/test/dummy/log/test.log +11639 -0
  16. data/test/dummy/public/system/polygallery/photos/photos/000/000/001/medium/logo_placeholder_medium.png +0 -0
  17. data/test/dummy/public/system/polygallery/photos/photos/000/000/001/original/logo_placeholder_medium.png +0 -0
  18. data/test/dummy/public/system/polygallery/photos/photos/000/000/001/thumb/logo_placeholder_medium.png +0 -0
  19. data/test/dummy/public/system/polygallery/photos/photos/000/000/002/medium/logo_placeholder_medium.png +0 -0
  20. data/test/dummy/public/system/polygallery/photos/photos/000/000/002/thumb/logo_placeholder_medium.png +0 -0
  21. data/test/dummy/public/system/polygallery/photos/photos/000/000/003/medium/logo_placeholder_medium.png +0 -0
  22. data/test/dummy/public/system/polygallery/photos/photos/000/000/003/thumb/logo_placeholder_medium.png +0 -0
  23. data/test/dummy/public/system/polygallery/photos/photos/000/000/004/medium/logo_placeholder_medium.png +0 -0
  24. data/test/dummy/public/system/polygallery/photos/photos/000/000/004/thumb/logo_placeholder_medium.png +0 -0
  25. data/test/dummy/public/system/polygallery/photos/photos/000/000/005/medium/logo_placeholder_medium.png +0 -0
  26. data/test/dummy/public/system/polygallery/photos/photos/000/000/005/original/logo_placeholder_medium.png +0 -0
  27. data/test/dummy/public/system/polygallery/photos/photos/000/000/005/thumb/logo_placeholder_medium.png +0 -0
  28. data/test/dummy/public/system/polygallery/photos/photos/000/000/006/custom/logo_placeholder_medium.png +0 -0
  29. data/test/dummy/public/system/polygallery/photos/photos/000/000/006/medium/logo_placeholder_medium.png +0 -0
  30. data/test/dummy/public/system/polygallery/photos/photos/000/000/006/original/logo_placeholder_medium.png +0 -0
  31. data/test/dummy/public/system/polygallery/photos/photos/000/000/006/thumb/logo_placeholder_medium.png +0 -0
  32. data/test/dummy/public/system/polygallery/photos/photos/000/000/007/medium/logo_placeholder_medium.png +0 -0
  33. data/test/dummy/public/system/polygallery/photos/photos/000/000/007/original/logo_placeholder_medium.png +0 -0
  34. data/test/dummy/public/system/polygallery/photos/photos/000/000/007/thumb/logo_placeholder_medium.png +0 -0
  35. data/test/dummy/public/system/polygallery/photos/photos/000/000/008/medium/logo_placeholder_medium.png +0 -0
  36. data/test/dummy/public/system/polygallery/photos/photos/000/000/008/original/logo_placeholder_medium.png +0 -0
  37. data/test/dummy/public/system/polygallery/photos/photos/000/000/008/thumb/logo_placeholder_medium.png +0 -0
  38. data/test/dummy/public/system/polygallery/photos/photos/000/000/011/custom/logo_placeholder_medium.png +0 -0
  39. data/test/dummy/public/system/polygallery/photos/photos/000/000/011/medium/logo_placeholder_medium.png +0 -0
  40. data/test/dummy/public/system/polygallery/photos/photos/000/000/011/original/logo_placeholder_medium.png +0 -0
  41. data/test/dummy/public/system/polygallery/photos/photos/000/000/011/thumb/logo_placeholder_medium.png +0 -0
  42. data/test/dummy/public/system/polygallery/photos/photos/000/000/014/custom/logo_placeholder_medium.png +0 -0
  43. data/test/dummy/public/system/polygallery/photos/photos/000/000/014/medium/logo_placeholder_medium.png +0 -0
  44. data/test/dummy/public/system/polygallery/photos/photos/000/000/014/original/logo_placeholder_medium.png +0 -0
  45. data/test/dummy/public/system/polygallery/photos/photos/000/000/014/thumb/logo_placeholder_medium.png +0 -0
  46. data/test/dummy/spec/features/events_spec.rb +54 -7
  47. metadata +50 -4
  48. data/test/dummy/tmp/pids/server.pid +0 -1
@@ -1,14 +1,15 @@
1
1
  require 'spec_helper'
2
2
 
3
3
  describe 'Events:', :js => true do
4
- def add_photo_to_form(attrs=nil)
4
+ def add_photo_to_form(attrs=nil, table_id='photos')
5
5
  # attrs ||= build :photo
6
- last_tr = all('.polygallery-photos-table tr').last
6
+ tr_selector = ".polygallery-cocoon-table##{table_id} tr"
7
+ last_tr = all(tr_selector).last
7
8
  if last_tr.find('input[id$="_photo"]').value.present?
8
9
  page.execute_script <<-SCRIPT
9
- $('.btn.add_fields[data-association="photo"]').click();
10
+ $('.btn.add_fields[data-association="#{table_id.singularize}"]').click();
10
11
  SCRIPT
11
- last_tr = all('.polygallery-photos-table tr').last
12
+ last_tr = all(tr_selector).last
12
13
  end
13
14
  within last_tr do
14
15
  find('input[id$="_photo"]').set Rails.root.join('spec', 'upload_files',
@@ -17,6 +18,9 @@ describe 'Events:', :js => true do
17
18
  yield if block_given?
18
19
  end
19
20
  end
21
+ def add_custom_photo_to_form(attrs=nil)
22
+ add_photo_to_form(attrs, 'custom_photos')
23
+ end
20
24
 
21
25
  describe 'with SimpleForm' do
22
26
  def complete_the_form(attrs=nil)
@@ -47,11 +51,54 @@ describe 'Events:', :js => true do
47
51
  expect_success
48
52
  expect(Event.count).to eq 1
49
53
  e = Event.last
50
- expect(e.custom_gallery_photos.count).to eq 1
51
- photo = e.custom_gallery_photos.first
52
- puts photo
54
+ expect(e.photos.count).to eq 1
55
+ expect(e.custom_photos.count).to eq 0
56
+ photo = e.photos.first
57
+ expect(photo.photo.file?).to be true
58
+ end
59
+
60
+ it 'works when an image is attached to a custom gallery' do
61
+ visit root_path
62
+ complete_the_form { add_custom_photo_to_form }
63
+ expect_success
64
+ expect(Event.count).to eq 1
65
+ e = Event.last
66
+ expect(e.custom_photos.first.custom_gallery).not_to be_nil
67
+ expect(e.photos.count).to eq 0
68
+ expect(e.custom_photos.count).to eq 1
69
+ photo = e.custom_photos.first
53
70
  expect(photo.photo.file?).to be true
54
71
  end
72
+
73
+ it 'works when multiple images are attached to a custom gallery' do
74
+ visit root_path
75
+ complete_the_form { 3.times { add_custom_photo_to_form } }
76
+ expect_success
77
+ expect(Event.count).to eq 1
78
+ e = Event.last
79
+ expect(e.photos.count).to eq 0
80
+ expect(e.custom_photos.count).to eq 3
81
+ photo = e.custom_photos.first
82
+ expect(photo.photo.file?).to be true
83
+ end
84
+
85
+ it 'works when multiple images are attached to both galleries' do
86
+ visit root_path
87
+ complete_the_form do
88
+ 3.times { add_photo_to_form }
89
+ 2.times { add_custom_photo_to_form }
90
+ end
91
+ expect_success
92
+ expect(Event.count).to eq 1
93
+ e = Event.last
94
+ expect(e.photos.count).to eq 3
95
+ expect(e.custom_photos.count).to eq 2
96
+ end
97
+
98
+ it 'allows photos to be edited'
99
+ it 'allows custom photos to be edited'
100
+ it 'allows photos to be deleted'
101
+ it 'allows custom photos to be deleted'
55
102
  end
56
103
 
57
104
  describe 'without SimpleForm' do
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: polygallery
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - MacKinley Smith
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-03-20 00:00:00.000000000 Z
11
+ date: 2015-03-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -358,6 +358,9 @@ files:
358
358
  - test/dummy/public/fonts/glyphicons-halflings-regular.svg
359
359
  - test/dummy/public/fonts/glyphicons-halflings-regular.ttf
360
360
  - test/dummy/public/fonts/glyphicons-halflings-regular.woff
361
+ - test/dummy/public/system/polygallery/photos/photos/000/000/001/medium/logo_placeholder_medium.png
362
+ - test/dummy/public/system/polygallery/photos/photos/000/000/001/original/logo_placeholder_medium.png
363
+ - test/dummy/public/system/polygallery/photos/photos/000/000/001/thumb/logo_placeholder_medium.png
361
364
  - test/dummy/public/system/polygallery/photos/photos/000/000/002/medium/logo_placeholder_medium.png
362
365
  - test/dummy/public/system/polygallery/photos/photos/000/000/002/original/logo_placeholder_medium.png
363
366
  - test/dummy/public/system/polygallery/photos/photos/000/000/002/thumb/logo_placeholder_medium.png
@@ -381,20 +384,33 @@ files:
381
384
  - test/dummy/public/system/polygallery/photos/photos/000/000/004/slide/SALON_RUNWAY_(1).jpg
382
385
  - test/dummy/public/system/polygallery/photos/photos/000/000/004/thumb/SALON_RUNWAY_(1).jpg
383
386
  - test/dummy/public/system/polygallery/photos/photos/000/000/004/thumb/logo_placeholder_medium.png
387
+ - test/dummy/public/system/polygallery/photos/photos/000/000/005/medium/logo_placeholder_medium.png
388
+ - test/dummy/public/system/polygallery/photos/photos/000/000/005/original/logo_placeholder_medium.png
389
+ - test/dummy/public/system/polygallery/photos/photos/000/000/005/thumb/logo_placeholder_medium.png
384
390
  - test/dummy/public/system/polygallery/photos/photos/000/000/006/big_slide/SALON_RUNWAY_(1).jpg
391
+ - test/dummy/public/system/polygallery/photos/photos/000/000/006/custom/logo_placeholder_medium.png
385
392
  - test/dummy/public/system/polygallery/photos/photos/000/000/006/full/SALON_RUNWAY_(1).jpg
386
393
  - test/dummy/public/system/polygallery/photos/photos/000/000/006/grid/SALON_RUNWAY_(1).jpg
387
394
  - test/dummy/public/system/polygallery/photos/photos/000/000/006/medium/SALON_RUNWAY_(1).jpg
395
+ - test/dummy/public/system/polygallery/photos/photos/000/000/006/medium/logo_placeholder_medium.png
388
396
  - test/dummy/public/system/polygallery/photos/photos/000/000/006/original/SALON_RUNWAY_(1).jpg
397
+ - test/dummy/public/system/polygallery/photos/photos/000/000/006/original/logo_placeholder_medium.png
389
398
  - test/dummy/public/system/polygallery/photos/photos/000/000/006/slide/SALON_RUNWAY_(1).jpg
390
399
  - test/dummy/public/system/polygallery/photos/photos/000/000/006/thumb/SALON_RUNWAY_(1).jpg
400
+ - test/dummy/public/system/polygallery/photos/photos/000/000/006/thumb/logo_placeholder_medium.png
391
401
  - test/dummy/public/system/polygallery/photos/photos/000/000/007/big_slide/DSC_5099.JPG
392
402
  - test/dummy/public/system/polygallery/photos/photos/000/000/007/full/DSC_5099.JPG
393
403
  - test/dummy/public/system/polygallery/photos/photos/000/000/007/grid/DSC_5099.JPG
394
404
  - test/dummy/public/system/polygallery/photos/photos/000/000/007/medium/DSC_5099.JPG
405
+ - test/dummy/public/system/polygallery/photos/photos/000/000/007/medium/logo_placeholder_medium.png
395
406
  - test/dummy/public/system/polygallery/photos/photos/000/000/007/original/DSC_5099.JPG
407
+ - test/dummy/public/system/polygallery/photos/photos/000/000/007/original/logo_placeholder_medium.png
396
408
  - test/dummy/public/system/polygallery/photos/photos/000/000/007/slide/DSC_5099.JPG
397
409
  - test/dummy/public/system/polygallery/photos/photos/000/000/007/thumb/DSC_5099.JPG
410
+ - test/dummy/public/system/polygallery/photos/photos/000/000/007/thumb/logo_placeholder_medium.png
411
+ - test/dummy/public/system/polygallery/photos/photos/000/000/008/medium/logo_placeholder_medium.png
412
+ - test/dummy/public/system/polygallery/photos/photos/000/000/008/original/logo_placeholder_medium.png
413
+ - test/dummy/public/system/polygallery/photos/photos/000/000/008/thumb/logo_placeholder_medium.png
398
414
  - test/dummy/public/system/polygallery/photos/photos/000/000/009/big_slide/DSC_5099.JPG
399
415
  - test/dummy/public/system/polygallery/photos/photos/000/000/009/full/DSC_5099.JPG
400
416
  - test/dummy/public/system/polygallery/photos/photos/000/000/009/grid/DSC_5099.JPG
@@ -409,12 +425,20 @@ files:
409
425
  - test/dummy/public/system/polygallery/photos/photos/000/000/010/original/SALON_RUNWAY_(1).jpg
410
426
  - test/dummy/public/system/polygallery/photos/photos/000/000/010/slide/SALON_RUNWAY_(1).jpg
411
427
  - test/dummy/public/system/polygallery/photos/photos/000/000/010/thumb/SALON_RUNWAY_(1).jpg
428
+ - test/dummy/public/system/polygallery/photos/photos/000/000/011/custom/logo_placeholder_medium.png
429
+ - test/dummy/public/system/polygallery/photos/photos/000/000/011/medium/logo_placeholder_medium.png
412
430
  - test/dummy/public/system/polygallery/photos/photos/000/000/011/medium/piece2.jpg
431
+ - test/dummy/public/system/polygallery/photos/photos/000/000/011/original/logo_placeholder_medium.png
413
432
  - test/dummy/public/system/polygallery/photos/photos/000/000/011/original/piece2.jpg
433
+ - test/dummy/public/system/polygallery/photos/photos/000/000/011/thumb/logo_placeholder_medium.png
414
434
  - test/dummy/public/system/polygallery/photos/photos/000/000/011/thumb/piece2.jpg
415
435
  - test/dummy/public/system/polygallery/photos/photos/000/000/012/medium/piece6.jpg
416
436
  - test/dummy/public/system/polygallery/photos/photos/000/000/012/original/piece6.jpg
417
437
  - test/dummy/public/system/polygallery/photos/photos/000/000/012/thumb/piece6.jpg
438
+ - test/dummy/public/system/polygallery/photos/photos/000/000/014/custom/logo_placeholder_medium.png
439
+ - test/dummy/public/system/polygallery/photos/photos/000/000/014/medium/logo_placeholder_medium.png
440
+ - test/dummy/public/system/polygallery/photos/photos/000/000/014/original/logo_placeholder_medium.png
441
+ - test/dummy/public/system/polygallery/photos/photos/000/000/014/thumb/logo_placeholder_medium.png
418
442
  - test/dummy/public/system/polygallery/photos/photos/000/000/029/medium/piece4.jpg
419
443
  - test/dummy/public/system/polygallery/photos/photos/000/000/029/original/piece4.jpg
420
444
  - test/dummy/public/system/polygallery/photos/photos/000/000/029/thumb/piece4.jpg
@@ -570,7 +594,6 @@ files:
570
594
  - test/dummy/tmp/cache/assets/test/sprockets/f644fd75cbead0e58c847aa16546e2a8
571
595
  - test/dummy/tmp/cache/assets/test/sprockets/f7cbd26ba1d28d48de824f0e94586655
572
596
  - test/dummy/tmp/cache/assets/test/sprockets/f950876669f7719a544d0de445843b08
573
- - test/dummy/tmp/pids/server.pid
574
597
  - test/fixtures/polygallery/galleries.yml
575
598
  - test/fixtures/polygallery/photos.yml
576
599
  - test/helpers/polygallery/galleries_helper_test.rb
@@ -673,6 +696,9 @@ test_files:
673
696
  - test/dummy/public/fonts/glyphicons-halflings-regular.svg
674
697
  - test/dummy/public/fonts/glyphicons-halflings-regular.ttf
675
698
  - test/dummy/public/fonts/glyphicons-halflings-regular.woff
699
+ - test/dummy/public/system/polygallery/photos/photos/000/000/001/medium/logo_placeholder_medium.png
700
+ - test/dummy/public/system/polygallery/photos/photos/000/000/001/original/logo_placeholder_medium.png
701
+ - test/dummy/public/system/polygallery/photos/photos/000/000/001/thumb/logo_placeholder_medium.png
676
702
  - test/dummy/public/system/polygallery/photos/photos/000/000/002/medium/logo_placeholder_medium.png
677
703
  - test/dummy/public/system/polygallery/photos/photos/000/000/002/original/logo_placeholder_medium.png
678
704
  - test/dummy/public/system/polygallery/photos/photos/000/000/002/thumb/logo_placeholder_medium.png
@@ -696,20 +722,33 @@ test_files:
696
722
  - test/dummy/public/system/polygallery/photos/photos/000/000/004/slide/SALON_RUNWAY_(1).jpg
697
723
  - test/dummy/public/system/polygallery/photos/photos/000/000/004/thumb/logo_placeholder_medium.png
698
724
  - test/dummy/public/system/polygallery/photos/photos/000/000/004/thumb/SALON_RUNWAY_(1).jpg
725
+ - test/dummy/public/system/polygallery/photos/photos/000/000/005/medium/logo_placeholder_medium.png
726
+ - test/dummy/public/system/polygallery/photos/photos/000/000/005/original/logo_placeholder_medium.png
727
+ - test/dummy/public/system/polygallery/photos/photos/000/000/005/thumb/logo_placeholder_medium.png
699
728
  - test/dummy/public/system/polygallery/photos/photos/000/000/006/big_slide/SALON_RUNWAY_(1).jpg
729
+ - test/dummy/public/system/polygallery/photos/photos/000/000/006/custom/logo_placeholder_medium.png
700
730
  - test/dummy/public/system/polygallery/photos/photos/000/000/006/full/SALON_RUNWAY_(1).jpg
701
731
  - test/dummy/public/system/polygallery/photos/photos/000/000/006/grid/SALON_RUNWAY_(1).jpg
732
+ - test/dummy/public/system/polygallery/photos/photos/000/000/006/medium/logo_placeholder_medium.png
702
733
  - test/dummy/public/system/polygallery/photos/photos/000/000/006/medium/SALON_RUNWAY_(1).jpg
734
+ - test/dummy/public/system/polygallery/photos/photos/000/000/006/original/logo_placeholder_medium.png
703
735
  - test/dummy/public/system/polygallery/photos/photos/000/000/006/original/SALON_RUNWAY_(1).jpg
704
736
  - test/dummy/public/system/polygallery/photos/photos/000/000/006/slide/SALON_RUNWAY_(1).jpg
737
+ - test/dummy/public/system/polygallery/photos/photos/000/000/006/thumb/logo_placeholder_medium.png
705
738
  - test/dummy/public/system/polygallery/photos/photos/000/000/006/thumb/SALON_RUNWAY_(1).jpg
706
739
  - test/dummy/public/system/polygallery/photos/photos/000/000/007/big_slide/DSC_5099.JPG
707
740
  - test/dummy/public/system/polygallery/photos/photos/000/000/007/full/DSC_5099.JPG
708
741
  - test/dummy/public/system/polygallery/photos/photos/000/000/007/grid/DSC_5099.JPG
709
742
  - test/dummy/public/system/polygallery/photos/photos/000/000/007/medium/DSC_5099.JPG
743
+ - test/dummy/public/system/polygallery/photos/photos/000/000/007/medium/logo_placeholder_medium.png
710
744
  - test/dummy/public/system/polygallery/photos/photos/000/000/007/original/DSC_5099.JPG
745
+ - test/dummy/public/system/polygallery/photos/photos/000/000/007/original/logo_placeholder_medium.png
711
746
  - test/dummy/public/system/polygallery/photos/photos/000/000/007/slide/DSC_5099.JPG
712
747
  - test/dummy/public/system/polygallery/photos/photos/000/000/007/thumb/DSC_5099.JPG
748
+ - test/dummy/public/system/polygallery/photos/photos/000/000/007/thumb/logo_placeholder_medium.png
749
+ - test/dummy/public/system/polygallery/photos/photos/000/000/008/medium/logo_placeholder_medium.png
750
+ - test/dummy/public/system/polygallery/photos/photos/000/000/008/original/logo_placeholder_medium.png
751
+ - test/dummy/public/system/polygallery/photos/photos/000/000/008/thumb/logo_placeholder_medium.png
713
752
  - test/dummy/public/system/polygallery/photos/photos/000/000/009/big_slide/DSC_5099.JPG
714
753
  - test/dummy/public/system/polygallery/photos/photos/000/000/009/full/DSC_5099.JPG
715
754
  - test/dummy/public/system/polygallery/photos/photos/000/000/009/grid/DSC_5099.JPG
@@ -724,12 +763,20 @@ test_files:
724
763
  - test/dummy/public/system/polygallery/photos/photos/000/000/010/original/SALON_RUNWAY_(1).jpg
725
764
  - test/dummy/public/system/polygallery/photos/photos/000/000/010/slide/SALON_RUNWAY_(1).jpg
726
765
  - test/dummy/public/system/polygallery/photos/photos/000/000/010/thumb/SALON_RUNWAY_(1).jpg
766
+ - test/dummy/public/system/polygallery/photos/photos/000/000/011/custom/logo_placeholder_medium.png
767
+ - test/dummy/public/system/polygallery/photos/photos/000/000/011/medium/logo_placeholder_medium.png
727
768
  - test/dummy/public/system/polygallery/photos/photos/000/000/011/medium/piece2.jpg
769
+ - test/dummy/public/system/polygallery/photos/photos/000/000/011/original/logo_placeholder_medium.png
728
770
  - test/dummy/public/system/polygallery/photos/photos/000/000/011/original/piece2.jpg
771
+ - test/dummy/public/system/polygallery/photos/photos/000/000/011/thumb/logo_placeholder_medium.png
729
772
  - test/dummy/public/system/polygallery/photos/photos/000/000/011/thumb/piece2.jpg
730
773
  - test/dummy/public/system/polygallery/photos/photos/000/000/012/medium/piece6.jpg
731
774
  - test/dummy/public/system/polygallery/photos/photos/000/000/012/original/piece6.jpg
732
775
  - test/dummy/public/system/polygallery/photos/photos/000/000/012/thumb/piece6.jpg
776
+ - test/dummy/public/system/polygallery/photos/photos/000/000/014/custom/logo_placeholder_medium.png
777
+ - test/dummy/public/system/polygallery/photos/photos/000/000/014/medium/logo_placeholder_medium.png
778
+ - test/dummy/public/system/polygallery/photos/photos/000/000/014/original/logo_placeholder_medium.png
779
+ - test/dummy/public/system/polygallery/photos/photos/000/000/014/thumb/logo_placeholder_medium.png
733
780
  - test/dummy/public/system/polygallery/photos/photos/000/000/029/medium/piece4.jpg
734
781
  - test/dummy/public/system/polygallery/photos/photos/000/000/029/original/piece4.jpg
735
782
  - test/dummy/public/system/polygallery/photos/photos/000/000/029/thumb/piece4.jpg
@@ -887,7 +934,6 @@ test_files:
887
934
  - test/dummy/tmp/cache/assets/test/sprockets/f644fd75cbead0e58c847aa16546e2a8
888
935
  - test/dummy/tmp/cache/assets/test/sprockets/f7cbd26ba1d28d48de824f0e94586655
889
936
  - test/dummy/tmp/cache/assets/test/sprockets/f950876669f7719a544d0de445843b08
890
- - test/dummy/tmp/pids/server.pid
891
937
  - test/fixtures/polygallery/galleries.yml
892
938
  - test/fixtures/polygallery/photos.yml
893
939
  - test/helpers/polygallery/galleries_helper_test.rb
@@ -1 +0,0 @@
1
- 55735