kt-paperclip 6.4.0 → 7.2.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/FUNDING.yml +1 -1
- data/.hound.yml +3 -1057
- data/.rubocop.yml +1059 -1
- data/.travis.yml +5 -5
- data/Appraisals +6 -0
- data/CONTRIBUTING.md +4 -5
- data/Gemfile +2 -2
- data/NEWS +32 -0
- data/README.md +8 -7
- data/features/step_definitions/attachment_steps.rb +11 -1
- data/gemfiles/4.2.gemfile +1 -1
- data/gemfiles/5.0.gemfile +1 -1
- data/gemfiles/5.1.gemfile +1 -1
- data/gemfiles/5.2.gemfile +1 -1
- data/gemfiles/6.0.gemfile +1 -1
- data/gemfiles/6.1.gemfile +21 -0
- data/gemfiles/7.0.gemfile +21 -0
- data/lib/paperclip/attachment.rb +1 -1
- data/lib/paperclip/content_type_detector.rb +10 -5
- data/lib/paperclip/geometry_detector_factory.rb +1 -1
- data/lib/paperclip/glue.rb +3 -2
- data/lib/paperclip/interpolations.rb +6 -2
- data/lib/paperclip/io_adapters/uri_adapter.rb +13 -3
- data/lib/paperclip/locales/gd.yml +20 -0
- data/lib/paperclip/media_type_spoof_detector.rb +4 -1
- data/lib/paperclip/schema.rb +1 -1
- data/lib/paperclip/storage/filesystem.rb +1 -1
- data/lib/paperclip/storage/fog.rb +1 -1
- data/lib/paperclip/storage/s3.rb +18 -4
- data/lib/paperclip/validators/attachment_content_type_validator.rb +1 -1
- data/lib/paperclip/validators/attachment_file_name_validator.rb +2 -2
- data/lib/paperclip/validators/attachment_presence_validator.rb +1 -1
- data/lib/paperclip/validators/attachment_size_validator.rb +3 -2
- data/lib/paperclip/version.rb +1 -1
- data/lib/paperclip.rb +1 -2
- data/paperclip.gemspec +3 -3
- data/spec/paperclip/content_type_detector_spec.rb +7 -0
- data/spec/paperclip/geometry_detector_spec.rb +9 -0
- data/spec/paperclip/geometry_spec.rb +16 -4
- data/spec/paperclip/glue_spec.rb +21 -0
- data/spec/paperclip/io_adapters/abstract_adapter_spec.rb +1 -1
- data/spec/paperclip/io_adapters/file_adapter_spec.rb +1 -1
- data/spec/paperclip/io_adapters/uri_adapter_spec.rb +13 -3
- data/spec/paperclip/media_type_spoof_detector_spec.rb +10 -4
- data/spec/paperclip/paperclip_spec.rb +1 -1
- data/spec/paperclip/storage/filesystem_spec.rb +23 -0
- data/spec/paperclip/storage/fog_spec.rb +46 -0
- data/spec/paperclip/storage/s3_spec.rb +179 -47
- data/spec/paperclip/validators_spec.rb +21 -6
- data/spec/support/fixtures/sample.xlsm +0 -0
- metadata +121 -11
@@ -1,6 +1,11 @@
|
|
1
1
|
require "spec_helper"
|
2
2
|
|
3
3
|
describe Paperclip::Validators do
|
4
|
+
# required to support a range of rubies
|
5
|
+
def error_attribute_names(error)
|
6
|
+
error.try(:attribute_names) || error.keys
|
7
|
+
end
|
8
|
+
|
4
9
|
context "using the helper" do
|
5
10
|
before do
|
6
11
|
rebuild_class
|
@@ -22,7 +27,9 @@ describe Paperclip::Validators do
|
|
22
27
|
it "prevents you from attaching a file that violates that validation" do
|
23
28
|
Dummy.class_eval { validate(:name) { raise "DO NOT RUN THIS" } }
|
24
29
|
dummy = Dummy.new(avatar: File.new(fixture_file("12k.png")))
|
25
|
-
expect(dummy.errors
|
30
|
+
expect(error_attribute_names(dummy.errors)).to match_array(
|
31
|
+
%i[avatar_content_type avatar avatar_file_size]
|
32
|
+
)
|
26
33
|
assert_raises(RuntimeError) { dummy.valid? }
|
27
34
|
end
|
28
35
|
end
|
@@ -47,21 +54,27 @@ describe Paperclip::Validators do
|
|
47
54
|
it "prevents you from attaching a file that violates all of these validations" do
|
48
55
|
Dummy.class_eval { validate(:name) { raise "DO NOT RUN THIS" } }
|
49
56
|
dummy = Dummy.new(avatar: File.new(fixture_file("spaced file.png")))
|
50
|
-
expect(dummy.errors
|
57
|
+
expect(error_attribute_names(dummy.errors)).to match_array(
|
58
|
+
%i[avatar avatar_file_name]
|
59
|
+
)
|
51
60
|
assert_raises(RuntimeError) { dummy.valid? }
|
52
61
|
end
|
53
62
|
|
54
63
|
it "prevents you from attaching a file that violates only first of these validations" do
|
55
64
|
Dummy.class_eval { validate(:name) { raise "DO NOT RUN THIS" } }
|
56
65
|
dummy = Dummy.new(avatar: File.new(fixture_file("5k.png")))
|
57
|
-
expect(dummy.errors
|
66
|
+
expect(error_attribute_names(dummy.errors)).to match_array(
|
67
|
+
%i[avatar avatar_file_name]
|
68
|
+
)
|
58
69
|
assert_raises(RuntimeError) { dummy.valid? }
|
59
70
|
end
|
60
71
|
|
61
72
|
it "prevents you from attaching a file that violates only second of these validations" do
|
62
73
|
Dummy.class_eval { validate(:name) { raise "DO NOT RUN THIS" } }
|
63
74
|
dummy = Dummy.new(avatar: File.new(fixture_file("spaced file.jpg")))
|
64
|
-
expect(dummy.errors
|
75
|
+
expect(error_attribute_names(dummy.errors)).to match_array(
|
76
|
+
%i[avatar avatar_file_name]
|
77
|
+
)
|
65
78
|
assert_raises(RuntimeError) { dummy.valid? }
|
66
79
|
end
|
67
80
|
|
@@ -88,7 +101,9 @@ describe Paperclip::Validators do
|
|
88
101
|
end
|
89
102
|
end
|
90
103
|
dummy = Dummy.new(avatar: File.new(fixture_file("12k.png")))
|
91
|
-
expect(dummy.errors
|
104
|
+
expect(error_attribute_names(dummy.errors)).to match_array(
|
105
|
+
%i[avatar_content_type avatar avatar_file_size]
|
106
|
+
)
|
92
107
|
end
|
93
108
|
|
94
109
|
it "does not validate attachment if title is not present" do
|
@@ -98,7 +113,7 @@ describe Paperclip::Validators do
|
|
98
113
|
end
|
99
114
|
end
|
100
115
|
dummy = Dummy.new(avatar: File.new(fixture_file("12k.png")))
|
101
|
-
assert_equal [], dummy.errors
|
116
|
+
assert_equal [], error_attribute_names(dummy.errors)
|
102
117
|
end
|
103
118
|
end
|
104
119
|
|
Binary file
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: kt-paperclip
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 7.2.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Surendra Singhi
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2023-09-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activemodel
|
@@ -53,19 +53,19 @@ dependencies:
|
|
53
53
|
- !ruby/object:Gem::Version
|
54
54
|
version: '0'
|
55
55
|
- !ruby/object:Gem::Dependency
|
56
|
-
name:
|
56
|
+
name: marcel
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
58
58
|
requirements:
|
59
59
|
- - "~>"
|
60
60
|
- !ruby/object:Gem::Version
|
61
|
-
version: 0.
|
61
|
+
version: 1.0.1
|
62
62
|
type: :runtime
|
63
63
|
prerelease: false
|
64
64
|
version_requirements: !ruby/object:Gem::Requirement
|
65
65
|
requirements:
|
66
66
|
- - "~>"
|
67
67
|
- !ruby/object:Gem::Version
|
68
|
-
version: 0.
|
68
|
+
version: 1.0.1
|
69
69
|
- !ruby/object:Gem::Dependency
|
70
70
|
name: terrapin
|
71
71
|
requirement: !ruby/object:Gem::Requirement
|
@@ -393,6 +393,8 @@ files:
|
|
393
393
|
- gemfiles/5.1.gemfile
|
394
394
|
- gemfiles/5.2.gemfile
|
395
395
|
- gemfiles/6.0.gemfile
|
396
|
+
- gemfiles/6.1.gemfile
|
397
|
+
- gemfiles/7.0.gemfile
|
396
398
|
- lib/generators/paperclip/USAGE
|
397
399
|
- lib/generators/paperclip/paperclip_generator.rb
|
398
400
|
- lib/generators/paperclip/templates/paperclip_migration.rb.erb
|
@@ -426,6 +428,7 @@ files:
|
|
426
428
|
- lib/paperclip/io_adapters/uploaded_file_adapter.rb
|
427
429
|
- lib/paperclip/io_adapters/uri_adapter.rb
|
428
430
|
- lib/paperclip/locales/en.yml
|
431
|
+
- lib/paperclip/locales/gd.yml
|
429
432
|
- lib/paperclip/logger.rb
|
430
433
|
- lib/paperclip/matchers.rb
|
431
434
|
- lib/paperclip/matchers/have_attached_file_matcher.rb
|
@@ -532,6 +535,7 @@ files:
|
|
532
535
|
- spec/support/fixtures/fog.yml
|
533
536
|
- spec/support/fixtures/rotated.jpg
|
534
537
|
- spec/support/fixtures/s3.yml
|
538
|
+
- spec/support/fixtures/sample.xlsm
|
535
539
|
- spec/support/fixtures/spaced file.jpg
|
536
540
|
- spec/support/fixtures/spaced file.png
|
537
541
|
- spec/support/fixtures/text.txt
|
@@ -547,7 +551,7 @@ files:
|
|
547
551
|
- spec/support/reporting.rb
|
548
552
|
- spec/support/test_data.rb
|
549
553
|
- spec/support/version_helper.rb
|
550
|
-
homepage: https://github.com/kreeti/paperclip
|
554
|
+
homepage: https://github.com/kreeti/kt-paperclip
|
551
555
|
licenses:
|
552
556
|
- MIT
|
553
557
|
metadata: {}
|
@@ -576,7 +580,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
576
580
|
requirements:
|
577
581
|
- - ">="
|
578
582
|
- !ruby/object:Gem::Version
|
579
|
-
version: 2.
|
583
|
+
version: 2.3.0
|
580
584
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
581
585
|
requirements:
|
582
586
|
- - ">="
|
@@ -584,8 +588,114 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
584
588
|
version: '0'
|
585
589
|
requirements:
|
586
590
|
- ImageMagick
|
587
|
-
rubygems_version: 3.
|
588
|
-
signing_key:
|
591
|
+
rubygems_version: 3.1.6
|
592
|
+
signing_key:
|
589
593
|
specification_version: 4
|
590
594
|
summary: File attachments as attributes for ActiveRecord
|
591
|
-
test_files:
|
595
|
+
test_files:
|
596
|
+
- features/basic_integration.feature
|
597
|
+
- features/migration.feature
|
598
|
+
- features/rake_tasks.feature
|
599
|
+
- features/step_definitions/attachment_steps.rb
|
600
|
+
- features/step_definitions/html_steps.rb
|
601
|
+
- features/step_definitions/rails_steps.rb
|
602
|
+
- features/step_definitions/s3_steps.rb
|
603
|
+
- features/step_definitions/web_steps.rb
|
604
|
+
- features/support/env.rb
|
605
|
+
- features/support/fakeweb.rb
|
606
|
+
- features/support/file_helpers.rb
|
607
|
+
- features/support/fixtures/boot_config.txt
|
608
|
+
- features/support/fixtures/gemfile.txt
|
609
|
+
- features/support/fixtures/preinitializer.txt
|
610
|
+
- features/support/paths.rb
|
611
|
+
- features/support/rails.rb
|
612
|
+
- features/support/selectors.rb
|
613
|
+
- spec/database.yml
|
614
|
+
- spec/paperclip/attachment_definitions_spec.rb
|
615
|
+
- spec/paperclip/attachment_processing_spec.rb
|
616
|
+
- spec/paperclip/attachment_registry_spec.rb
|
617
|
+
- spec/paperclip/attachment_spec.rb
|
618
|
+
- spec/paperclip/content_type_detector_spec.rb
|
619
|
+
- spec/paperclip/file_command_content_type_detector_spec.rb
|
620
|
+
- spec/paperclip/filename_cleaner_spec.rb
|
621
|
+
- spec/paperclip/geometry_detector_spec.rb
|
622
|
+
- spec/paperclip/geometry_parser_spec.rb
|
623
|
+
- spec/paperclip/geometry_spec.rb
|
624
|
+
- spec/paperclip/glue_spec.rb
|
625
|
+
- spec/paperclip/has_attached_file_spec.rb
|
626
|
+
- spec/paperclip/integration_spec.rb
|
627
|
+
- spec/paperclip/interpolations_spec.rb
|
628
|
+
- spec/paperclip/io_adapters/abstract_adapter_spec.rb
|
629
|
+
- spec/paperclip/io_adapters/attachment_adapter_spec.rb
|
630
|
+
- spec/paperclip/io_adapters/data_uri_adapter_spec.rb
|
631
|
+
- spec/paperclip/io_adapters/empty_string_adapter_spec.rb
|
632
|
+
- spec/paperclip/io_adapters/file_adapter_spec.rb
|
633
|
+
- spec/paperclip/io_adapters/http_url_proxy_adapter_spec.rb
|
634
|
+
- spec/paperclip/io_adapters/identity_adapter_spec.rb
|
635
|
+
- spec/paperclip/io_adapters/nil_adapter_spec.rb
|
636
|
+
- spec/paperclip/io_adapters/registry_spec.rb
|
637
|
+
- spec/paperclip/io_adapters/stringio_adapter_spec.rb
|
638
|
+
- spec/paperclip/io_adapters/uploaded_file_adapter_spec.rb
|
639
|
+
- spec/paperclip/io_adapters/uri_adapter_spec.rb
|
640
|
+
- spec/paperclip/matchers/have_attached_file_matcher_spec.rb
|
641
|
+
- spec/paperclip/matchers/validate_attachment_content_type_matcher_spec.rb
|
642
|
+
- spec/paperclip/matchers/validate_attachment_presence_matcher_spec.rb
|
643
|
+
- spec/paperclip/matchers/validate_attachment_size_matcher_spec.rb
|
644
|
+
- spec/paperclip/media_type_spoof_detector_spec.rb
|
645
|
+
- spec/paperclip/meta_class_spec.rb
|
646
|
+
- spec/paperclip/paperclip_missing_attachment_styles_spec.rb
|
647
|
+
- spec/paperclip/paperclip_spec.rb
|
648
|
+
- spec/paperclip/plural_cache_spec.rb
|
649
|
+
- spec/paperclip/processor_helpers_spec.rb
|
650
|
+
- spec/paperclip/processor_spec.rb
|
651
|
+
- spec/paperclip/rails_environment_spec.rb
|
652
|
+
- spec/paperclip/rake_spec.rb
|
653
|
+
- spec/paperclip/schema_spec.rb
|
654
|
+
- spec/paperclip/storage/filesystem_spec.rb
|
655
|
+
- spec/paperclip/storage/fog_spec.rb
|
656
|
+
- spec/paperclip/storage/s3_live_spec.rb
|
657
|
+
- spec/paperclip/storage/s3_spec.rb
|
658
|
+
- spec/paperclip/style_spec.rb
|
659
|
+
- spec/paperclip/tempfile_factory_spec.rb
|
660
|
+
- spec/paperclip/tempfile_spec.rb
|
661
|
+
- spec/paperclip/thumbnail_spec.rb
|
662
|
+
- spec/paperclip/url_generator_spec.rb
|
663
|
+
- spec/paperclip/validators/attachment_content_type_validator_spec.rb
|
664
|
+
- spec/paperclip/validators/attachment_file_name_validator_spec.rb
|
665
|
+
- spec/paperclip/validators/attachment_presence_validator_spec.rb
|
666
|
+
- spec/paperclip/validators/attachment_size_validator_spec.rb
|
667
|
+
- spec/paperclip/validators/media_type_spoof_detection_validator_spec.rb
|
668
|
+
- spec/paperclip/validators_spec.rb
|
669
|
+
- spec/spec_helper.rb
|
670
|
+
- spec/support/assertions.rb
|
671
|
+
- spec/support/fake_model.rb
|
672
|
+
- spec/support/fake_rails.rb
|
673
|
+
- spec/support/fixtures/12k.png
|
674
|
+
- spec/support/fixtures/50x50.png
|
675
|
+
- spec/support/fixtures/5k.png
|
676
|
+
- spec/support/fixtures/animated
|
677
|
+
- spec/support/fixtures/animated.gif
|
678
|
+
- spec/support/fixtures/animated.unknown
|
679
|
+
- spec/support/fixtures/aws_s3.yml
|
680
|
+
- spec/support/fixtures/bad.png
|
681
|
+
- spec/support/fixtures/empty.html
|
682
|
+
- spec/support/fixtures/empty.xlsx
|
683
|
+
- spec/support/fixtures/fog.yml
|
684
|
+
- spec/support/fixtures/rotated.jpg
|
685
|
+
- spec/support/fixtures/s3.yml
|
686
|
+
- spec/support/fixtures/sample.xlsm
|
687
|
+
- spec/support/fixtures/spaced file.jpg
|
688
|
+
- spec/support/fixtures/spaced file.png
|
689
|
+
- spec/support/fixtures/text.txt
|
690
|
+
- spec/support/fixtures/twopage.pdf
|
691
|
+
- spec/support/fixtures/uppercase.PNG
|
692
|
+
- spec/support/matchers/accept.rb
|
693
|
+
- spec/support/matchers/exist.rb
|
694
|
+
- spec/support/matchers/have_column.rb
|
695
|
+
- spec/support/mock_attachment.rb
|
696
|
+
- spec/support/mock_interpolator.rb
|
697
|
+
- spec/support/mock_url_generator_builder.rb
|
698
|
+
- spec/support/model_reconstruction.rb
|
699
|
+
- spec/support/reporting.rb
|
700
|
+
- spec/support/test_data.rb
|
701
|
+
- spec/support/version_helper.rb
|