izi_lightup 1.0.23 → 1.0.26
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/app/helpers/critical_helper.rb +1 -1
- data/lib/izi_lightup/smart_picture.rb +11 -11
- data/lib/izi_lightup/version.rb +1 -1
- data/spec/dummy/log/development.log +103 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/6h/6h5wJ2hPU_tqpHe6URVfDQ5ude4rcc996WPJqlEN5DA.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/8P/8PN1PW8AmpQqiaFp4evuIubGL2axe4awN65DOIqj0G0.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/8t/8t9Z1kFNBGshnIeW7NPuY1RJFJ-DiOt_hr3b_PFEBOs.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/DK/dKDBYxjoJxWQgz7KwQkPNbboikAc5XRfZFDfR1BmqOs.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Iz/IzftN6wBEae0XOagtHUHEW8_l3yMls6BB7dRaGwqIyc.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/ZY/ZYdkl-SZwxCd96Nz8v9zmlviqLaegCIRAsDXYS5Q7pk.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/c9/C95iM9iQx5WFtbp-xwBvckJaFG6ufj_uP7bqdyTANt8.cache +1 -0
- metadata +12 -4
- data/spec/dummy/tmp/pids/server.pid +0 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6f8148dc44588a5089949b25c82193414a666c0a
|
4
|
+
data.tar.gz: 10f6f401afbb01d358e7373ae44fa899ce207849
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 98aae73937ce43b0f31c51a700acc02b5606f2062c27f7ef9fa347d24fc174e65cbe04a27e13180de09b5a79151579f331e6e168cab246bb5d01f52e71484e6c
|
7
|
+
data.tar.gz: c2e9d7e9a50abd3965c93953138c941f15bc222768ee182e1c71f6399efebf7da113a4dfa5658e8f2ac16ce5283b6e8743fe085993564b5dacae2b90287bfd87
|
@@ -23,7 +23,7 @@ module CriticalHelper
|
|
23
23
|
raw
|
24
24
|
end
|
25
25
|
|
26
|
-
def critical_js(bundle: 'crit-utils/bundle.
|
26
|
+
def critical_js(bundle: 'crit-utils/bundle.js')
|
27
27
|
inline_js(bundle).presence || inline_js('crit-utils/bundle.js').presence ||
|
28
28
|
'<!-- CRIT JS NOT FOUND! -->'.html_safe
|
29
29
|
end
|
@@ -1,5 +1,7 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
+
require 'fastimage'
|
4
|
+
|
3
5
|
module IziLightup
|
4
6
|
module SmartPicture
|
5
7
|
class << self
|
@@ -38,26 +40,24 @@ module IziLightup
|
|
38
40
|
private
|
39
41
|
|
40
42
|
def version_exists?(version)
|
41
|
-
return true if version&.url
|
43
|
+
return true if version&.url.to_s =~ /https?:/
|
42
44
|
|
43
45
|
version&.file&.exists? && version&.url&.present?
|
44
46
|
end
|
45
47
|
|
46
48
|
def fallback_dimentions(item)
|
47
|
-
|
49
|
+
FastImage.size(item.url)
|
48
50
|
end
|
49
51
|
|
50
|
-
def safe_dimentions_extract(item
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
fallback_dimentions(item)
|
55
|
-
end
|
52
|
+
def safe_dimentions_extract(item)
|
53
|
+
item.dimensions
|
54
|
+
rescue MiniMagick::Error => _e
|
55
|
+
fallback_dimentions(item.url)
|
56
56
|
end
|
57
57
|
|
58
|
-
def safe_dimentions(item, version)
|
59
|
-
dimensions = fallback_dimentions(item) if version.url =~ /https?:/
|
60
|
-
dimensions ||= safe_dimentions_extract(item
|
58
|
+
def safe_dimentions(item, version = nil)
|
59
|
+
dimensions = fallback_dimentions(version || item) if version.url =~ /https?:/
|
60
|
+
dimensions ||= safe_dimentions_extract(version || item)
|
61
61
|
|
62
62
|
return {} if dimensions.blank? || (dimensions.size != 2)
|
63
63
|
|
data/lib/izi_lightup/version.rb
CHANGED
@@ -18624,3 +18624,106 @@ Started GET "/assets/application.js" for 127.0.0.1 at 2022-04-19 08:01:45 +0300
|
|
18624
18624
|
|
18625
18625
|
|
18626
18626
|
Started GET "/assets/support/jasmine-4.0.1/jasmine_favicon.png" for 127.0.0.1 at 2022-04-19 08:01:46 +0300
|
18627
|
+
|
18628
|
+
|
18629
|
+
Started GET "/rails/jasmine?random=false" for 127.0.0.1 at 2022-04-19 11:12:35 +0300
|
18630
|
+
Processing by PagesController#jasmine as HTML
|
18631
|
+
Parameters: {"random"=>"false"}
|
18632
|
+
Rendered pages/jasmine.html.erb (422.9ms)
|
18633
|
+
Completed 200 OK in 434ms (Views: 431.6ms | ActiveRecord: 0.0ms)
|
18634
|
+
|
18635
|
+
|
18636
|
+
Started GET "/assets/support/jasmine-4.0.1/jasmine.self.js?body=1" for 127.0.0.1 at 2022-04-19 11:12:35 +0300
|
18637
|
+
|
18638
|
+
|
18639
|
+
Started GET "/assets/support/jasmine-4.0.1/jasmine.self.css?body=1" for 127.0.0.1 at 2022-04-19 11:12:35 +0300
|
18640
|
+
|
18641
|
+
|
18642
|
+
Started GET "/assets/support/polyfill.self.js?body=1" for 127.0.0.1 at 2022-04-19 11:12:35 +0300
|
18643
|
+
|
18644
|
+
|
18645
|
+
Started GET "/assets/support/jasmine-4.0.1/boot1.self.js?body=1" for 127.0.0.1 at 2022-04-19 11:12:35 +0300
|
18646
|
+
|
18647
|
+
|
18648
|
+
Started GET "/assets/support/jasmine-4.0.1/jasmine-html.self.js?body=1" for 127.0.0.1 at 2022-04-19 11:12:35 +0300
|
18649
|
+
|
18650
|
+
|
18651
|
+
Started GET "/assets/support/jasmine-full.self.js?body=1" for 127.0.0.1 at 2022-04-19 11:12:36 +0300
|
18652
|
+
|
18653
|
+
|
18654
|
+
Started GET "/assets/support/configure.self.js?body=1" for 127.0.0.1 at 2022-04-19 11:12:36 +0300
|
18655
|
+
|
18656
|
+
|
18657
|
+
Started GET "/assets/support/jasmine-4.0.1/boot0.self.js?body=1" for 127.0.0.1 at 2022-04-19 11:12:36 +0300
|
18658
|
+
|
18659
|
+
|
18660
|
+
Started GET "/assets/helpers/vendor/jquery.self.js?body=1" for 127.0.0.1 at 2022-04-19 11:12:36 +0300
|
18661
|
+
|
18662
|
+
|
18663
|
+
Started GET "/assets/helpers/vendor/jasmine-jquery.self.js?body=1" for 127.0.0.1 at 2022-04-19 11:12:36 +0300
|
18664
|
+
|
18665
|
+
|
18666
|
+
Started GET "/assets/crit-utils/active_emit.self.js?body=1" for 127.0.0.1 at 2022-04-19 11:12:36 +0300
|
18667
|
+
|
18668
|
+
|
18669
|
+
Started GET "/assets/crit-utils/mini_require.self.js?body=1" for 127.0.0.1 at 2022-04-19 11:12:36 +0300
|
18670
|
+
|
18671
|
+
|
18672
|
+
Started GET "/assets/crit-utils/bundle.self.js?body=1" for 127.0.0.1 at 2022-04-19 11:12:36 +0300
|
18673
|
+
|
18674
|
+
|
18675
|
+
Started GET "/assets/crit-utils/wait_for.self.js?body=1" for 127.0.0.1 at 2022-04-19 11:12:36 +0300
|
18676
|
+
|
18677
|
+
|
18678
|
+
Started GET "/assets/helpers/extend/detect_item.self.js?body=1" for 127.0.0.1 at 2022-04-19 11:12:36 +0300
|
18679
|
+
|
18680
|
+
|
18681
|
+
Started GET "/assets/helpers/extend/fixture.self.js?body=1" for 127.0.0.1 at 2022-04-19 11:12:36 +0300
|
18682
|
+
|
18683
|
+
|
18684
|
+
Started GET "/assets/helpers/extend/dummy_objects.self.js?body=1" for 127.0.0.1 at 2022-04-19 11:12:36 +0300
|
18685
|
+
|
18686
|
+
|
18687
|
+
Started GET "/assets/helpers/extend/ng_complie.self.js?body=1" for 127.0.0.1 at 2022-04-19 11:12:36 +0300
|
18688
|
+
|
18689
|
+
|
18690
|
+
Started GET "/assets/helpers/extend/matchers.self.js?body=1" for 127.0.0.1 at 2022-04-19 11:12:36 +0300
|
18691
|
+
|
18692
|
+
|
18693
|
+
Started GET "/assets/crit-utils/active_emit_spec.self.js?body=1" for 127.0.0.1 at 2022-04-19 11:12:36 +0300
|
18694
|
+
|
18695
|
+
|
18696
|
+
Started GET "/assets/crit-utils/mini_require_spec.self.js?body=1" for 127.0.0.1 at 2022-04-19 11:12:36 +0300
|
18697
|
+
|
18698
|
+
|
18699
|
+
Started GET "/assets/crit-utils/wait_for_spec.self.js?body=1" for 127.0.0.1 at 2022-04-19 11:12:36 +0300
|
18700
|
+
|
18701
|
+
|
18702
|
+
Started GET "/assets/application_spec.self.js?body=1" for 127.0.0.1 at 2022-04-19 11:12:36 +0300
|
18703
|
+
|
18704
|
+
|
18705
|
+
Started GET "/assets/support/jasmine-4.0.1/jasmine_favicon.png" for 127.0.0.1 at 2022-04-19 11:12:36 +0300
|
18706
|
+
|
18707
|
+
|
18708
|
+
Started GET "/assets/support/jasmine-4.0.1/jasmine_favicon.png" for 127.0.0.1 at 2022-04-19 11:12:36 +0300
|
18709
|
+
|
18710
|
+
|
18711
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2022-04-19 11:12:36 +0300
|
18712
|
+
|
18713
|
+
|
18714
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2022-04-19 11:12:36 +0300
|
18715
|
+
|
18716
|
+
|
18717
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2022-04-19 11:12:36 +0300
|
18718
|
+
|
18719
|
+
|
18720
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2022-04-19 11:12:36 +0300
|
18721
|
+
|
18722
|
+
|
18723
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2022-04-19 11:12:36 +0300
|
18724
|
+
|
18725
|
+
|
18726
|
+
Started GET "/assets/application.js" for 127.0.0.1 at 2022-04-19 11:12:36 +0300
|
18727
|
+
|
18728
|
+
|
18729
|
+
Started GET "/assets/support/jasmine-4.0.1/jasmine_favicon.png" for 127.0.0.1 at 2022-04-19 11:12:37 +0300
|
data/spec/dummy/tmp/cache/assets/sprockets/v3.0/6h/6h5wJ2hPU_tqpHe6URVfDQ5ude4rcc996WPJqlEN5DA.cache
ADDED
Binary file
|
data/spec/dummy/tmp/cache/assets/sprockets/v3.0/8P/8PN1PW8AmpQqiaFp4evuIubGL2axe4awN65DOIqj0G0.cache
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
I"�/Users/izik/www/sparse/izi_lightup/spec/javascripts/application_spec.js?type=application/javascript&pipeline=debug&id=7cb427e3532719a4c20560c60e45038daf737a78ff16ce8b96f85fb8b2ecb6b1:ET
|
data/spec/dummy/tmp/cache/assets/sprockets/v3.0/8t/8t9Z1kFNBGshnIeW7NPuY1RJFJ-DiOt_hr3b_PFEBOs.cache
ADDED
Binary file
|
data/spec/dummy/tmp/cache/assets/sprockets/v3.0/DK/dKDBYxjoJxWQgz7KwQkPNbboikAc5XRfZFDfR1BmqOs.cache
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
"%$�wb�����̲Y��S��qJ��ۄ�M�.��
|
data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Iz/IzftN6wBEae0XOagtHUHEW8_l3yMls6BB7dRaGwqIyc.cache
CHANGED
Binary file
|
data/spec/dummy/tmp/cache/assets/sprockets/v3.0/ZY/ZYdkl-SZwxCd96Nz8v9zmlviqLaegCIRAsDXYS5Q7pk.cache
CHANGED
Binary file
|
data/spec/dummy/tmp/cache/assets/sprockets/v3.0/c9/C95iM9iQx5WFtbp-xwBvckJaFG6ufj_uP7bqdyTANt8.cache
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
I"�/Users/izik/www/sparse/izi_lightup/spec/javascripts/application_spec.js?type=application/javascript&pipeline=self&id=1007b1751c4fbae2234624727175ee174a0eb9c964f050be83f28b3c22997f15:ET
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: izi_lightup
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.26
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- IzikAJ
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-05-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -445,6 +445,7 @@ files:
|
|
445
445
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/6a/6aVrbYeCzfwXsgbh14hbH5zR2iLhVpK8BXUwoLYAE6s.cache
|
446
446
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/6d/6dnUxr-rFeYeTklJtvBpLxGKbVsliefm2WV90kBTiEM.cache
|
447
447
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/6g/6g2ED_V3oCRZIUrSyIc3DLFMblfDSaH5XyKvbYaLBdk.cache
|
448
|
+
- spec/dummy/tmp/cache/assets/sprockets/v3.0/6h/6h5wJ2hPU_tqpHe6URVfDQ5ude4rcc996WPJqlEN5DA.cache
|
448
449
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/6i/6IAR8EXJJHGr0kxqAFokLxYCoYZ89286585TXzVAuoM.cache
|
449
450
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/6i/6iXbdkQWvdx5ptwOvcw_EAy21nH5lxEBj2MaZ8N1v1Q.cache
|
450
451
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/6j/6jBUuUvt3RHiGsY-f-NKhlSJAYf1HFVjSrLaUTUFBwQ.cache
|
@@ -508,6 +509,7 @@ files:
|
|
508
509
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/8K/8KJMQrcrHAtzMC1rPwelx7vUJCopnS3duf004m4VmRY.cache
|
509
510
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/8L/8L9CTLTEOZUrjIl-R_yfEp39v9YgaMD1nVz6OJ0PU-0.cache
|
510
511
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/8N/8N9aYUDBwOCGvMCt2PBeRaSKTYnKjS8oX2QtkO7uOHg.cache
|
512
|
+
- spec/dummy/tmp/cache/assets/sprockets/v3.0/8P/8PN1PW8AmpQqiaFp4evuIubGL2axe4awN65DOIqj0G0.cache
|
511
513
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/8Q/8Qp2k11TMjdJWc3QAkwa7v8UpNioD2bVqJsA15FU80k.cache
|
512
514
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/8V/8VEjgVhC-mOtf4-h97qAEJ5bk60fM-Tyqrk30IeD7RQ.cache
|
513
515
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/8W/8WqFvKGhywQpgu_l8ad039_PmjUy3YSHnSNWJkQngHk.cache
|
@@ -533,6 +535,7 @@ files:
|
|
533
535
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/8r/8ruhctM0Zt8cmFJox2WVULGELqIOffJk9NFLqKiEA4s.cache
|
534
536
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/8s/8sp4Y4ldp4gNbIcFMpnOi4llfBp4HhYJZzbqXFyiAVE.cache
|
535
537
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/8t/8Tyxy9o1lAsQd1KWJNLhwrK0yuhdx8je0hZV1TW3R6o.cache
|
538
|
+
- spec/dummy/tmp/cache/assets/sprockets/v3.0/8t/8t9Z1kFNBGshnIeW7NPuY1RJFJ-DiOt_hr3b_PFEBOs.cache
|
536
539
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/8t/8txe6_LDKxA1_7n7FsBJddRMyo-IM2SJZogElUPFA70.cache
|
537
540
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/90/90Cpx4jS4wSAAjHCJ1pjfrOaictuUC55F9JWzsG1esA.cache
|
538
541
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/92/92VHd-zrxH1V4KvWY9xrQQptvH-MhpgW0pE7K9oeqwc.cache
|
@@ -680,6 +683,7 @@ files:
|
|
680
683
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/DH/dhXaqLW61ReuHnKnD_8iHbHZMDIRuzIxuc19z0xpLsc.cache
|
681
684
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/DK/DKMQoLp3OKcbFInP4R00oEUwUxkI4tRMUTP1Km6iqYg.cache
|
682
685
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/DK/Dk5r3EnP9CwcDuEGbelPhwuNLI1ZJGJSqC7LkYL1viM.cache
|
686
|
+
- spec/dummy/tmp/cache/assets/sprockets/v3.0/DK/dKDBYxjoJxWQgz7KwQkPNbboikAc5XRfZFDfR1BmqOs.cache
|
683
687
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/DN/DN685P56eHb56rrar-GF52zY80dkHV-64BzX4BdVkEc.cache
|
684
688
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/DP/DPKVWZd3QMA1edEO11mmv7DvqrUG5aRhQwgVMxl4D7Q.cache
|
685
689
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/DP/Dp2SAKH409A3moDk57rKqc4l7ZK31-0GwxMWskLZt4E.cache
|
@@ -1586,6 +1590,7 @@ files:
|
|
1586
1590
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/c3/c38bT3qmDi2Kj1HVcCYyiIBV3l15kNGA_dnWbmChxF8.cache
|
1587
1591
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/c6/C6w-ZRxDRDcO87jKSwWZjnIabQi76awazbOBcweGgS0.cache
|
1588
1592
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/c6/c6G7iTcQCCcmqfJzs5kxsKqNZkpMZCya9cN_vM5rPHw.cache
|
1593
|
+
- spec/dummy/tmp/cache/assets/sprockets/v3.0/c9/C95iM9iQx5WFtbp-xwBvckJaFG6ufj_uP7bqdyTANt8.cache
|
1589
1594
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/c9/c9XkaO9TmZnvoJSW_sxBkme5caC9gUhw_dAk53qlq3E.cache
|
1590
1595
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/cD/cDG_sWE5VFuzbDlkYL6tf0v0Ez0Bmj8EYVoaxViin5k.cache
|
1591
1596
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/cD/cDbP9_rv9rKkwBWLwzzu_URI64GQy1M6S11xOkX3n3w.cache
|
@@ -2785,7 +2790,6 @@ files:
|
|
2785
2790
|
- spec/dummy/tmp/cache/assets/sprockets/v4.0.0/zf/zfMum0USFoX2bYIWxhRzrG4Y-MSP8x4bNL9vR0RZZUs.cache
|
2786
2791
|
- spec/dummy/tmp/cache/assets/sprockets/v4.0.0/zl/zl-AAJuWM2LCRi51idBNlx0tLIWSl273xQhaZQRgXUs.cache
|
2787
2792
|
- spec/dummy/tmp/cache/assets/sprockets/v4.0.0/zl/zlDVZHARUmgdaflbDWpmzeYYZsMVNLm3JawJGlfpUWg.cache
|
2788
|
-
- spec/dummy/tmp/pids/server.pid
|
2789
2793
|
- spec/dummy/vendor/assets/javascripts/vendor.js
|
2790
2794
|
- spec/dummy/vendor/assets/stylesheets/vendor.css
|
2791
2795
|
- spec/helpers/critical_helper_spec.rb
|
@@ -2885,7 +2889,6 @@ test_files:
|
|
2885
2889
|
- spec/dummy/public/persisted.png
|
2886
2890
|
- spec/dummy/log/test.log
|
2887
2891
|
- spec/dummy/log/development.log
|
2888
|
-
- spec/dummy/tmp/pids/server.pid
|
2889
2892
|
- spec/dummy/tmp/cache/assets/CB9/790/sprockets%2F7a2ac9360864812fc8e45f02f154895c
|
2890
2893
|
- spec/dummy/tmp/cache/assets/CD2/670/sprockets%2Fc25904da5aa60d1541a584e1e4d43747
|
2891
2894
|
- spec/dummy/tmp/cache/assets/D2C/370/sprockets%2F383101940e0c58abcce9baaf3a617290
|
@@ -3521,6 +3524,7 @@ test_files:
|
|
3521
3524
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/0Q/0QqMeSX7FJuFmPKKfc92Uq3rH97muPMn0qL6OqZK3cQ.cache
|
3522
3525
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/0Q/0qaZvpOkyifqXXpO4XGwrYDE5kawuZqiw9l545aCVeg.cache
|
3523
3526
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/0Q/0Q9MnFsjbbTrA1cEIh96cn0LXpqIlUg5NZNh9G1zZvs.cache
|
3527
|
+
- spec/dummy/tmp/cache/assets/sprockets/v3.0/6h/6h5wJ2hPU_tqpHe6URVfDQ5ude4rcc996WPJqlEN5DA.cache
|
3524
3528
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/Yl/YlqyxFBlMe5sMYKg6_yGAEg9mpwwp7vEewf3sLSa-Nc.cache
|
3525
3529
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/Yl/YlEsut9j_WR9BEFcIx9lU3c_EX-6Wpr6RnAhnlM_4t8.cache
|
3526
3530
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/3Y/3Ye62zAFUerrEM0SxUg_e0KbTBYkhFVp0BM5Gxx-4lU.cache
|
@@ -4073,6 +4077,7 @@ test_files:
|
|
4073
4077
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/EL/ELmdKPauEswgInWAfgO5o4mAYbk2JCAW6RZnYl62VYU.cache
|
4074
4078
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/EL/eLZ_dekCOhqq6E2NDxCJLK6wcQ9gX3emOJy_G2k0Vvs.cache
|
4075
4079
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/EL/ELvp6hm8PJQtGpOd2APqNwlrabwKGQAdcbxLdXReIJU.cache
|
4080
|
+
- spec/dummy/tmp/cache/assets/sprockets/v3.0/c9/C95iM9iQx5WFtbp-xwBvckJaFG6ufj_uP7bqdyTANt8.cache
|
4076
4081
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/c9/c9XkaO9TmZnvoJSW_sxBkme5caC9gUhw_dAk53qlq3E.cache
|
4077
4082
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/LQ/LqOdxqSfTlY12IZ0yQub56U71qYY2xBxQZCynsfvk14.cache
|
4078
4083
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/LQ/LQyAfOyuKp0mDHw8ZS8GAKfCDzfNmOuPJ6ZtUVAMCl0.cache
|
@@ -4462,6 +4467,7 @@ test_files:
|
|
4462
4467
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/1i/1iumxmBeGXyLt8s1IWGTeGxVUdw5pmseoR08tZY13zM.cache
|
4463
4468
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/1i/1IkdZKhScDXJIrOnfAQZn0dNwMqos2hpeOENGTn_RV8.cache
|
4464
4469
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/88/88p2dZi6cALuDKvf6qc9-aqc7dRD16uOdoDh7zMBMoo.cache
|
4470
|
+
- spec/dummy/tmp/cache/assets/sprockets/v3.0/8t/8t9Z1kFNBGshnIeW7NPuY1RJFJ-DiOt_hr3b_PFEBOs.cache
|
4465
4471
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/8t/8Tyxy9o1lAsQd1KWJNLhwrK0yuhdx8je0hZV1TW3R6o.cache
|
4466
4472
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/8t/8txe6_LDKxA1_7n7FsBJddRMyo-IM2SJZogElUPFA70.cache
|
4467
4473
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/tX/tX8iO4IVzqVEf64Y2Hqwq0ZcNCp8VhWHVFpBEF7974Y.cache
|
@@ -4993,6 +4999,7 @@ test_files:
|
|
4993
4999
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/ny/nyFkeKwEJF90zk3QnlQsTOhjTCRo2XOQf23RJOZwoPY.cache
|
4994
5000
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/DK/DKMQoLp3OKcbFInP4R00oEUwUxkI4tRMUTP1Km6iqYg.cache
|
4995
5001
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/DK/Dk5r3EnP9CwcDuEGbelPhwuNLI1ZJGJSqC7LkYL1viM.cache
|
5002
|
+
- spec/dummy/tmp/cache/assets/sprockets/v3.0/DK/dKDBYxjoJxWQgz7KwQkPNbboikAc5XRfZFDfR1BmqOs.cache
|
4996
5003
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/BR/Bro1QSD427DQl_iLBpGDcOez9jwTm7cjnjiDJDhmOb8.cache
|
4997
5004
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/BR/BRCMK5FQ7TxjP-Fov3ihmOYjJCheBlWZ3RhuoZiWumA.cache
|
4998
5005
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/ko/kOtmT6iqppHxzLqDJABQFsXO2w98yPkglyKK9RcoYRM.cache
|
@@ -5409,6 +5416,7 @@ test_files:
|
|
5409
5416
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/Re/rExbvvd62R2a0L5eNejClG3WoZWpRokgGO7eiIKkK68.cache
|
5410
5417
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/Re/ReM1y80nE8ob2xBDp368RB8osEzZ8BVskno9tQGAJFA.cache
|
5411
5418
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/Re/RetDrdMXtJFrd2rEOnWHsqwdf15lCKmZU_soddpHuzA.cache
|
5419
|
+
- spec/dummy/tmp/cache/assets/sprockets/v3.0/8P/8PN1PW8AmpQqiaFp4evuIubGL2axe4awN65DOIqj0G0.cache
|
5412
5420
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/Q4/Q4yGver7-1vn5xFXVsPqsNR_Fo9s4_dTSAng7NL3axs.cache
|
5413
5421
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/W-/W-eVIn9B_48HrMvMvogNoZsWVSqK6dH7rKfPuDqSLXc.cache
|
5414
5422
|
- spec/dummy/tmp/cache/assets/sprockets/v3.0/wA/wAaq3K5XS1_NfeyJXgYgppAjPs1EzhQBaCFnLy0cdEY.cache
|
@@ -1 +0,0 @@
|
|
1
|
-
13899
|