paperclip 2.3.5 → 2.3.6

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of paperclip might be problematic. Click here for more details.

Files changed (64) hide show
  1. data/Rakefile +6 -2
  2. data/lib/paperclip.rbc +5129 -12
  3. data/lib/paperclip/attachment.rb +9 -3
  4. data/lib/paperclip/attachment.rbc +5550 -872
  5. data/lib/paperclip/callback_compatability.rbc +1649 -0
  6. data/lib/paperclip/command_line.rbc +1952 -0
  7. data/lib/paperclip/geometry.rbc +2141 -0
  8. data/lib/paperclip/glue.rbc +685 -0
  9. data/lib/paperclip/interpolations.rb +2 -1
  10. data/lib/paperclip/interpolations.rbc +2205 -0
  11. data/lib/paperclip/iostream.rbc +905 -0
  12. data/lib/paperclip/matchers.rbc +267 -0
  13. data/lib/paperclip/matchers/have_attached_file_matcher.rbc +1258 -0
  14. data/lib/paperclip/matchers/validate_attachment_content_type_matcher.rbc +1660 -0
  15. data/lib/paperclip/matchers/validate_attachment_presence_matcher.rbc +1304 -0
  16. data/lib/paperclip/matchers/validate_attachment_size_matcher.rbc +2160 -0
  17. data/lib/paperclip/{configuration.rbc → processor.rbc} +471 -569
  18. data/lib/paperclip/railtie.rbc +680 -0
  19. data/lib/paperclip/storage.rbc +69 -0
  20. data/lib/paperclip/storage/filesystem.rbc +1402 -0
  21. data/lib/paperclip/storage/s3.rb +1 -0
  22. data/lib/paperclip/storage/s3.rbc +3489 -0
  23. data/lib/paperclip/style.rbc +1571 -0
  24. data/lib/paperclip/thumbnail.rbc +1648 -0
  25. data/lib/paperclip/upfile.rb +0 -7
  26. data/lib/paperclip/upfile.rbc +1619 -0
  27. data/lib/paperclip/version.rb +1 -1
  28. data/lib/paperclip/version.rbc +176 -0
  29. data/shoulda_macros/paperclip.rbc +2415 -0
  30. data/test/attachment_test.rb +8 -8
  31. data/test/attachment_test.rbc +22952 -0
  32. data/test/command_line_test.rb +1 -1
  33. data/test/command_line_test.rbc +4307 -0
  34. data/test/geometry_test.rb +1 -1
  35. data/test/geometry_test.rbc +5181 -0
  36. data/test/helper.rb +1 -13
  37. data/test/helper.rbc +3971 -0
  38. data/test/integration_test.rb +1 -1
  39. data/test/integration_test.rbc +13137 -0
  40. data/test/interpolations_test.rb +1 -1
  41. data/test/interpolations_test.rbc +3432 -0
  42. data/test/iostream_test.rb +1 -1
  43. data/test/iostream_test.rbc +1889 -0
  44. data/test/matchers/have_attached_file_matcher_test.rb +1 -1
  45. data/test/matchers/have_attached_file_matcher_test.rbc +622 -0
  46. data/test/matchers/validate_attachment_content_type_matcher_test.rb +1 -1
  47. data/test/matchers/validate_attachment_content_type_matcher_test.rbc +1174 -0
  48. data/test/matchers/validate_attachment_presence_matcher_test.rb +1 -1
  49. data/test/matchers/validate_attachment_presence_matcher_test.rbc +622 -0
  50. data/test/matchers/validate_attachment_size_matcher_test.rb +1 -1
  51. data/test/matchers/validate_attachment_size_matcher_test.rbc +1658 -0
  52. data/test/paperclip_test.rb +1 -1
  53. data/test/paperclip_test.rbc +7407 -0
  54. data/test/processor_test.rb +1 -1
  55. data/test/processor_test.rbc +314 -0
  56. data/test/storage_test.rb +1 -1
  57. data/test/storage_test.rbc +10294 -0
  58. data/test/style_test.rb +1 -1
  59. data/test/style_test.rbc +3752 -0
  60. data/test/thumbnail_test.rb +1 -1
  61. data/test/thumbnail_test.rbc +6803 -0
  62. data/test/upfile_test.rb +1 -18
  63. data/test/upfile_test.rbc +1635 -0
  64. metadata +77 -26
@@ -41,8 +41,9 @@ module Paperclip
41
41
  # Returns the interpolated URL. Will raise an error if the url itself
42
42
  # contains ":url" to prevent infinite recursion. This interpolation
43
43
  # is used in the default :path to ease default specifications.
44
+ RIGHT_HERE = "#{__FILE__.gsub(%r{^\./}, "")}:#{__LINE__ + 3}"
44
45
  def url attachment, style_name
45
- raise InfiniteInterpolationError if caller.any?{|b| b.index("#{__FILE__}:#{__LINE__ + 1}") }
46
+ raise InfiniteInterpolationError if caller.any?{|b| b.index(RIGHT_HERE) }
46
47
  attachment.url(style_name, false)
47
48
  end
48
49
 
@@ -0,0 +1,2205 @@
1
+ !RBIX
2
+ 0
3
+ x
4
+ M
5
+ 1
6
+ n
7
+ n
8
+ x
9
+ 10
10
+ __script__
11
+ i
12
+ 28
13
+ 99
14
+ 7
15
+ 0
16
+ 65
17
+ 49
18
+ 1
19
+ 2
20
+ 13
21
+ 99
22
+ 12
23
+ 7
24
+ 2
25
+ 12
26
+ 7
27
+ 3
28
+ 12
29
+ 65
30
+ 12
31
+ 49
32
+ 4
33
+ 4
34
+ 15
35
+ 49
36
+ 2
37
+ 0
38
+ 15
39
+ 2
40
+ 11
41
+ I
42
+ 6
43
+ I
44
+ 0
45
+ I
46
+ 0
47
+ I
48
+ 0
49
+ n
50
+ p
51
+ 5
52
+ x
53
+ 9
54
+ Paperclip
55
+ x
56
+ 11
57
+ open_module
58
+ x
59
+ 15
60
+ __module_init__
61
+ M
62
+ 1
63
+ n
64
+ n
65
+ x
66
+ 9
67
+ Paperclip
68
+ i
69
+ 28
70
+ 5
71
+ 66
72
+ 99
73
+ 7
74
+ 0
75
+ 65
76
+ 49
77
+ 1
78
+ 2
79
+ 13
80
+ 99
81
+ 12
82
+ 7
83
+ 2
84
+ 12
85
+ 7
86
+ 3
87
+ 12
88
+ 65
89
+ 12
90
+ 49
91
+ 4
92
+ 4
93
+ 15
94
+ 49
95
+ 2
96
+ 0
97
+ 11
98
+ I
99
+ 6
100
+ I
101
+ 0
102
+ I
103
+ 0
104
+ I
105
+ 0
106
+ n
107
+ p
108
+ 5
109
+ x
110
+ 14
111
+ Interpolations
112
+ x
113
+ 11
114
+ open_module
115
+ x
116
+ 15
117
+ __module_init__
118
+ M
119
+ 1
120
+ n
121
+ n
122
+ x
123
+ 14
124
+ Interpolations
125
+ i
126
+ 288
127
+ 5
128
+ 66
129
+ 5
130
+ 5
131
+ 47
132
+ 49
133
+ 0
134
+ 1
135
+ 15
136
+ 99
137
+ 7
138
+ 1
139
+ 7
140
+ 2
141
+ 65
142
+ 5
143
+ 49
144
+ 3
145
+ 4
146
+ 15
147
+ 99
148
+ 7
149
+ 4
150
+ 7
151
+ 5
152
+ 65
153
+ 5
154
+ 49
155
+ 3
156
+ 4
157
+ 15
158
+ 99
159
+ 7
160
+ 6
161
+ 7
162
+ 7
163
+ 65
164
+ 5
165
+ 49
166
+ 3
167
+ 4
168
+ 15
169
+ 99
170
+ 7
171
+ 8
172
+ 7
173
+ 9
174
+ 65
175
+ 5
176
+ 49
177
+ 3
178
+ 4
179
+ 15
180
+ 99
181
+ 7
182
+ 10
183
+ 7
184
+ 11
185
+ 65
186
+ 67
187
+ 49
188
+ 12
189
+ 0
190
+ 49
191
+ 13
192
+ 4
193
+ 15
194
+ 65
195
+ 7
196
+ 14
197
+ 65
198
+ 49
199
+ 15
200
+ 0
201
+ 7
202
+ 16
203
+ 13
204
+ 70
205
+ 9
206
+ 92
207
+ 15
208
+ 44
209
+ 43
210
+ 17
211
+ 7
212
+ 18
213
+ 78
214
+ 49
215
+ 19
216
+ 2
217
+ 6
218
+ 16
219
+ 7
220
+ 20
221
+ 64
222
+ 49
223
+ 21
224
+ 2
225
+ 47
226
+ 49
227
+ 22
228
+ 0
229
+ 7
230
+ 23
231
+ 4
232
+ 44
233
+ 4
234
+ 3
235
+ 81
236
+ 24
237
+ 47
238
+ 49
239
+ 22
240
+ 0
241
+ 63
242
+ 3
243
+ 49
244
+ 25
245
+ 2
246
+ 15
247
+ 99
248
+ 7
249
+ 26
250
+ 7
251
+ 27
252
+ 65
253
+ 67
254
+ 49
255
+ 12
256
+ 0
257
+ 49
258
+ 13
259
+ 4
260
+ 15
261
+ 99
262
+ 7
263
+ 28
264
+ 7
265
+ 29
266
+ 65
267
+ 67
268
+ 49
269
+ 12
270
+ 0
271
+ 49
272
+ 13
273
+ 4
274
+ 15
275
+ 99
276
+ 7
277
+ 30
278
+ 7
279
+ 31
280
+ 65
281
+ 67
282
+ 49
283
+ 12
284
+ 0
285
+ 49
286
+ 13
287
+ 4
288
+ 15
289
+ 99
290
+ 7
291
+ 32
292
+ 7
293
+ 33
294
+ 65
295
+ 67
296
+ 49
297
+ 12
298
+ 0
299
+ 49
300
+ 13
301
+ 4
302
+ 15
303
+ 99
304
+ 7
305
+ 34
306
+ 7
307
+ 35
308
+ 65
309
+ 67
310
+ 49
311
+ 12
312
+ 0
313
+ 49
314
+ 13
315
+ 4
316
+ 15
317
+ 99
318
+ 7
319
+ 36
320
+ 7
321
+ 37
322
+ 65
323
+ 67
324
+ 49
325
+ 12
326
+ 0
327
+ 49
328
+ 13
329
+ 4
330
+ 15
331
+ 99
332
+ 7
333
+ 38
334
+ 7
335
+ 39
336
+ 65
337
+ 67
338
+ 49
339
+ 12
340
+ 0
341
+ 49
342
+ 13
343
+ 4
344
+ 15
345
+ 99
346
+ 7
347
+ 40
348
+ 7
349
+ 41
350
+ 65
351
+ 67
352
+ 49
353
+ 12
354
+ 0
355
+ 49
356
+ 13
357
+ 4
358
+ 15
359
+ 99
360
+ 7
361
+ 42
362
+ 7
363
+ 43
364
+ 65
365
+ 67
366
+ 49
367
+ 12
368
+ 0
369
+ 49
370
+ 13
371
+ 4
372
+ 15
373
+ 99
374
+ 7
375
+ 44
376
+ 7
377
+ 45
378
+ 65
379
+ 67
380
+ 49
381
+ 12
382
+ 0
383
+ 49
384
+ 13
385
+ 4
386
+ 15
387
+ 99
388
+ 7
389
+ 46
390
+ 7
391
+ 47
392
+ 65
393
+ 67
394
+ 49
395
+ 12
396
+ 0
397
+ 49
398
+ 13
399
+ 4
400
+ 15
401
+ 99
402
+ 7
403
+ 48
404
+ 7
405
+ 49
406
+ 65
407
+ 67
408
+ 49
409
+ 12
410
+ 0
411
+ 49
412
+ 13
413
+ 4
414
+ 11
415
+ I
416
+ 6
417
+ I
418
+ 0
419
+ I
420
+ 0
421
+ I
422
+ 0
423
+ n
424
+ p
425
+ 50
426
+ x
427
+ 6
428
+ extend
429
+ x
430
+ 3
431
+ []=
432
+ M
433
+ 1
434
+ n
435
+ n
436
+ x
437
+ 3
438
+ []=
439
+ i
440
+ 21
441
+ 5
442
+ 20
443
+ 0
444
+ 20
445
+ 1
446
+ 13
447
+ 70
448
+ 10
449
+ 16
450
+ 44
451
+ 43
452
+ 0
453
+ 12
454
+ 49
455
+ 1
456
+ 1
457
+ 47
458
+ 50
459
+ 2
460
+ 1
461
+ 11
462
+ I
463
+ 6
464
+ I
465
+ 2
466
+ I
467
+ 2
468
+ I
469
+ 2
470
+ n
471
+ p
472
+ 3
473
+ x
474
+ 4
475
+ Proc
476
+ x
477
+ 14
478
+ __from_block__
479
+ x
480
+ 13
481
+ define_method
482
+ p
483
+ 5
484
+ I
485
+ 0
486
+ I
487
+ b
488
+ I
489
+ 0
490
+ I
491
+ c
492
+ I
493
+ 15
494
+ x
495
+ 67
496
+ /Users/jyurek/Development/paperclip/lib/paperclip/interpolations.rb
497
+ p
498
+ 2
499
+ x
500
+ 4
501
+ name
502
+ x
503
+ 5
504
+ block
505
+ x
506
+ 13
507
+ attach_method
508
+ x
509
+ 2
510
+ []
511
+ M
512
+ 1
513
+ n
514
+ n
515
+ x
516
+ 2
517
+ []
518
+ i
519
+ 8
520
+ 5
521
+ 20
522
+ 0
523
+ 47
524
+ 49
525
+ 0
526
+ 1
527
+ 11
528
+ I
529
+ 3
530
+ I
531
+ 1
532
+ I
533
+ 1
534
+ I
535
+ 1
536
+ n
537
+ p
538
+ 1
539
+ x
540
+ 6
541
+ method
542
+ p
543
+ 5
544
+ I
545
+ 0
546
+ I
547
+ 11
548
+ I
549
+ 0
550
+ I
551
+ 12
552
+ I
553
+ 8
554
+ x
555
+ 67
556
+ /Users/jyurek/Development/paperclip/lib/paperclip/interpolations.rb
557
+ p
558
+ 1
559
+ x
560
+ 4
561
+ name
562
+ x
563
+ 3
564
+ all
565
+ M
566
+ 1
567
+ n
568
+ n
569
+ x
570
+ 3
571
+ all
572
+ i
573
+ 9
574
+ 5
575
+ 3
576
+ 49
577
+ 0
578
+ 1
579
+ 49
580
+ 1
581
+ 0
582
+ 11
583
+ I
584
+ 2
585
+ I
586
+ 0
587
+ I
588
+ 0
589
+ I
590
+ 0
591
+ n
592
+ p
593
+ 2
594
+ x
595
+ 16
596
+ instance_methods
597
+ x
598
+ 4
599
+ sort
600
+ p
601
+ 5
602
+ I
603
+ 0
604
+ I
605
+ 16
606
+ I
607
+ 0
608
+ I
609
+ 17
610
+ I
611
+ 9
612
+ x
613
+ 67
614
+ /Users/jyurek/Development/paperclip/lib/paperclip/interpolations.rb
615
+ p
616
+ 0
617
+ x
618
+ 11
619
+ interpolate
620
+ M
621
+ 1
622
+ n
623
+ n
624
+ x
625
+ 11
626
+ interpolate
627
+ i
628
+ 17
629
+ 5
630
+ 48
631
+ 0
632
+ 49
633
+ 1
634
+ 0
635
+ 20
636
+ 0
637
+ 49
638
+ 2
639
+ 0
640
+ 56
641
+ 3
642
+ 50
643
+ 4
644
+ 1
645
+ 11
646
+ I
647
+ 5
648
+ I
649
+ 2
650
+ I
651
+ 1
652
+ I
653
+ 1
654
+ I
655
+ 1
656
+ p
657
+ 5
658
+ x
659
+ 3
660
+ all
661
+ x
662
+ 7
663
+ reverse
664
+ x
665
+ 3
666
+ dup
667
+ M
668
+ 1
669
+ p
670
+ 2
671
+ x
672
+ 9
673
+ for_block
674
+ t
675
+ n
676
+ x
677
+ 11
678
+ interpolate
679
+ i
680
+ 35
681
+ 58
682
+ 37
683
+ 19
684
+ 0
685
+ 15
686
+ 37
687
+ 19
688
+ 1
689
+ 15
690
+ 15
691
+ 20
692
+ 0
693
+ 44
694
+ 43
695
+ 0
696
+ 7
697
+ 1
698
+ 20
699
+ 1
700
+ 47
701
+ 49
702
+ 2
703
+ 0
704
+ 63
705
+ 2
706
+ 78
707
+ 49
708
+ 3
709
+ 2
710
+ 56
711
+ 4
712
+ 50
713
+ 5
714
+ 1
715
+ 11
716
+ I
717
+ 7
718
+ I
719
+ 2
720
+ I
721
+ 2
722
+ I
723
+ 2
724
+ n
725
+ p
726
+ 6
727
+ x
728
+ 6
729
+ Regexp
730
+ s
731
+ 1
732
+ :
733
+ x
734
+ 4
735
+ to_s
736
+ x
737
+ 3
738
+ new
739
+ M
740
+ 1
741
+ p
742
+ 2
743
+ x
744
+ 9
745
+ for_block
746
+ t
747
+ n
748
+ x
749
+ 11
750
+ interpolate
751
+ i
752
+ 18
753
+ 57
754
+ 19
755
+ 0
756
+ 15
757
+ 5
758
+ 21
759
+ 1
760
+ 1
761
+ 21
762
+ 2
763
+ 1
764
+ 36
765
+ 1
766
+ 47
767
+ 51
768
+ 0
769
+ 1
770
+ 11
771
+ I
772
+ 6
773
+ I
774
+ 1
775
+ I
776
+ 1
777
+ I
778
+ 1
779
+ n
780
+ p
781
+ 1
782
+ x
783
+ 4
784
+ send
785
+ p
786
+ 5
787
+ I
788
+ 0
789
+ I
790
+ 1e
791
+ I
792
+ 4
793
+ I
794
+ 1f
795
+ I
796
+ 12
797
+ x
798
+ 67
799
+ /Users/jyurek/Development/paperclip/lib/paperclip/interpolations.rb
800
+ p
801
+ 1
802
+ x
803
+ 5
804
+ match
805
+ x
806
+ 4
807
+ gsub
808
+ p
809
+ 5
810
+ I
811
+ 0
812
+ I
813
+ 1d
814
+ I
815
+ a
816
+ I
817
+ 1e
818
+ I
819
+ 23
820
+ x
821
+ 67
822
+ /Users/jyurek/Development/paperclip/lib/paperclip/interpolations.rb
823
+ p
824
+ 2
825
+ x
826
+ 6
827
+ result
828
+ x
829
+ 3
830
+ tag
831
+ x
832
+ 6
833
+ inject
834
+ p
835
+ 5
836
+ I
837
+ 0
838
+ I
839
+ 1c
840
+ I
841
+ 0
842
+ I
843
+ 1d
844
+ I
845
+ 11
846
+ x
847
+ 67
848
+ /Users/jyurek/Development/paperclip/lib/paperclip/interpolations.rb
849
+ p
850
+ 2
851
+ x
852
+ 7
853
+ pattern
854
+ x
855
+ 4
856
+ args
857
+ x
858
+ 8
859
+ filename
860
+ M
861
+ 1
862
+ n
863
+ n
864
+ x
865
+ 8
866
+ filename
867
+ i
868
+ 31
869
+ 5
870
+ 20
871
+ 0
872
+ 20
873
+ 1
874
+ 47
875
+ 49
876
+ 0
877
+ 2
878
+ 47
879
+ 49
880
+ 1
881
+ 0
882
+ 7
883
+ 2
884
+ 5
885
+ 20
886
+ 0
887
+ 20
888
+ 1
889
+ 47
890
+ 49
891
+ 3
892
+ 2
893
+ 47
894
+ 49
895
+ 1
896
+ 0
897
+ 63
898
+ 3
899
+ 11
900
+ I
901
+ 7
902
+ I
903
+ 2
904
+ I
905
+ 2
906
+ I
907
+ 2
908
+ n
909
+ p
910
+ 4
911
+ x
912
+ 8
913
+ basename
914
+ x
915
+ 4
916
+ to_s
917
+ s
918
+ 1
919
+ .
920
+ x
921
+ 9
922
+ extension
923
+ p
924
+ 5
925
+ I
926
+ 0
927
+ I
928
+ 25
929
+ I
930
+ 0
931
+ I
932
+ 26
933
+ I
934
+ 1f
935
+ x
936
+ 67
937
+ /Users/jyurek/Development/paperclip/lib/paperclip/interpolations.rb
938
+ p
939
+ 2
940
+ x
941
+ 10
942
+ attachment
943
+ x
944
+ 10
945
+ style_name
946
+ x
947
+ 17
948
+ method_visibility
949
+ x
950
+ 15
951
+ add_defn_method
952
+ x
953
+ 10
954
+ RIGHT_HERE
955
+ x
956
+ 11
957
+ active_path
958
+ n
959
+ x
960
+ 6
961
+ Regexp
962
+ s
963
+ 4
964
+ ^\./
965
+ x
966
+ 3
967
+ new
968
+ s
969
+ 0
970
+
971
+ x
972
+ 4
973
+ gsub
974
+ x
975
+ 4
976
+ to_s
977
+ s
978
+ 1
979
+ :
980
+ x
981
+ 1
982
+ +
983
+ x
984
+ 9
985
+ const_set
986
+ x
987
+ 3
988
+ url
989
+ M
990
+ 1
991
+ n
992
+ n
993
+ x
994
+ 3
995
+ url
996
+ i
997
+ 31
998
+ 5
999
+ 48
1000
+ 0
1001
+ 56
1002
+ 1
1003
+ 50
1004
+ 2
1005
+ 0
1006
+ 9
1007
+ 20
1008
+ 5
1009
+ 45
1010
+ 3
1011
+ 4
1012
+ 47
1013
+ 49
1014
+ 5
1015
+ 1
1016
+ 8
1017
+ 21
1018
+ 1
1019
+ 15
1020
+ 20
1021
+ 0
1022
+ 20
1023
+ 1
1024
+ 3
1025
+ 49
1026
+ 6
1027
+ 2
1028
+ 11
1029
+ I
1030
+ 5
1031
+ I
1032
+ 2
1033
+ I
1034
+ 2
1035
+ I
1036
+ 2
1037
+ n
1038
+ p
1039
+ 7
1040
+ x
1041
+ 6
1042
+ caller
1043
+ M
1044
+ 1
1045
+ p
1046
+ 2
1047
+ x
1048
+ 9
1049
+ for_block
1050
+ t
1051
+ n
1052
+ x
1053
+ 3
1054
+ url
1055
+ i
1056
+ 13
1057
+ 57
1058
+ 19
1059
+ 0
1060
+ 15
1061
+ 20
1062
+ 0
1063
+ 45
1064
+ 0
1065
+ 1
1066
+ 49
1067
+ 2
1068
+ 1
1069
+ 11
1070
+ I
1071
+ 4
1072
+ I
1073
+ 1
1074
+ I
1075
+ 1
1076
+ I
1077
+ 1
1078
+ n
1079
+ p
1080
+ 3
1081
+ x
1082
+ 10
1083
+ RIGHT_HERE
1084
+ n
1085
+ x
1086
+ 5
1087
+ index
1088
+ p
1089
+ 3
1090
+ I
1091
+ 0
1092
+ I
1093
+ 2e
1094
+ I
1095
+ d
1096
+ x
1097
+ 67
1098
+ /Users/jyurek/Development/paperclip/lib/paperclip/interpolations.rb
1099
+ p
1100
+ 1
1101
+ x
1102
+ 1
1103
+ b
1104
+ x
1105
+ 4
1106
+ any?
1107
+ x
1108
+ 26
1109
+ InfiniteInterpolationError
1110
+ n
1111
+ x
1112
+ 5
1113
+ raise
1114
+ x
1115
+ 3
1116
+ url
1117
+ p
1118
+ 7
1119
+ I
1120
+ 0
1121
+ I
1122
+ 2d
1123
+ I
1124
+ 0
1125
+ I
1126
+ 2e
1127
+ I
1128
+ 16
1129
+ I
1130
+ 2f
1131
+ I
1132
+ 1f
1133
+ x
1134
+ 67
1135
+ /Users/jyurek/Development/paperclip/lib/paperclip/interpolations.rb
1136
+ p
1137
+ 2
1138
+ x
1139
+ 10
1140
+ attachment
1141
+ x
1142
+ 10
1143
+ style_name
1144
+ x
1145
+ 9
1146
+ timestamp
1147
+ M
1148
+ 1
1149
+ n
1150
+ n
1151
+ x
1152
+ 9
1153
+ timestamp
1154
+ i
1155
+ 11
1156
+ 20
1157
+ 0
1158
+ 7
1159
+ 0
1160
+ 49
1161
+ 1
1162
+ 1
1163
+ 49
1164
+ 2
1165
+ 0
1166
+ 11
1167
+ I
1168
+ 4
1169
+ I
1170
+ 2
1171
+ I
1172
+ 2
1173
+ I
1174
+ 2
1175
+ n
1176
+ p
1177
+ 3
1178
+ x
1179
+ 10
1180
+ updated_at
1181
+ x
1182
+ 13
1183
+ instance_read
1184
+ x
1185
+ 4
1186
+ to_s
1187
+ p
1188
+ 5
1189
+ I
1190
+ 0
1191
+ I
1192
+ 33
1193
+ I
1194
+ 0
1195
+ I
1196
+ 34
1197
+ I
1198
+ b
1199
+ x
1200
+ 67
1201
+ /Users/jyurek/Development/paperclip/lib/paperclip/interpolations.rb
1202
+ p
1203
+ 2
1204
+ x
1205
+ 10
1206
+ attachment
1207
+ x
1208
+ 10
1209
+ style_name
1210
+ x
1211
+ 10
1212
+ rails_root
1213
+ M
1214
+ 1
1215
+ n
1216
+ n
1217
+ x
1218
+ 10
1219
+ rails_root
1220
+ i
1221
+ 7
1222
+ 45
1223
+ 0
1224
+ 1
1225
+ 49
1226
+ 2
1227
+ 0
1228
+ 11
1229
+ I
1230
+ 3
1231
+ I
1232
+ 2
1233
+ I
1234
+ 2
1235
+ I
1236
+ 2
1237
+ n
1238
+ p
1239
+ 3
1240
+ x
1241
+ 5
1242
+ Rails
1243
+ n
1244
+ x
1245
+ 4
1246
+ root
1247
+ p
1248
+ 5
1249
+ I
1250
+ 0
1251
+ I
1252
+ 38
1253
+ I
1254
+ 0
1255
+ I
1256
+ 39
1257
+ I
1258
+ 7
1259
+ x
1260
+ 67
1261
+ /Users/jyurek/Development/paperclip/lib/paperclip/interpolations.rb
1262
+ p
1263
+ 2
1264
+ x
1265
+ 10
1266
+ attachment
1267
+ x
1268
+ 10
1269
+ style_name
1270
+ x
1271
+ 9
1272
+ rails_env
1273
+ M
1274
+ 1
1275
+ n
1276
+ n
1277
+ x
1278
+ 9
1279
+ rails_env
1280
+ i
1281
+ 7
1282
+ 45
1283
+ 0
1284
+ 1
1285
+ 49
1286
+ 2
1287
+ 0
1288
+ 11
1289
+ I
1290
+ 3
1291
+ I
1292
+ 2
1293
+ I
1294
+ 2
1295
+ I
1296
+ 2
1297
+ n
1298
+ p
1299
+ 3
1300
+ x
1301
+ 5
1302
+ Rails
1303
+ n
1304
+ x
1305
+ 3
1306
+ env
1307
+ p
1308
+ 5
1309
+ I
1310
+ 0
1311
+ I
1312
+ 3d
1313
+ I
1314
+ 0
1315
+ I
1316
+ 3e
1317
+ I
1318
+ 7
1319
+ x
1320
+ 67
1321
+ /Users/jyurek/Development/paperclip/lib/paperclip/interpolations.rb
1322
+ p
1323
+ 2
1324
+ x
1325
+ 10
1326
+ attachment
1327
+ x
1328
+ 10
1329
+ style_name
1330
+ x
1331
+ 5
1332
+ class
1333
+ M
1334
+ 1
1335
+ n
1336
+ n
1337
+ x
1338
+ 5
1339
+ class
1340
+ i
1341
+ 59
1342
+ 23
1343
+ 0
1344
+ 10
1345
+ 8
1346
+ 1
1347
+ 19
1348
+ 0
1349
+ 15
1350
+ 23
1351
+ 1
1352
+ 10
1353
+ 16
1354
+ 1
1355
+ 19
1356
+ 1
1357
+ 15
1358
+ 20
1359
+ 0
1360
+ 49
1361
+ 0
1362
+ 0
1363
+ 13
1364
+ 9
1365
+ 30
1366
+ 15
1367
+ 20
1368
+ 1
1369
+ 49
1370
+ 0
1371
+ 0
1372
+ 9
1373
+ 39
1374
+ 54
1375
+ 52
1376
+ 1
1377
+ 0
1378
+ 11
1379
+ 8
1380
+ 40
1381
+ 1
1382
+ 15
1383
+ 20
1384
+ 0
1385
+ 49
1386
+ 2
1387
+ 0
1388
+ 49
1389
+ 1
1390
+ 0
1391
+ 49
1392
+ 3
1393
+ 0
1394
+ 49
1395
+ 4
1396
+ 0
1397
+ 49
1398
+ 5
1399
+ 0
1400
+ 11
1401
+ I
1402
+ 4
1403
+ I
1404
+ 2
1405
+ I
1406
+ 0
1407
+ I
1408
+ 2
1409
+ n
1410
+ p
1411
+ 6
1412
+ x
1413
+ 4
1414
+ nil?
1415
+ x
1416
+ 5
1417
+ class
1418
+ x
1419
+ 8
1420
+ instance
1421
+ x
1422
+ 4
1423
+ to_s
1424
+ x
1425
+ 10
1426
+ underscore
1427
+ x
1428
+ 9
1429
+ pluralize
1430
+ p
1431
+ 7
1432
+ I
1433
+ 0
1434
+ I
1435
+ 45
1436
+ I
1437
+ 10
1438
+ I
1439
+ 46
1440
+ I
1441
+ 29
1442
+ I
1443
+ 47
1444
+ I
1445
+ 3b
1446
+ x
1447
+ 67
1448
+ /Users/jyurek/Development/paperclip/lib/paperclip/interpolations.rb
1449
+ p
1450
+ 2
1451
+ x
1452
+ 10
1453
+ attachment
1454
+ x
1455
+ 10
1456
+ style_name
1457
+ x
1458
+ 8
1459
+ basename
1460
+ M
1461
+ 1
1462
+ n
1463
+ n
1464
+ x
1465
+ 8
1466
+ basename
1467
+ i
1468
+ 38
1469
+ 20
1470
+ 0
1471
+ 49
1472
+ 0
1473
+ 0
1474
+ 44
1475
+ 43
1476
+ 1
1477
+ 45
1478
+ 2
1479
+ 3
1480
+ 20
1481
+ 0
1482
+ 49
1483
+ 0
1484
+ 0
1485
+ 49
1486
+ 4
1487
+ 1
1488
+ 47
1489
+ 49
1490
+ 5
1491
+ 0
1492
+ 7
1493
+ 6
1494
+ 63
1495
+ 2
1496
+ 78
1497
+ 49
1498
+ 7
1499
+ 2
1500
+ 7
1501
+ 8
1502
+ 64
1503
+ 49
1504
+ 9
1505
+ 2
1506
+ 11
1507
+ I
1508
+ 6
1509
+ I
1510
+ 2
1511
+ I
1512
+ 2
1513
+ I
1514
+ 2
1515
+ n
1516
+ p
1517
+ 10
1518
+ x
1519
+ 17
1520
+ original_filename
1521
+ x
1522
+ 6
1523
+ Regexp
1524
+ x
1525
+ 4
1526
+ File
1527
+ n
1528
+ x
1529
+ 7
1530
+ extname
1531
+ x
1532
+ 4
1533
+ to_s
1534
+ s
1535
+ 1
1536
+ $
1537
+ x
1538
+ 3
1539
+ new
1540
+ s
1541
+ 0
1542
+
1543
+ x
1544
+ 4
1545
+ gsub
1546
+ p
1547
+ 5
1548
+ I
1549
+ 0
1550
+ I
1551
+ 4b
1552
+ I
1553
+ 0
1554
+ I
1555
+ 4c
1556
+ I
1557
+ 26
1558
+ x
1559
+ 67
1560
+ /Users/jyurek/Development/paperclip/lib/paperclip/interpolations.rb
1561
+ p
1562
+ 2
1563
+ x
1564
+ 10
1565
+ attachment
1566
+ x
1567
+ 10
1568
+ style_name
1569
+ x
1570
+ 9
1571
+ extension
1572
+ M
1573
+ 1
1574
+ n
1575
+ n
1576
+ x
1577
+ 9
1578
+ extension
1579
+ i
1580
+ 63
1581
+ 20
1582
+ 0
1583
+ 49
1584
+ 0
1585
+ 0
1586
+ 20
1587
+ 1
1588
+ 49
1589
+ 1
1590
+ 1
1591
+ 19
1592
+ 2
1593
+ 13
1594
+ 9
1595
+ 23
1596
+ 15
1597
+ 20
1598
+ 2
1599
+ 7
1600
+ 2
1601
+ 49
1602
+ 1
1603
+ 1
1604
+ 13
1605
+ 10
1606
+ 62
1607
+ 15
1608
+ 45
1609
+ 3
1610
+ 4
1611
+ 20
1612
+ 0
1613
+ 49
1614
+ 5
1615
+ 0
1616
+ 49
1617
+ 6
1618
+ 1
1619
+ 7
1620
+ 7
1621
+ 13
1622
+ 70
1623
+ 9
1624
+ 56
1625
+ 15
1626
+ 44
1627
+ 43
1628
+ 8
1629
+ 7
1630
+ 9
1631
+ 78
1632
+ 49
1633
+ 10
1634
+ 2
1635
+ 6
1636
+ 7
1637
+ 7
1638
+ 11
1639
+ 64
1640
+ 49
1641
+ 12
1642
+ 2
1643
+ 11
1644
+ I
1645
+ 7
1646
+ I
1647
+ 3
1648
+ I
1649
+ 2
1650
+ I
1651
+ 2
1652
+ n
1653
+ p
1654
+ 13
1655
+ x
1656
+ 6
1657
+ styles
1658
+ x
1659
+ 2
1660
+ []
1661
+ x
1662
+ 6
1663
+ format
1664
+ x
1665
+ 4
1666
+ File
1667
+ n
1668
+ x
1669
+ 17
1670
+ original_filename
1671
+ x
1672
+ 7
1673
+ extname
1674
+ n
1675
+ x
1676
+ 6
1677
+ Regexp
1678
+ s
1679
+ 4
1680
+ ^\.+
1681
+ x
1682
+ 3
1683
+ new
1684
+ s
1685
+ 0
1686
+
1687
+ x
1688
+ 4
1689
+ gsub
1690
+ p
1691
+ 7
1692
+ I
1693
+ 0
1694
+ I
1695
+ 52
1696
+ I
1697
+ 0
1698
+ I
1699
+ 53
1700
+ I
1701
+ 1b
1702
+ I
1703
+ 54
1704
+ I
1705
+ 3f
1706
+ x
1707
+ 67
1708
+ /Users/jyurek/Development/paperclip/lib/paperclip/interpolations.rb
1709
+ p
1710
+ 3
1711
+ x
1712
+ 10
1713
+ attachment
1714
+ x
1715
+ 10
1716
+ style_name
1717
+ x
1718
+ 5
1719
+ style
1720
+ x
1721
+ 2
1722
+ id
1723
+ M
1724
+ 1
1725
+ n
1726
+ n
1727
+ x
1728
+ 2
1729
+ id
1730
+ i
1731
+ 9
1732
+ 20
1733
+ 0
1734
+ 49
1735
+ 0
1736
+ 0
1737
+ 49
1738
+ 1
1739
+ 0
1740
+ 11
1741
+ I
1742
+ 3
1743
+ I
1744
+ 2
1745
+ I
1746
+ 2
1747
+ I
1748
+ 2
1749
+ n
1750
+ p
1751
+ 2
1752
+ x
1753
+ 8
1754
+ instance
1755
+ x
1756
+ 2
1757
+ id
1758
+ p
1759
+ 5
1760
+ I
1761
+ 0
1762
+ I
1763
+ 58
1764
+ I
1765
+ 0
1766
+ I
1767
+ 59
1768
+ I
1769
+ 9
1770
+ x
1771
+ 67
1772
+ /Users/jyurek/Development/paperclip/lib/paperclip/interpolations.rb
1773
+ p
1774
+ 2
1775
+ x
1776
+ 10
1777
+ attachment
1778
+ x
1779
+ 10
1780
+ style_name
1781
+ x
1782
+ 11
1783
+ fingerprint
1784
+ M
1785
+ 1
1786
+ n
1787
+ n
1788
+ x
1789
+ 11
1790
+ fingerprint
1791
+ i
1792
+ 6
1793
+ 20
1794
+ 0
1795
+ 49
1796
+ 0
1797
+ 0
1798
+ 11
1799
+ I
1800
+ 3
1801
+ I
1802
+ 2
1803
+ I
1804
+ 2
1805
+ I
1806
+ 2
1807
+ n
1808
+ p
1809
+ 1
1810
+ x
1811
+ 11
1812
+ fingerprint
1813
+ p
1814
+ 5
1815
+ I
1816
+ 0
1817
+ I
1818
+ 5d
1819
+ I
1820
+ 0
1821
+ I
1822
+ 5e
1823
+ I
1824
+ 6
1825
+ x
1826
+ 67
1827
+ /Users/jyurek/Development/paperclip/lib/paperclip/interpolations.rb
1828
+ p
1829
+ 2
1830
+ x
1831
+ 10
1832
+ attachment
1833
+ x
1834
+ 10
1835
+ style_name
1836
+ x
1837
+ 12
1838
+ id_partition
1839
+ M
1840
+ 1
1841
+ n
1842
+ n
1843
+ x
1844
+ 12
1845
+ id_partition
1846
+ i
1847
+ 42
1848
+ 7
1849
+ 0
1850
+ 64
1851
+ 20
1852
+ 0
1853
+ 49
1854
+ 1
1855
+ 0
1856
+ 49
1857
+ 2
1858
+ 0
1859
+ 49
1860
+ 3
1861
+ 1
1862
+ 7
1863
+ 4
1864
+ 13
1865
+ 70
1866
+ 9
1867
+ 32
1868
+ 15
1869
+ 44
1870
+ 43
1871
+ 5
1872
+ 7
1873
+ 6
1874
+ 78
1875
+ 49
1876
+ 7
1877
+ 2
1878
+ 6
1879
+ 4
1880
+ 49
1881
+ 8
1882
+ 1
1883
+ 7
1884
+ 9
1885
+ 64
1886
+ 49
1887
+ 10
1888
+ 1
1889
+ 11
1890
+ I
1891
+ 6
1892
+ I
1893
+ 2
1894
+ I
1895
+ 2
1896
+ I
1897
+ 2
1898
+ n
1899
+ p
1900
+ 11
1901
+ s
1902
+ 4
1903
+ %09d
1904
+ x
1905
+ 8
1906
+ instance
1907
+ x
1908
+ 2
1909
+ id
1910
+ x
1911
+ 1
1912
+ %
1913
+ n
1914
+ x
1915
+ 6
1916
+ Regexp
1917
+ s
1918
+ 5
1919
+ \d{3}
1920
+ x
1921
+ 3
1922
+ new
1923
+ x
1924
+ 4
1925
+ scan
1926
+ s
1927
+ 1
1928
+ /
1929
+ x
1930
+ 4
1931
+ join
1932
+ p
1933
+ 5
1934
+ I
1935
+ 0
1936
+ I
1937
+ 63
1938
+ I
1939
+ 0
1940
+ I
1941
+ 64
1942
+ I
1943
+ 2a
1944
+ x
1945
+ 67
1946
+ /Users/jyurek/Development/paperclip/lib/paperclip/interpolations.rb
1947
+ p
1948
+ 2
1949
+ x
1950
+ 10
1951
+ attachment
1952
+ x
1953
+ 10
1954
+ style_name
1955
+ x
1956
+ 10
1957
+ attachment
1958
+ M
1959
+ 1
1960
+ n
1961
+ n
1962
+ x
1963
+ 10
1964
+ attachment
1965
+ i
1966
+ 15
1967
+ 20
1968
+ 0
1969
+ 49
1970
+ 0
1971
+ 0
1972
+ 49
1973
+ 1
1974
+ 0
1975
+ 49
1976
+ 2
1977
+ 0
1978
+ 49
1979
+ 3
1980
+ 0
1981
+ 11
1982
+ I
1983
+ 3
1984
+ I
1985
+ 2
1986
+ I
1987
+ 2
1988
+ I
1989
+ 2
1990
+ n
1991
+ p
1992
+ 4
1993
+ x
1994
+ 4
1995
+ name
1996
+ x
1997
+ 4
1998
+ to_s
1999
+ x
2000
+ 8
2001
+ downcase
2002
+ x
2003
+ 9
2004
+ pluralize
2005
+ p
2006
+ 5
2007
+ I
2008
+ 0
2009
+ I
2010
+ 69
2011
+ I
2012
+ 0
2013
+ I
2014
+ 6a
2015
+ I
2016
+ f
2017
+ x
2018
+ 67
2019
+ /Users/jyurek/Development/paperclip/lib/paperclip/interpolations.rb
2020
+ p
2021
+ 2
2022
+ x
2023
+ 10
2024
+ attachment
2025
+ x
2026
+ 10
2027
+ style_name
2028
+ x
2029
+ 5
2030
+ style
2031
+ M
2032
+ 1
2033
+ n
2034
+ n
2035
+ x
2036
+ 5
2037
+ style
2038
+ i
2039
+ 12
2040
+ 20
2041
+ 1
2042
+ 13
2043
+ 10
2044
+ 11
2045
+ 15
2046
+ 20
2047
+ 0
2048
+ 49
2049
+ 0
2050
+ 0
2051
+ 11
2052
+ I
2053
+ 4
2054
+ I
2055
+ 2
2056
+ I
2057
+ 2
2058
+ I
2059
+ 2
2060
+ n
2061
+ p
2062
+ 1
2063
+ x
2064
+ 13
2065
+ default_style
2066
+ p
2067
+ 5
2068
+ I
2069
+ 0
2070
+ I
2071
+ 6e
2072
+ I
2073
+ 0
2074
+ I
2075
+ 6f
2076
+ I
2077
+ c
2078
+ x
2079
+ 67
2080
+ /Users/jyurek/Development/paperclip/lib/paperclip/interpolations.rb
2081
+ p
2082
+ 2
2083
+ x
2084
+ 10
2085
+ attachment
2086
+ x
2087
+ 10
2088
+ style_name
2089
+ p
2090
+ 39
2091
+ I
2092
+ 2
2093
+ I
2094
+ 7
2095
+ I
2096
+ 9
2097
+ I
2098
+ b
2099
+ I
2100
+ 14
2101
+ I
2102
+ 11
2103
+ I
2104
+ 1f
2105
+ I
2106
+ 16
2107
+ I
2108
+ 2a
2109
+ I
2110
+ 1c
2111
+ I
2112
+ 35
2113
+ I
2114
+ 25
2115
+ I
2116
+ 43
2117
+ I
2118
+ 2c
2119
+ I
2120
+ 78
2121
+ I
2122
+ 2d
2123
+ I
2124
+ 86
2125
+ I
2126
+ 33
2127
+ I
2128
+ 94
2129
+ I
2130
+ 38
2131
+ I
2132
+ a2
2133
+ I
2134
+ 3d
2135
+ I
2136
+ b0
2137
+ I
2138
+ 45
2139
+ I
2140
+ be
2141
+ I
2142
+ 4b
2143
+ I
2144
+ cc
2145
+ I
2146
+ 52
2147
+ I
2148
+ da
2149
+ I
2150
+ 58
2151
+ I
2152
+ e8
2153
+ I
2154
+ 5d
2155
+ I
2156
+ f6
2157
+ I
2158
+ 63
2159
+ I
2160
+ 104
2161
+ I
2162
+ 69
2163
+ I
2164
+ 112
2165
+ I
2166
+ 6e
2167
+ I
2168
+ 120
2169
+ x
2170
+ 67
2171
+ /Users/jyurek/Development/paperclip/lib/paperclip/interpolations.rb
2172
+ p
2173
+ 0
2174
+ x
2175
+ 13
2176
+ attach_method
2177
+ p
2178
+ 3
2179
+ I
2180
+ 2
2181
+ I
2182
+ 6
2183
+ I
2184
+ 1c
2185
+ x
2186
+ 67
2187
+ /Users/jyurek/Development/paperclip/lib/paperclip/interpolations.rb
2188
+ p
2189
+ 0
2190
+ x
2191
+ 13
2192
+ attach_method
2193
+ p
2194
+ 3
2195
+ I
2196
+ 0
2197
+ I
2198
+ 1
2199
+ I
2200
+ 1c
2201
+ x
2202
+ 67
2203
+ /Users/jyurek/Development/paperclip/lib/paperclip/interpolations.rb
2204
+ p
2205
+ 0