type_station 0.5.2 → 0.5.3

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.
Files changed (18) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/javascripts/type_station/editables/file_editor.js.coffee +2 -2
  3. data/app/controllers/type_station/file_controller.rb +1 -1
  4. data/lib/type_station/version.rb +1 -1
  5. data/spec/dummy/log/development.log +115 -0
  6. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/0_/0_szgaMxxOSt83yeibDRDbvtc3YKgf89jF3ksplGmGs.cache +0 -0
  7. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/82/828BLe0noTyMgq_V063WSWw_WaY9XTMMgFNXdcx6gEs.cache +0 -0
  8. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/L-/L-tnK5VZx1Aiv_fSkdP-0OlOzrjAWlxsNX-WhxHzEnM.cache +1 -0
  9. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/LD/LDODKNvMFqa_FmuXvwFrXGhcaZ8rfaDSAsHGdKhxqQU.cache +1 -0
  10. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/S-/s-68Cet-NwkcWD1hdtRPnk4BLe2f8_c3yz8wwgU3IVM.cache +81 -0
  11. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/m3/m37wFSME__4sotYcIDHML3dMwf2z12lfDYwEPs8CpL4.cache +0 -0
  12. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/oc/ocCdznCTiDsf5SnX-XbzboHKIsa5N_0JJvcFaIa0v4k.cache +0 -0
  13. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/q-/q-EsjQHItWTFlSBGmW8-AulZEreCZPGfDYCQkjKLfwU.cache +1 -0
  14. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/rS/rSQni9ZoAoIn_skb8lOW2Q9HxC1aIyJNI0z1z2PDXy8.cache +3 -0
  15. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/yq/yqa5Gx-ky83VhSrKVlwvpaDYq1dfYgIq-P6jtCKiOy4.cache +0 -0
  16. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/zy/zyFIWj-in803X5vhrxqbzUrnpX33zT2LuklveJd32Kk.cache +1 -0
  17. data/spec/dummy/tmp/pids/server.pid +1 -1
  18. metadata +20 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 7f482d48b28f3f32338b7c89c8c997f1e530fff3
4
- data.tar.gz: fb33172d9dc33483a78baf283c7068346bb00a3a
3
+ metadata.gz: 4661fe00a814908e56e2aa8d0ca1c9ec1ac07751
4
+ data.tar.gz: db5bb4f2835cd4dba3785dc7e0d11bac80e5d549
5
5
  SHA512:
6
- metadata.gz: b8ab6f4569e1e2819f739bc2c52c45cac7c49ab65f3f56babcae9b3b0b8ff85c497c18ca2a33f04f7fd8a3810aa50d222ce233f4ff4dbb2b48012f3e30f0651d
7
- data.tar.gz: 9f2636c0d96fef26177381731768e1522f8987a4842e1215c95b2eff5df55133f068c881cd635fdc32ca2817e8c1be6fd29aa9a69780525a74e9693d80c7f85b
6
+ metadata.gz: 967e95f4a9e9deeea04d16d69d359c6fd89eb6474fa48925a48bc4e59456894477cbb268fc29d1eb91ae5392b1cbc3afd8537a2940c8e2b8f0c5fc421e6aeb4d
7
+ data.tar.gz: d98f0b824fdda2ce4ee313cbbbe7e4e9905c1191bea7d18c2c14562907e87792723cd88106319375d1b9df1abc2f1be578c29bb51524a2137c072132146c57ae
@@ -24,8 +24,8 @@ buildUploader = (editor) ->
24
24
  $(imageTag).attr('src', $.cloudinary.url(data.result.public_id, $.extend({}, {format: data.result.format}, $(imageTag).data())))
25
25
  for linkTag in $('.ts-editable-link-tag', $element)
26
26
  if data.result.type == "private"
27
- url = $(linkTag).data('download-url').replace('IDENTIFIER', data.result.public_id).replace('FORMAT', data.result.format)
28
- $(linkTag).attr('href', url)
27
+ # url = $(linkTag).data('download-url').replace('IDENTIFIER', data.result.public_id).replace('FORMAT', data.result.format)
28
+ $(linkTag).attr('href', data.result.secure_url)
29
29
  else
30
30
  $(linkTag).attr('href', $.cloudinary.url(data.result.public_id, {resource_type: 'raw', format: data.result.format}))
31
31
  $(this).prop('disabled', false)
@@ -8,7 +8,7 @@ module TypeStation
8
8
  private
9
9
 
10
10
  def private_download_url
11
- Cloudinary::Utils.private_download_url(params[:identifier], params[:format], attachment: true, expires_at: 1.minute.from_now )
11
+ Cloudinary::Utils.private_download_url([params[:identifier], params[:format]].join('.'), params[:format], resource_type: :raw, attachment: true, expires_at: 1.minute.from_now)
12
12
  end
13
13
 
14
14
  end
@@ -2,7 +2,7 @@ module TypeStation
2
2
  module Version
3
3
  MAJOR = 0
4
4
  MINOR = 5
5
- TINY = 2
5
+ TINY = 3
6
6
  PRE = nil
7
7
  STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
8
8
  end
@@ -21556,3 +21556,118 @@ Started GET "/assets/medium-editor.self-f1d599ef8d14ea2e05ffd75dba5a97bf1c6dfb2e
21556
21556
  Started GET "/assets/type_station/editables/entity_editor.self-ef94e7b98b29cc5446f4cfd65209871616efb658e5ad5516696d12b5e0d3eb4c.js?body=1" for 172.17.0.1 at 2017-07-27 11:03:44 +0000
21557
21557
  Started GET "/assets/type_station/editables/admin_bar.self-01d46c12544f99a954f4bb3878b5686f363314a3e271011a532f8eb0902b0887.js?body=1" for 172.17.0.1 at 2017-07-27 11:03:44 +0000
21558
21558
  Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for 172.17.0.1 at 2017-07-27 11:03:44 +0000
21559
+ Started GET "/type_station" for 172.17.0.1 at 2017-08-03 12:28:23 +0000
21560
+ Processing by TypeStation::PagesController#index as HTML
21561
+ MONGODB | Topology type 'unknown' initializing.
21562
+ MONGODB | Server db:27017 initializing.
21563
+ MONGODB | Topology type 'unknown' changed to type 'single'.
21564
+ MONGODB | Server description for db:27017 changed from 'unknown' to 'standalone'.
21565
+ MONGODB | There was a change in the members of the 'single' topology.
21566
+ MONGODB | db:27017 | type_station_development.find | STARTED | {"find"=>"type_station_entities", "filter"=>{"parent_id"=>nil, "_type"=>"TypeStation::Page"}, "sort"=>{"position"=>1}, "limit"=>1, "singleBatch"=>true}
21567
+ MONGODB | db:27017 | type_station_development.find | SUCCEEDED | 0.001934914s
21568
+ Rendering pages/index_other.html.erb within layouts/application
21569
+ MONGODB | db:27017 | type_station_development.find | STARTED | {"find"=>"type_station_entities", "filter"=>{"parent_id"=>BSON::ObjectId('58f0a3b6560bd9000634b423'), "children"=>{"$in"=>[:children, nil]}, "_type"=>"TypeStation::Page"}, "sort"=>{"position"=>1}}
21570
+ MONGODB | db:27017 | type_station_development.find | SUCCEEDED | 0.0011280259999999999s
21571
+ MONGODB | db:27017 | type_station_development.find | STARTED | {"find"=>"type_station_entities", "filter"=>{"parent_id"=>BSON::ObjectId('58f0a3b6560bd9000634b423'), "_type"=>"Team"}, "sort"=>{"position"=>1}}
21572
+ MONGODB | db:27017 | type_station_development.find | SUCCEEDED | 0.000741663s
21573
+ Rendered /workspace/app/views/type_station/toolbars/_admin_bar.html.haml (19.5ms)
21574
+ Rendered pages/index_other.html.erb within layouts/application (861.7ms)
21575
+ Completed 200 OK in 3065ms (Views: 2981.1ms)
21576
+
21577
+
21578
+ Started GET "/assets/type_station/admin_bar.self-342b8ec125f5af4d50f21b2bfe05b152a619a407680f48a1c4834d863f9dd377.css?body=1" for 172.17.0.1 at 2017-08-03 12:28:26 +0000
21579
+ Started GET "/assets/application.self-565a90fd247bd9ef75cf5f71be1e11e37c3ad80695d8bdfb331fe844afbe0a9e.css?body=1" for 172.17.0.1 at 2017-08-03 12:28:26 +0000
21580
+ Started GET "/assets/chosen.self-0edde8317e160ce2dcb169858bf2e53a5e7f59a076210edd21a7fd8daf049e38.css?body=1" for 172.17.0.1 at 2017-08-03 12:28:26 +0000
21581
+ Started GET "/assets/type_station/base.self-82e1098650b94f4447dafd5411234998fe7166ebf2e36e5b93ea44e4680c597f.css?body=1" for 172.17.0.1 at 2017-08-03 12:28:26 +0000
21582
+ Started GET "/assets/application.self-1d8e221ce33ae6895c0dc108af782be06d67eee7ddcbbe39856d455f5c5c4ce1.js?body=1" for 172.17.0.1 at 2017-08-03 12:28:26 +0000
21583
+ Started GET "/assets/jquery.self-bd7ddd393353a8d2480a622e80342adf488fb6006d667e8b42e4c0073393abee.js?body=1" for 172.17.0.1 at 2017-08-03 12:28:26 +0000
21584
+ Started GET "/type_station" for 172.17.0.1 at 2017-08-03 12:30:41 +0000
21585
+ Processing by TypeStation::PagesController#index as HTML
21586
+ MONGODB | db:27017 | type_station_development.find | STARTED | {"find"=>"type_station_entities", "filter"=>{"parent_id"=>nil, "_type"=>"TypeStation::Page"}, "sort"=>{"position"=>1}, "limit"=>1, "singleBatch"=>true}
21587
+ MONGODB | db:27017 | type_station_development.find | SUCCEEDED | 0.000648964s
21588
+ Rendering pages/index_other.html.erb within layouts/application
21589
+ MONGODB | db:27017 | type_station_development.find | STARTED | {"find"=>"type_station_entities", "filter"=>{"parent_id"=>BSON::ObjectId('58f0a3b6560bd9000634b423'), "children"=>{"$in"=>[:children, nil]}, "_type"=>"TypeStation::Page"}, "sort"=>{"position"=>1}}
21590
+ MONGODB | db:27017 | type_station_development.find | SUCCEEDED | 0.000737863s
21591
+ MONGODB | db:27017 | type_station_development.find | STARTED | {"find"=>"type_station_entities", "filter"=>{"parent_id"=>BSON::ObjectId('58f0a3b6560bd9000634b423'), "_type"=>"Team"}, "sort"=>{"position"=>1}}
21592
+ MONGODB | db:27017 | type_station_development.find | SUCCEEDED | 0.0004902449999999999s
21593
+ Rendered /workspace/app/views/type_station/toolbars/_admin_bar.html.haml (9.8ms)
21594
+ Rendered pages/index_other.html.erb within layouts/application (66.3ms)
21595
+ Completed 200 OK in 1751ms (Views: 1748.1ms)
21596
+
21597
+
21598
+ Started GET "/assets/type_station/editables/file_editor.self-c0953ebaaf245c64c3fd75b9f157beb449bac27382eabe861a3bf84be334b0f8.js?body=1" for 172.17.0.1 at 2017-08-03 12:30:43 +0000
21599
+ Started PATCH "/type_station/_admin/entities/58f0a3b6560bd9000634b423" for 172.17.0.1 at 2017-08-03 12:31:05 +0000
21600
+ DEPRECATION WARNING: before_filter is deprecated and will be removed in Rails 5.1. Use before_action instead. (called from <class:AdminController> at /workspace/app/controllers/type_station/admin_controller.rb:5)
21601
+ DEPRECATION WARNING: before_filter is deprecated and will be removed in Rails 5.1. Use before_action instead. (called from <class:AdminController> at /workspace/app/controllers/type_station/admin_controller.rb:6)
21602
+ Processing by TypeStation::Admin::EntitiesController#update as JSON
21603
+ Parameters: {"contents"=>[{"field"=>"private_file", "value"=>{"identifier"=>"nzcn8y8qntcwjfnoaya8.xls"}, "type"=>"file"}], "id"=>"58f0a3b6560bd9000634b423", "entity"=>{}}
21604
+ Can't verify CSRF token authenticity.
21605
+ MONGODB | db:27017 | type_station_development.find | STARTED | {"find"=>"type_station_entities", "filter"=>{"_id"=>BSON::ObjectId('58f0a3b6560bd9000634b423')}, "sort"=>{"position"=>1}}
21606
+ MONGODB | db:27017 | type_station_development.find | SUCCEEDED | 0.005606953s
21607
+ MONGODB | db:27017 | type_station_development.find | STARTED | {"find"=>"type_station_entities", "filter"=>{"parent_id"=>nil, "_type"=>"TypeStation::Page"}, "sort"=>{"position"=>1}, "limit"=>1, "singleBatch"=>true}
21608
+ MONGODB | db:27017 | type_station_development.find | SUCCEEDED | 0.001468738s
21609
+ MONGODB | db:27017 | type_station_development.update | STARTED | {"update"=>"type_station_entities", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('58f0a3b6560bd9000634b423')}, "u"=>{"$pushAll"=>{"contents"=>[{"_id"=>BSON::ObjectId('5983178966d49b00bcca3cba'), "type"=>:file, "name"=>:private_file, "file"=><ActionControl...
21610
+ DEPRECATION WARNING: Method bson_type is deprecated and will be removed in Rails 5.1, as `ActionController::Parameters` no longer inherits from hash. Using this deprecated behavior exposes potential security problems. If you continue to use this method you may be creating a security vulnerability in your app that can be exploited. Instead, consider using one of these documented methods which are not deprecated: http://api.rubyonrails.org/v5.0.2/classes/ActionController/Parameters.html (called from update_contents at /workspace/app/models/type_station/entity.rb:27)
21611
+ DEPRECATION WARNING: Method to_bson is deprecated and will be removed in Rails 5.1, as `ActionController::Parameters` no longer inherits from hash. Using this deprecated behavior exposes potential security problems. If you continue to use this method you may be creating a security vulnerability in your app that can be exploited. Instead, consider using one of these documented methods which are not deprecated: http://api.rubyonrails.org/v5.0.2/classes/ActionController/Parameters.html (called from update_contents at /workspace/app/models/type_station/entity.rb:27)
21612
+ MONGODB | db:27017 | type_station_development.update | SUCCEEDED | 0.00325981s
21613
+ MONGODB | db:27017 | type_station_development.count | STARTED | {"count"=>"type_station_entities", "query"=>{"parent_id"=>BSON::ObjectId('58f0a3b6560bd9000634b423'), "children"=>{"$in"=>[:children, nil]}}}
21614
+ MONGODB | db:27017 | type_station_development.count | SUCCEEDED | 0.001357563s
21615
+ MONGODB | db:27017 | type_station_development.find | STARTED | {"find"=>"type_station_entities", "filter"=>{"parent_id"=>BSON::ObjectId('58f0a3b6560bd9000634b423'), "children"=>{"$in"=>[:children, nil]}}, "sort"=>{"position"=>1}}
21616
+ MONGODB | db:27017 | type_station_development.find | SUCCEEDED | 0.003504732s
21617
+ Completed 200 OK in 68ms (Views: 0.4ms)
21618
+
21619
+
21620
+ Started GET "/type_station" for 172.17.0.1 at 2017-08-03 12:31:19 +0000
21621
+ Processing by TypeStation::PagesController#index as HTML
21622
+ MONGODB | db:27017 | type_station_development.find | STARTED | {"find"=>"type_station_entities", "filter"=>{"parent_id"=>nil, "_type"=>"TypeStation::Page"}, "sort"=>{"position"=>1}, "limit"=>1, "singleBatch"=>true}
21623
+ MONGODB | db:27017 | type_station_development.find | SUCCEEDED | 0.001824135s
21624
+ Rendering pages/index_other.html.erb within layouts/application
21625
+ MONGODB | db:27017 | type_station_development.find | STARTED | {"find"=>"type_station_entities", "filter"=>{"parent_id"=>BSON::ObjectId('58f0a3b6560bd9000634b423'), "children"=>{"$in"=>[:children, nil]}, "_type"=>"TypeStation::Page"}, "sort"=>{"position"=>1}}
21626
+ MONGODB | db:27017 | type_station_development.find | SUCCEEDED | 0.0008182749999999999s
21627
+ MONGODB | db:27017 | type_station_development.find | STARTED | {"find"=>"type_station_entities", "filter"=>{"parent_id"=>BSON::ObjectId('58f0a3b6560bd9000634b423'), "_type"=>"Team"}, "sort"=>{"position"=>1}}
21628
+ MONGODB | db:27017 | type_station_development.find | SUCCEEDED | 0.000989581s
21629
+ Rendered /workspace/app/views/type_station/toolbars/_admin_bar.html.haml (5.0ms)
21630
+ Rendered pages/index_other.html.erb within layouts/application (52.8ms)
21631
+ Completed 200 OK in 541ms (Views: 534.6ms)
21632
+
21633
+
21634
+ Started GET "/type_station/file-download/nzcn8y8qntcwjfnoaya8.xls" for 172.17.0.1 at 2017-08-03 12:31:26 +0000
21635
+ Processing by TypeStation::FileController#download as
21636
+ Parameters: {"identifier"=>"nzcn8y8qntcwjfnoaya8"}
21637
+ Redirected to https://api.cloudinary.com/v1_1/madwire/raw/download?api_key=665773411575653&attachment=true&expires_at=1501763546&format=xls&public_id=nzcn8y8qntcwjfnoaya8.xls&signature=519604f1a38084884f1cde9636aea2a16e6cf5ef&timestamp=1501763486
21638
+ Completed 302 Found in 1ms
21639
+
21640
+
21641
+ Started PATCH "/type_station/_admin/entities/58f0a3b6560bd9000634b423" for 172.17.0.1 at 2017-08-03 12:32:11 +0000
21642
+ Processing by TypeStation::Admin::EntitiesController#update as JSON
21643
+ Parameters: {"contents"=>[{"field"=>"file", "value"=>{"identifier"=>"ehjmubwftgfjwmvrmmm4", "format"=>"pdf"}, "type"=>"file"}], "id"=>"58f0a3b6560bd9000634b423", "entity"=>{}}
21644
+ Can't verify CSRF token authenticity.
21645
+ MONGODB | db:27017 | type_station_development.find | STARTED | {"find"=>"type_station_entities", "filter"=>{"_id"=>BSON::ObjectId('58f0a3b6560bd9000634b423')}, "sort"=>{"position"=>1}}
21646
+ MONGODB | db:27017 | type_station_development.find | SUCCEEDED | 0.0006704380000000001s
21647
+ MONGODB | db:27017 | type_station_development.find | STARTED | {"find"=>"type_station_entities", "filter"=>{"parent_id"=>nil, "_type"=>"TypeStation::Page"}, "sort"=>{"position"=>1}, "limit"=>1, "singleBatch"=>true}
21648
+ MONGODB | db:27017 | type_station_development.find | SUCCEEDED | 0.00059792s
21649
+ MONGODB | db:27017 | type_station_development.update | STARTED | {"update"=>"type_station_entities", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('58f0a3b6560bd9000634b423')}, "u"=>{"$pushAll"=>{"contents"=>[{"_id"=>BSON::ObjectId('598317cb66d49b00bcca3cbb'), "type"=>:file, "name"=>:file, "file"=><ActionController::Par...
21650
+ DEPRECATION WARNING: Method bson_type is deprecated and will be removed in Rails 5.1, as `ActionController::Parameters` no longer inherits from hash. Using this deprecated behavior exposes potential security problems. If you continue to use this method you may be creating a security vulnerability in your app that can be exploited. Instead, consider using one of these documented methods which are not deprecated: http://api.rubyonrails.org/v5.0.2/classes/ActionController/Parameters.html (called from update_contents at /workspace/app/models/type_station/entity.rb:27)
21651
+ DEPRECATION WARNING: Method to_bson is deprecated and will be removed in Rails 5.1, as `ActionController::Parameters` no longer inherits from hash. Using this deprecated behavior exposes potential security problems. If you continue to use this method you may be creating a security vulnerability in your app that can be exploited. Instead, consider using one of these documented methods which are not deprecated: http://api.rubyonrails.org/v5.0.2/classes/ActionController/Parameters.html (called from update_contents at /workspace/app/models/type_station/entity.rb:27)
21652
+ MONGODB | db:27017 | type_station_development.update | SUCCEEDED | 0.003216147s
21653
+ MONGODB | db:27017 | type_station_development.count | STARTED | {"count"=>"type_station_entities", "query"=>{"parent_id"=>BSON::ObjectId('58f0a3b6560bd9000634b423'), "children"=>{"$in"=>[:children, nil]}}}
21654
+ MONGODB | db:27017 | type_station_development.count | SUCCEEDED | 0.001112736s
21655
+ MONGODB | db:27017 | type_station_development.find | STARTED | {"find"=>"type_station_entities", "filter"=>{"parent_id"=>BSON::ObjectId('58f0a3b6560bd9000634b423'), "children"=>{"$in"=>[:children, nil]}}, "sort"=>{"position"=>1}}
21656
+ MONGODB | db:27017 | type_station_development.find | SUCCEEDED | 0.000751746s
21657
+ Completed 200 OK in 23ms (Views: 0.3ms)
21658
+
21659
+
21660
+ Started GET "/type_station" for 172.17.0.1 at 2017-08-03 12:32:16 +0000
21661
+ Processing by TypeStation::PagesController#index as HTML
21662
+ MONGODB | db:27017 | type_station_development.find | STARTED | {"find"=>"type_station_entities", "filter"=>{"parent_id"=>nil, "_type"=>"TypeStation::Page"}, "sort"=>{"position"=>1}, "limit"=>1, "singleBatch"=>true}
21663
+ MONGODB | db:27017 | type_station_development.find | SUCCEEDED | 0.00056506s
21664
+ Rendering pages/index_other.html.erb within layouts/application
21665
+ MONGODB | db:27017 | type_station_development.find | STARTED | {"find"=>"type_station_entities", "filter"=>{"parent_id"=>BSON::ObjectId('58f0a3b6560bd9000634b423'), "children"=>{"$in"=>[:children, nil]}, "_type"=>"TypeStation::Page"}, "sort"=>{"position"=>1}}
21666
+ MONGODB | db:27017 | type_station_development.find | SUCCEEDED | 0.000768331s
21667
+ MONGODB | db:27017 | type_station_development.find | STARTED | {"find"=>"type_station_entities", "filter"=>{"parent_id"=>BSON::ObjectId('58f0a3b6560bd9000634b423'), "_type"=>"Team"}, "sort"=>{"position"=>1}}
21668
+ MONGODB | db:27017 | type_station_development.find | SUCCEEDED | 0.000548279s
21669
+ Rendered /workspace/app/views/type_station/toolbars/_admin_bar.html.haml (4.4ms)
21670
+ Rendered pages/index_other.html.erb within layouts/application (74.3ms)
21671
+ Completed 200 OK in 482ms (Views: 479.3ms)
21672
+
21673
+
@@ -0,0 +1 @@
1
+ I"�/workspace/app/assets/javascripts/type_station/application.js?type=application/javascript&pipeline=debug&id=d190e765a49e156d19816face5d2050ba1d2bc02b55cfb8e6a4ee7e0cc5e9258:ET
@@ -0,0 +1 @@
1
+ "%q����������J����j� �-}K����`
@@ -0,0 +1,81 @@
1
+ I"�
2
+ (function() {
3
+ var buildUploader;
4
+
5
+ buildUploader = function(editor) {
6
+ var $input, $label, $labelIcon;
7
+ $input = $('<input/>');
8
+ $label = $('<label/>');
9
+ $labelIcon = $('<i/>').addClass("ts-file-style-icon " + (editor.data.type === 'image' ? 'ion-image' : 'ion-android-attach'));
10
+ $label.addClass('ts-file-editor').addClass('ts-editable-button').addClass('ts-button');
11
+ $input.attr({
12
+ type: "file",
13
+ name: "file",
14
+ "class": 'ts-editable-file-input',
15
+ style: 'display: none',
16
+ 'data-form-data': JSON.stringify(editor.data.options.cloudinary),
17
+ 'data-element-id': editor.$el.attr('id')
18
+ }).cloudinary_fileupload().bind('cloudinaryprogress', function(e, data) {
19
+ return $('.ts-progress-bar').css('width', Math.round((data.loaded * 100.0) / data.total) + '%');
20
+ }).bind('cloudinarystart', function(e, data) {
21
+ $(this).prop('disabled', true);
22
+ return $('body').append($('<div>').addClass('ts-progress-bar'));
23
+ }).bind('cloudinarydone', function(e, data) {
24
+ var $element, i, imageTag, j, len, len1, linkTag, model, ref, ref1;
25
+ $element = $("#" + ($(this).data('elementId')));
26
+ ref = $('.ts-editable-image-tag', $element);
27
+ for (i = 0, len = ref.length; i < len; i++) {
28
+ imageTag = ref[i];
29
+ $(imageTag).attr('src', $.cloudinary.url(data.result.public_id, $.extend({}, {
30
+ format: data.result.format
31
+ }, $(imageTag).data())));
32
+ }
33
+ ref1 = $('.ts-editable-link-tag', $element);
34
+ for (j = 0, len1 = ref1.length; j < len1; j++) {
35
+ linkTag = ref1[j];
36
+ if (data.result.type === "private") {
37
+ $(linkTag).attr('href', data.result.secure_url);
38
+ } else {
39
+ $(linkTag).attr('href', $.cloudinary.url(data.result.public_id, {
40
+ resource_type: 'raw',
41
+ format: data.result.format
42
+ }));
43
+ }
44
+ }
45
+ $(this).prop('disabled', false);
46
+ $('.ts-progress-bar').remove();
47
+ model = editor.ts.getModel(editor.data.url);
48
+ return model.set(editor.data.field, {
49
+ field: editor.data.field,
50
+ value: {
51
+ identifier: data.result.public_id,
52
+ format: data.result.format
53
+ },
54
+ type: editor.data.type
55
+ });
56
+ });
57
+ return $label.append($labelIcon).append($input);
58
+ };
59
+
60
+ this.TypeStation.FileEditor = (function() {
61
+ function FileEditor(ts, $el, data1) {
62
+ this.ts = ts;
63
+ this.$el = $el;
64
+ this.data = data1;
65
+ this.$el.addClass('ts-block');
66
+ }
67
+
68
+ FileEditor.prototype.enable = function() {
69
+ return this.$el.append(buildUploader(this));
70
+ };
71
+
72
+ FileEditor.prototype.disable = function() {
73
+ return this.$el.find('.ts-file-editor').remove();
74
+ };
75
+
76
+ return FileEditor;
77
+
78
+ })();
79
+
80
+ }).call(this);
81
+ :ET
@@ -0,0 +1 @@
1
+ I"�/workspace/app/assets/javascripts/type_station/application.js?type=application/javascript&pipeline=self&id=77dc64df6f87b46c7065ac4d72820a6b5998f68980223435625e9b8e1d8236d9:ET
@@ -0,0 +1,3 @@
1
+ [o:Set:
2
+ @hash}
3
+ I"environment-version:ETTI"environment-paths;TTI"rails-env;TTI"jprocessors:type=application/javascript&file_type=application/javascript&engines=.coffee&pipeline=self;TTI"afile-digest:///workspace/app/assets/javascripts/type_station/editables/file_editor.js.coffee;TTF
@@ -0,0 +1 @@
1
+ I"�/workspace/app/assets/javascripts/type_station/editables/file_editor.js.coffee?type=application/javascript&pipeline=self&id=c31e75b842ab06952aa67fba76f23a640207da15db41d5edb64cc83f1a28dea7:ET
@@ -1 +1 @@
1
- 259
1
+ 188
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: type_station
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.2
4
+ version: 0.5.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Richard Adams
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-07-27 00:00:00.000000000 Z
11
+ date: 2017-08-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -539,6 +539,7 @@ files:
539
539
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/7G/7Gly1atK83fTrN51FSQGTgnfn97DjgF8SBQR1Bd3U-o.cache
540
540
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/7e/7eF40Rm_qyH_4Nm_68U1-tDsetTS9nMq8YE9yIyXckw.cache
541
541
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/7e/7ebo33Vd-l__3L9Fxb70DEROgy8a74Ej0vpx68vELLs.cache
542
+ - spec/dummy/tmp/cache/assets/sprockets/v3.0/82/828BLe0noTyMgq_V063WSWw_WaY9XTMMgFNXdcx6gEs.cache
542
543
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/86/86TK63TT3eKKPtgVOilhedFmln3GU_gNl8SLwnYUpVQ.cache
543
544
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/8N/8NBHtc1wobpJfiL3tQjpLu8BMvUA4zKT4txyVqj2y50.cache
544
545
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/8U/8UoDUqI-BUttTAhww61lOM_rkXVyvKOGT3T3VKoG5tY.cache
@@ -592,6 +593,8 @@ files:
592
593
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/Kd/KdKTsxUH-rphnRhirijVLW9KRM2uGKUOvjIulnLI2tY.cache
593
594
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/Kn/Kn3GTp-awnb2ge3KQkMJP8bOTW7m0V37vAhd0x-6P20.cache
594
595
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/L-/L-P7DErCeB11t9VDUaotF9wkPDAOeyvrG0d5sII281w.cache
596
+ - spec/dummy/tmp/cache/assets/sprockets/v3.0/L-/L-tnK5VZx1Aiv_fSkdP-0OlOzrjAWlxsNX-WhxHzEnM.cache
597
+ - spec/dummy/tmp/cache/assets/sprockets/v3.0/LD/LDODKNvMFqa_FmuXvwFrXGhcaZ8rfaDSAsHGdKhxqQU.cache
595
598
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/LO/LOIw_QrLu6EqRv2po1AhlmvJ5T0AcIZuJV0rK15RRx0.cache
596
599
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/Lb/Lb-EGRk7E0qDE9p8Hqjkx6MpCebFJOvPxPkfqu-ITng.cache
597
600
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/MK/MKSn3iii8fftCls3xw4XwTGICzZh2OfVqxKiwo6psTQ.cache
@@ -619,6 +622,7 @@ files:
619
622
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/RQ/RQUnHc8WheunBLgn7V-Yrrm9cdYxr1fqAp9jNkexDrg.cache
620
623
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/RU/RUWGCr1p2-QM0JD8NwJpLrWrH3UwTw8ypOEEnyaHRgM.cache
621
624
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/S-/S-vKRdJnmmIzYIa4KShhx689AY-lTdGFd44UYa-DLFc.cache
625
+ - spec/dummy/tmp/cache/assets/sprockets/v3.0/S-/s-68Cet-NwkcWD1hdtRPnk4BLe2f8_c3yz8wwgU3IVM.cache
622
626
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/S0/S0weHOttlNPgxahIyNUKB3qj2vN71d526XRHMxMje9Q.cache
623
627
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/S7/S7lL2J7tx5oHCtsOvZuBoNGOeOoe4n7qJgZCQGHXfYQ.cache
624
628
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/SM/SMlFyPb3qixKxxPQ6XSkdrOSDxOFptdM4jt1AK4Mync.cache
@@ -693,6 +697,7 @@ files:
693
697
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/l7/l73JBt8d21O2R5jHuAoSF1t3yac5sUyTRinAHEA7Nro.cache
694
698
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/lL/lLc5z7qdJY4WfFBzyGhJnOF31wBBqJoD4OAxYPy23oI.cache
695
699
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/lZ/lZxqodqscAFPbLUWfizriuYB0LstFAJEmIZIknQGjf4.cache
700
+ - spec/dummy/tmp/cache/assets/sprockets/v3.0/m3/m37wFSME__4sotYcIDHML3dMwf2z12lfDYwEPs8CpL4.cache
696
701
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/m4/m4qnz1XKKl5TmVc_nfNUxnDOcWIF3vjCrybysx5S5dE.cache
697
702
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/ml/mlDzBJPZseI3ONA4G-cFVXRf67T5l11vzlCZuXNLCqg.cache
698
703
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/mq/mqM2btO-0T9M5u_Apb-hnetpL9Ot0Za1lmhmbkazXJo.cache
@@ -706,6 +711,7 @@ files:
706
711
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/oc/ocCdznCTiDsf5SnX-XbzboHKIsa5N_0JJvcFaIa0v4k.cache
707
712
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/pZ/pZs_OT7KhpWl5Bw2QXAZBUJv4L4B0ZvjroNOOVNYHew.cache
708
713
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/pi/piPpAsxRDhkhXCpgy5rNfwev2FCllQeOpv2T46jFlgk.cache
714
+ - spec/dummy/tmp/cache/assets/sprockets/v3.0/q-/q-EsjQHItWTFlSBGmW8-AulZEreCZPGfDYCQkjKLfwU.cache
709
715
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/q4/q4iH6hAaHRsNLtNNQwjyuV1nrRqUqSvOP2tOLHUWmw0.cache
710
716
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/qB/qBoVS2DfU2y1_uaxk__lSg4q7qgpRjZ0yCRA62ViaSk.cache
711
717
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/qG/qG4Hk7ZYCV4GcPgAVWFnzBPzGUXMjsPNlWAxzXFDIzY.cache
@@ -714,6 +720,7 @@ files:
714
720
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/qn/qnxANHDXRgytq0YwdMMqTCjJkR_7u-AIYodo6H2yWZk.cache
715
721
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/r2/r2wUxqXPZGyL8yJQ8xQKBW62cJs1uE_kUeiDnjOt3eI.cache
716
722
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/rI/rI8pww981NHG22krf5FbLsuRHjYf85Nlom5uxJQwoqY.cache
723
+ - spec/dummy/tmp/cache/assets/sprockets/v3.0/rS/rSQni9ZoAoIn_skb8lOW2Q9HxC1aIyJNI0z1z2PDXy8.cache
717
724
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/ra/rahIaRydDKWOwY0mWr9MsvBG5ia5q8RgLBZsVUS1Z-k.cache
718
725
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/rd/RdfB0OzMfmjFAubT3THbRNJY7_LwFJZJKrUGU8q3708.cache
719
726
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/rd/rdiz0vLTLXOjXgmyGaa9Rtn9U1rxIR70X39htU2l0uM.cache
@@ -754,10 +761,12 @@ files:
754
761
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/xs/xsz1Xli1rjewlmkdAsFaTqU1QF1bAZ9r2VABTS63a-E.cache
755
762
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/yH/yHR_S3o-CR62iV2PhE_BBYQANZqqn1Hun_xVebhOx0k.cache
756
763
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/yM/yMGwsY99j5fPgf5LWsCwNt4JJdvIJ8T1A9tnEgiNG3k.cache
764
+ - spec/dummy/tmp/cache/assets/sprockets/v3.0/yq/yqa5Gx-ky83VhSrKVlwvpaDYq1dfYgIq-P6jtCKiOy4.cache
757
765
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/z4/z4R50-aot5DTt3qdrnIv3L7tzYF5Ts_OZ_UBkdgZQew.cache
758
766
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/z9/z9RyRiOc7eWfq0AQht0-e2T8BCDWGxuElTNRNyF-i60.cache
759
767
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/zQ/Zqlhmo8u-4j5v6Js-q3mxfbqc-DM0nZ3rQUiMMdtQnQ.cache
760
768
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/zQ/zQpUaxTk07z9j0wKNLDhvRU1cCHLOPsB8nftF3rwGTg.cache
769
+ - spec/dummy/tmp/cache/assets/sprockets/v3.0/zy/zyFIWj-in803X5vhrxqbzUrnpX33zT2LuklveJd32Kk.cache
761
770
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/zy/zyyLbt3lCJcXlGtjIxh7PoGOlX3t6Sr00yVzT6jhtx4.cache
762
771
  - spec/dummy/tmp/pids/server.pid
763
772
  - spec/integration/pages_index_spec.rb
@@ -1032,6 +1041,7 @@ test_files:
1032
1041
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/7e/7ebo33Vd-l__3L9Fxb70DEROgy8a74Ej0vpx68vELLs.cache
1033
1042
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/7e/7eF40Rm_qyH_4Nm_68U1-tDsetTS9nMq8YE9yIyXckw.cache
1034
1043
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/7G/7Gly1atK83fTrN51FSQGTgnfn97DjgF8SBQR1Bd3U-o.cache
1044
+ - spec/dummy/tmp/cache/assets/sprockets/v3.0/82/828BLe0noTyMgq_V063WSWw_WaY9XTMMgFNXdcx6gEs.cache
1035
1045
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/86/86TK63TT3eKKPtgVOilhedFmln3GU_gNl8SLwnYUpVQ.cache
1036
1046
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/8N/8NBHtc1wobpJfiL3tQjpLu8BMvUA4zKT4txyVqj2y50.cache
1037
1047
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/8t/8twZMW-FUpP8p_OEa9QreZAxiMMdK9HkBXmNeXP52S8.cache
@@ -1118,11 +1128,14 @@ test_files:
1118
1128
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/kL/kLvC5Jztau9WmLo1_LQBFT9R6XnmXYSuQHTmhVwLBnU.cache
1119
1129
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/Kn/Kn3GTp-awnb2ge3KQkMJP8bOTW7m0V37vAhd0x-6P20.cache
1120
1130
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/L-/L-P7DErCeB11t9VDUaotF9wkPDAOeyvrG0d5sII281w.cache
1131
+ - spec/dummy/tmp/cache/assets/sprockets/v3.0/L-/L-tnK5VZx1Aiv_fSkdP-0OlOzrjAWlxsNX-WhxHzEnM.cache
1121
1132
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/l7/l73JBt8d21O2R5jHuAoSF1t3yac5sUyTRinAHEA7Nro.cache
1122
1133
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/Lb/Lb-EGRk7E0qDE9p8Hqjkx6MpCebFJOvPxPkfqu-ITng.cache
1134
+ - spec/dummy/tmp/cache/assets/sprockets/v3.0/LD/LDODKNvMFqa_FmuXvwFrXGhcaZ8rfaDSAsHGdKhxqQU.cache
1123
1135
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/lL/lLc5z7qdJY4WfFBzyGhJnOF31wBBqJoD4OAxYPy23oI.cache
1124
1136
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/LO/LOIw_QrLu6EqRv2po1AhlmvJ5T0AcIZuJV0rK15RRx0.cache
1125
1137
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/lZ/lZxqodqscAFPbLUWfizriuYB0LstFAJEmIZIknQGjf4.cache
1138
+ - spec/dummy/tmp/cache/assets/sprockets/v3.0/m3/m37wFSME__4sotYcIDHML3dMwf2z12lfDYwEPs8CpL4.cache
1126
1139
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/m4/m4qnz1XKKl5TmVc_nfNUxnDOcWIF3vjCrybysx5S5dE.cache
1127
1140
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/Mc/Mcd2DhI9dXIrZ2qk3vyeqp8MlR3-uhumgu7L1lZq84o.cache
1128
1141
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/MK/MKSn3iii8fftCls3xw4XwTGICzZh2OfVqxKiwo6psTQ.cache
@@ -1152,6 +1165,7 @@ test_files:
1152
1165
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/PC/PCjtAJWBdT0swUVHaAWwI3bojT1phBdmw9HQisn_pbM.cache
1153
1166
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/pi/piPpAsxRDhkhXCpgy5rNfwev2FCllQeOpv2T46jFlgk.cache
1154
1167
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/pZ/pZs_OT7KhpWl5Bw2QXAZBUJv4L4B0ZvjroNOOVNYHew.cache
1168
+ - spec/dummy/tmp/cache/assets/sprockets/v3.0/q-/q-EsjQHItWTFlSBGmW8-AulZEreCZPGfDYCQkjKLfwU.cache
1155
1169
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/q4/q4iH6hAaHRsNLtNNQwjyuV1nrRqUqSvOP2tOLHUWmw0.cache
1156
1170
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/Q8/Q8A_ahhm51CmbHk4WpTRCpwtI9mxcu2bW6NqhYdcfwM.cache
1157
1171
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/qB/qBoVS2DfU2y1_uaxk__lSg4q7qgpRjZ0yCRA62ViaSk.cache
@@ -1172,8 +1186,10 @@ test_files:
1172
1186
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/RM/RMsrl8AKW4-xiwQlQyHKpF51XeuKQGv6VcSj6lpC-gg.cache
1173
1187
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/ro/ron72ZitBqwTzm-mJk-_TnXub4HXPM6x0Cv4FSERVJA.cache
1174
1188
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/RQ/RQUnHc8WheunBLgn7V-Yrrm9cdYxr1fqAp9jNkexDrg.cache
1189
+ - spec/dummy/tmp/cache/assets/sprockets/v3.0/rS/rSQni9ZoAoIn_skb8lOW2Q9HxC1aIyJNI0z1z2PDXy8.cache
1175
1190
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/RU/RUWGCr1p2-QM0JD8NwJpLrWrH3UwTw8ypOEEnyaHRgM.cache
1176
1191
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/rw/rwAUBS6_7P7KsaV-huzkfaoGbbPCL_TLREXtEGxNGto.cache
1192
+ - spec/dummy/tmp/cache/assets/sprockets/v3.0/S-/s-68Cet-NwkcWD1hdtRPnk4BLe2f8_c3yz8wwgU3IVM.cache
1177
1193
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/S-/S-vKRdJnmmIzYIa4KShhx689AY-lTdGFd44UYa-DLFc.cache
1178
1194
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/S0/S0weHOttlNPgxahIyNUKB3qj2vN71d526XRHMxMje9Q.cache
1179
1195
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/S7/S7lL2J7tx5oHCtsOvZuBoNGOeOoe4n7qJgZCQGHXfYQ.cache
@@ -1243,6 +1259,7 @@ test_files:
1243
1259
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/yM/yMGwsY99j5fPgf5LWsCwNt4JJdvIJ8T1A9tnEgiNG3k.cache
1244
1260
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/YO/YOADM86O0eaqQpwNTmvhU1ArE_pJ2l3pQ-tsCDYZLec.cache
1245
1261
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/YO/YOrKIrDaBMyp989-0d7RjAOGcCESA8wZhtagnByGmVc.cache
1262
+ - spec/dummy/tmp/cache/assets/sprockets/v3.0/yq/yqa5Gx-ky83VhSrKVlwvpaDYq1dfYgIq-P6jtCKiOy4.cache
1246
1263
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/YR/YRS1gAx6MWMkF04LBtqmFEb47i6X3i1nwRTHi8u-Je4.cache
1247
1264
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/Ys/YsRjDc40EirSbmV2_PUdU5IsK6XvVgyfnpwJNPz1Pwk.cache
1248
1265
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/z4/z4R50-aot5DTt3qdrnIv3L7tzYF5Ts_OZ_UBkdgZQew.cache
@@ -1251,6 +1268,7 @@ test_files:
1251
1268
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/Zo/ZofRNaIwOcCjvdrVkwSlvhd9jRO3QapQl9xH08DGz-w.cache
1252
1269
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/zQ/Zqlhmo8u-4j5v6Js-q3mxfbqc-DM0nZ3rQUiMMdtQnQ.cache
1253
1270
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/zQ/zQpUaxTk07z9j0wKNLDhvRU1cCHLOPsB8nftF3rwGTg.cache
1271
+ - spec/dummy/tmp/cache/assets/sprockets/v3.0/zy/zyFIWj-in803X5vhrxqbzUrnpX33zT2LuklveJd32Kk.cache
1254
1272
  - spec/dummy/tmp/cache/assets/sprockets/v3.0/zy/zyyLbt3lCJcXlGtjIxh7PoGOlX3t6Sr00yVzT6jhtx4.cache
1255
1273
  - spec/dummy/tmp/pids/server.pid
1256
1274
  - spec/integration/pages_index_spec.rb