type_station 0.4.6 → 0.4.7

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f386c610f38b2439568a8ebd8aee8a3fc18bd31e
4
- data.tar.gz: fff26e4f5e6a90aeb765043b61eec0286e318ea5
3
+ metadata.gz: 92f4d10b5ab74372d81dbb0f78b9e495450465e5
4
+ data.tar.gz: d30abda18cb1651e201b63e0721e1027dda5ba53
5
5
  SHA512:
6
- metadata.gz: 1dfd02f583cf527f1b3b9fdaf55b25852b653474d33f3522fa0669b98994da9f26e467870f9e214fb55c71696cff77a365d11d1060264dfdbdc88f87f58198b3
7
- data.tar.gz: 562c40e6b32cdc38e5bb83f6f3721df52c90f49181631a777312a8e818fbfc7efec3e0b2e85f24daa70c6910a3bda3bb76abcaba34af93a13fd7d63ec8ab05ec
6
+ metadata.gz: 7e8b1dd7385f75cf20e43869fcb1b79dfe66d5d4c4e738d73050c6942ff406a0401d9a106b66d5a376a0bc636d7737648332eed60743be3e5c091eaedce28546
7
+ data.tar.gz: 08d24095b3c18cbc23336d2cb994e1190d36213c1b1d5c5ed8c5ee0c54cee8726122853994e369b3cd17888618137d60587298ef94df1e7eb16c0400d72a9546
@@ -63,6 +63,7 @@ module TypeStation
63
63
 
64
64
  options[:url] = h.type_station.admin_entity_url(@object)
65
65
  options[:create_url] = h.type_station.admin_entities_url
66
+ options[:current_user] = h.type_station_current_user
66
67
 
67
68
  TypeStation::Blocks::Entity.new(h.type_station_authorise, @object, options).render(content)
68
69
  end
@@ -29,7 +29,7 @@ module TypeStation
29
29
  end
30
30
 
31
31
  def model_fields
32
- lambda_binging = Struct.new(:model).new(model)
32
+ lambda_binging = Struct.new(:model, :current_user).new(model, options[:current_user])
33
33
  options[:fields].deep_dup.map do |field|
34
34
  if field[:options] && field[:options].is_a?(Proc)
35
35
  field[:options] = lambda_binging.instance_exec(&field[:options])
@@ -30,7 +30,8 @@ module TypeStation
30
30
 
31
31
  def find_by_path(path)
32
32
  search_path = File.join('',path)
33
- self.or({path: search_path}, {:old_paths.in => [search_path]}).first
33
+ pages = self.or({path: search_path}, {:old_paths.in => [search_path]}).to_a
34
+ pages.select {|p| p.path == search_path}.first.presence || pages.select {|p| p.old_paths.include?(search_path) }.first
34
35
  end
35
36
  end
36
37
 
@@ -51,7 +52,7 @@ module TypeStation
51
52
  def store_old_path
52
53
  if self.path.present?
53
54
  self.old_paths << self.path
54
- self.old_paths.uniq
55
+ self.old_paths = self.old_paths.uniq
55
56
  end
56
57
  end
57
58
 
@@ -2,7 +2,7 @@ module TypeStation
2
2
  module Version
3
3
  MAJOR = 0
4
4
  MINOR = 4
5
- TINY = 6
5
+ TINY = 7
6
6
  PRE = nil
7
7
  STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
8
8
  end
@@ -2,7 +2,7 @@ class IndexPresenter < TypeStation::Presenter
2
2
  presents :page
3
3
 
4
4
  form_field :title, type: :text, label: 'Title'
5
- form_field :template_name, type: :select, label: 'Section template', options: -> { model; [['blank', 'blank_index'], ['YEAH', 'eay'],['Cool', 'v'], ['Blah', 'b']] }
5
+ form_field :template_name, type: :select, label: 'Section template', options: -> { model; [['blank', 'blank_index'], ['YEAH', 'eay'],['Cool', 'v'], ['Blah', 'b'], ['Email', current_user.email]] }
6
6
  form_field :test_b, type: :text, label: 'Test', default: 'ssss', required: true
7
7
  form_field :test_c, type: :html, label: 'Test c', default: 'ssss', required: true
8
8
  form_field :tags, type: 'multiple_select', label: 'Tags', options: -> { [['Tag 1', 'tag_1'], ['Tag 2', 'tag_2']] }
@@ -17,7 +17,7 @@ TypeStation.configure do |config|
17
17
  config.authorise_with = Proc.new { true }
18
18
 
19
19
  config.current_user = Proc.new do
20
- {}
20
+ Struct.new(:email).new("rich@madwire.co.uk")
21
21
  end
22
22
 
23
23
  end
@@ -20477,3 +20477,679 @@ Started GET "/assets/type_station/application.js?body=1" for 172.17.0.1 at 2016-
20477
20477
 
20478
20478
 
20479
20479
  Started GET "/assets/medium-editor.js?body=1" for 172.17.0.1 at 2016-06-28 15:59:45 +0000
20480
+
20481
+
20482
+ Started GET "/type_station" for 172.17.0.1 at 2016-09-19 20:33:15 +0000
20483
+ Processing by TypeStation::PagesController#index as HTML
20484
+ MONGODB | Adding db:27017 to the cluster.
20485
+ 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}
20486
+ MONGODB | db:27017 | type_station_development.find | SUCCEEDED | 0.0017646769999999999s
20487
+ MONGODB | db:27017 | type_station_development.find | STARTED | {"find"=>"type_station_entities", "filter"=>{"parent_id"=>BSON::ObjectId('573f10870e34570009e3cc2d'), "_type"=>"TypeStation::Page"}, "sort"=>{"position"=>1}}
20488
+ MONGODB | db:27017 | type_station_development.find | SUCCEEDED | 0.001198292s
20489
+ MONGODB | db:27017 | type_station_development.find | STARTED | {"find"=>"type_station_entities", "filter"=>{"parent_id"=>BSON::ObjectId('573f10870e34570009e3cc2d'), "_type"=>"Team"}, "sort"=>{"position"=>1}}
20490
+ MONGODB | db:27017 | type_station_development.find | SUCCEEDED | 0.001071171s
20491
+ Rendered /workspace/app/views/type_station/toolbars/_admin_bar.html.haml (29.3ms)
20492
+ Rendered pages/index_other.html.erb within layouts/application (659.2ms)
20493
+ Completed 200 OK in 3296ms (Views: 3196.6ms)
20494
+
20495
+
20496
+ Started GET "/assets/application.css?body=1" for 172.17.0.1 at 2016-09-19 20:33:19 +0000
20497
+
20498
+
20499
+ Started GET "/assets/medium-editor/medium-editor.css?body=1" for 172.17.0.1 at 2016-09-19 20:33:19 +0000
20500
+
20501
+
20502
+ Started GET "/assets/jquery.js?body=1" for 172.17.0.1 at 2016-09-19 20:33:19 +0000
20503
+
20504
+
20505
+ Started GET "/assets/jquery.textcomplete.css?body=1" for 172.17.0.1 at 2016-09-19 20:33:19 +0000
20506
+
20507
+
20508
+ Started GET "/assets/application.js?body=1" for 172.17.0.1 at 2016-09-19 20:33:19 +0000
20509
+
20510
+
20511
+ Started GET "/assets/medium-editor/themes/bootstrap.css?body=1" for 172.17.0.1 at 2016-09-19 20:33:20 +0000
20512
+
20513
+
20514
+ Started GET "/assets/chosen.css?body=1" for 172.17.0.1 at 2016-09-19 20:33:20 +0000
20515
+
20516
+
20517
+ Started GET "/assets/drop-theme-arrows-bounce-dark.css?body=1" for 172.17.0.1 at 2016-09-19 20:33:20 +0000
20518
+
20519
+
20520
+ Started GET "/assets/vex.css?body=1" for 172.17.0.1 at 2016-09-19 20:33:20 +0000
20521
+
20522
+
20523
+ Started GET "/assets/vex-theme-os.css?body=1" for 172.17.0.1 at 2016-09-19 20:33:20 +0000
20524
+
20525
+
20526
+ Started GET "/assets/ionicons.css?body=1" for 172.17.0.1 at 2016-09-19 20:33:20 +0000
20527
+
20528
+
20529
+ Started GET "/assets/type_station/admin_bar.css?body=1" for 172.17.0.1 at 2016-09-19 20:33:20 +0000
20530
+
20531
+
20532
+ Started GET "/assets/type_station/base.css?body=1" for 172.17.0.1 at 2016-09-19 20:33:21 +0000
20533
+
20534
+
20535
+ Started GET "/assets/type_station/application.css?body=1" for 172.17.0.1 at 2016-09-19 20:33:21 +0000
20536
+
20537
+
20538
+ Started GET "/assets/jquery-fileupload/vendor/jquery.ui.widget.js?body=1" for 172.17.0.1 at 2016-09-19 20:33:21 +0000
20539
+
20540
+
20541
+ Started GET "/assets/jquery-fileupload/jquery.iframe-transport.js?body=1" for 172.17.0.1 at 2016-09-19 20:33:21 +0000
20542
+
20543
+
20544
+ Started GET "/assets/jquery-fileupload/jquery.fileupload.js?body=1" for 172.17.0.1 at 2016-09-19 20:33:21 +0000
20545
+
20546
+
20547
+ Started GET "/assets/jquery-fileupload/basic.js?body=1" for 172.17.0.1 at 2016-09-19 20:33:21 +0000
20548
+
20549
+
20550
+ Started GET "/assets/jquery.cloudinary.js?body=1" for 172.17.0.1 at 2016-09-19 20:33:21 +0000
20551
+
20552
+
20553
+ Started GET "/assets/jquery.textcomplete.js?body=1" for 172.17.0.1 at 2016-09-19 20:33:22 +0000
20554
+
20555
+
20556
+ Started GET "/assets/classList.js?body=1" for 172.17.0.1 at 2016-09-19 20:33:22 +0000
20557
+
20558
+
20559
+ Started GET "/assets/medium-editor.js?body=1" for 172.17.0.1 at 2016-09-19 20:33:22 +0000
20560
+
20561
+
20562
+ Started GET "/assets/chosen.jquery.min.js?body=1" for 172.17.0.1 at 2016-09-19 20:33:22 +0000
20563
+
20564
+
20565
+ Started GET "/assets/drop.js?body=1" for 172.17.0.1 at 2016-09-19 20:33:22 +0000
20566
+
20567
+
20568
+ Started GET "/assets/vex.combined.min.js?body=1" for 172.17.0.1 at 2016-09-19 20:33:22 +0000
20569
+
20570
+
20571
+ Started GET "/assets/type_station/lib/ts.js?body=1" for 172.17.0.1 at 2016-09-19 20:33:22 +0000
20572
+
20573
+
20574
+ Started GET "/assets/type_station/lib/models.js?body=1" for 172.17.0.1 at 2016-09-19 20:33:23 +0000
20575
+
20576
+
20577
+ Started GET "/assets/type_station/lib/helpers.js?body=1" for 172.17.0.1 at 2016-09-19 20:33:23 +0000
20578
+
20579
+
20580
+ Started GET "/assets/type_station/editables/admin_bar.js?body=1" for 172.17.0.1 at 2016-09-19 20:33:23 +0000
20581
+
20582
+
20583
+ Started GET "/assets/type_station/editables/entity_editor.js?body=1" for 172.17.0.1 at 2016-09-19 20:33:23 +0000
20584
+
20585
+
20586
+ Started GET "/assets/type_station/editables/file_editor.js?body=1" for 172.17.0.1 at 2016-09-19 20:33:23 +0000
20587
+
20588
+
20589
+ Started GET "/assets/type_station/editables/link_finder.js?body=1" for 172.17.0.1 at 2016-09-19 20:33:23 +0000
20590
+
20591
+
20592
+ Started GET "/assets/type_station/editables/text_html_editor.js?body=1" for 172.17.0.1 at 2016-09-19 20:33:23 +0000
20593
+
20594
+
20595
+ Started GET "/assets/type_station/init.js?body=1" for 172.17.0.1 at 2016-09-19 20:33:23 +0000
20596
+
20597
+
20598
+ Started GET "/assets/type_station/application.js?body=1" for 172.17.0.1 at 2016-09-19 20:33:24 +0000
20599
+
20600
+
20601
+ Started GET "/assets/ionicons.ttf?v=2.0.0" for 172.17.0.1 at 2016-09-19 20:33:24 +0000
20602
+
20603
+
20604
+ Started PATCH "/type_station/_admin/entities/57729daf0c00300007a0e2b6" for 172.17.0.1 at 2016-09-19 20:33:30 +0000
20605
+ Processing by TypeStation::Admin::EntitiesController#update as JSON
20606
+ Parameters: {"direction"=>"move_up", "id"=>"57729daf0c00300007a0e2b6", "entity"=>{}}
20607
+ Can't verify CSRF token authenticity
20608
+ MONGODB | db:27017 | type_station_development.find | STARTED | {"find"=>"type_station_entities", "filter"=>{"_id"=>BSON::ObjectId('57729daf0c00300007a0e2b6')}, "sort"=>{"position"=>1}}
20609
+ MONGODB | db:27017 | type_station_development.find | SUCCEEDED | 0.0030656629999999997s
20610
+ MONGODB | db:27017 | type_station_development.find | STARTED | {"find"=>"type_station_entities", "filter"=>{"parent_id"=>BSON::ObjectId('573f10870e34570009e3cc2d'), "_id"=>{"$ne"=>BSON::ObjectId('57729daf0c00300007a0e2b6')}, "position"=>{"$lt"=>5}}, "sort"=>{"position"=>1}, "projection"=>{"_id"=>1}, "limit"=>1}
20611
+ MONGODB | db:27017 | type_station_development.find | SUCCEEDED | 0.000520753s
20612
+ MONGODB | db:27017 | type_station_development.find | STARTED | {"find"=>"type_station_entities", "filter"=>{"parent_id"=>BSON::ObjectId('573f10870e34570009e3cc2d'), "_id"=>{"$ne"=>BSON::ObjectId('57729daf0c00300007a0e2b6')}, "position"=>4}, "sort"=>{"position"=>1}, "limit"=>1, "singleBatch"=>true}
20613
+ MONGODB | db:27017 | type_station_development.find | SUCCEEDED | 0.0006561749999999999s
20614
+ MONGODB | db:27017 | type_station_development.update | STARTED | {"update"=>"type_station_entities", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('57729d720c00300007d34898')}, "u"=>{"$inc"=>{"position"=>1}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
20615
+ MONGODB | db:27017 | type_station_development.update | SUCCEEDED | 0.0006243350000000001s
20616
+ MONGODB | db:27017 | type_station_development.update | STARTED | {"update"=>"type_station_entities", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('57729daf0c00300007a0e2b6')}, "u"=>{"$inc"=>{"position"=>-1}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
20617
+ MONGODB | db:27017 | type_station_development.update | SUCCEEDED | 0.000490516s
20618
+ MONGODB | db:27017 | type_station_development.find | STARTED | {"find"=>"type_station_entities", "filter"=>{"_id"=>BSON::ObjectId('573f10870e34570009e3cc2d')}, "sort"=>{"position"=>1}, "limit"=>1, "singleBatch"=>true}
20619
+ MONGODB | db:27017 | type_station_development.find | SUCCEEDED | 0.0008164509999999999s
20620
+ MONGODB | db:27017 | type_station_development.find | STARTED | {"find"=>"type_station_entities", "filter"=>{"_id"=>{"$in"=>[BSON::ObjectId('573f10870e34570009e3cc2d')]}}, "sort"=>{"depth"=>1}}
20621
+ MONGODB | db:27017 | type_station_development.find | SUCCEEDED | 0.000863844s
20622
+ 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}
20623
+ MONGODB | db:27017 | type_station_development.find | SUCCEEDED | 0.000597475s
20624
+ MONGODB | db:27017 | type_station_development.update | STARTED | {"update"=>"type_station_entities", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('57729daf0c00300007a0e2b6')}, "u"=>{"$set"=>{"old_paths"=>["/", "/blah"]}}, "multi"=>false, "upsert"=>false}], "ordered"=>true}
20625
+ MONGODB | db:27017 | type_station_development.update | SUCCEEDED | 0.000519871s
20626
+ MONGODB | db:27017 | type_station_development.count | STARTED | {"count"=>"type_station_entities", "query"=>{"parent_id"=>BSON::ObjectId('57729daf0c00300007a0e2b6')}}
20627
+ MONGODB | db:27017 | type_station_development.count | SUCCEEDED | 0.00037579000000000003s
20628
+ Completed 200 OK in 60ms (Views: 0.3ms)
20629
+
20630
+
20631
+ Started GET "/type_station" for 172.17.0.1 at 2016-09-19 20:33:30 +0000
20632
+ Processing by TypeStation::PagesController#index as HTML
20633
+ 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}
20634
+ MONGODB | db:27017 | type_station_development.find | SUCCEEDED | 0.000721809s
20635
+ MONGODB | db:27017 | type_station_development.find | STARTED | {"find"=>"type_station_entities", "filter"=>{"parent_id"=>BSON::ObjectId('573f10870e34570009e3cc2d'), "_type"=>"TypeStation::Page"}, "sort"=>{"position"=>1}}
20636
+ MONGODB | db:27017 | type_station_development.find | SUCCEEDED | 0.0009210830000000001s
20637
+ MONGODB | db:27017 | type_station_development.find | STARTED | {"find"=>"type_station_entities", "filter"=>{"parent_id"=>BSON::ObjectId('573f10870e34570009e3cc2d'), "_type"=>"Team"}, "sort"=>{"position"=>1}}
20638
+ MONGODB | db:27017 | type_station_development.find | SUCCEEDED | 0.000707196s
20639
+ Rendered /workspace/app/views/type_station/toolbars/_admin_bar.html.haml (12.6ms)
20640
+ Rendered pages/index_other.html.erb within layouts/application (251.8ms)
20641
+ Completed 200 OK in 1244ms (Views: 1240.1ms)
20642
+
20643
+
20644
+ Started GET "/assets/jquery.js?body=1" for 172.17.0.1 at 2016-09-19 20:33:32 +0000
20645
+
20646
+
20647
+ Started GET "/assets/application.css?body=1" for 172.17.0.1 at 2016-09-19 20:33:32 +0000
20648
+
20649
+
20650
+ Started GET "/assets/medium-editor/themes/bootstrap.css?body=1" for 172.17.0.1 at 2016-09-19 20:33:32 +0000
20651
+
20652
+
20653
+ Started GET "/assets/jquery.textcomplete.css?body=1" for 172.17.0.1 at 2016-09-19 20:33:32 +0000
20654
+
20655
+
20656
+ Started GET "/assets/medium-editor/medium-editor.css?body=1" for 172.17.0.1 at 2016-09-19 20:33:32 +0000
20657
+
20658
+
20659
+ Started GET "/assets/application.js?body=1" for 172.17.0.1 at 2016-09-19 20:33:32 +0000
20660
+
20661
+
20662
+ Started GET "/assets/chosen.css?body=1" for 172.17.0.1 at 2016-09-19 20:33:32 +0000
20663
+
20664
+
20665
+ Started GET "/assets/drop-theme-arrows-bounce-dark.css?body=1" for 172.17.0.1 at 2016-09-19 20:33:33 +0000
20666
+
20667
+
20668
+ Started GET "/assets/vex.css?body=1" for 172.17.0.1 at 2016-09-19 20:33:33 +0000
20669
+
20670
+
20671
+ Started GET "/assets/vex-theme-os.css?body=1" for 172.17.0.1 at 2016-09-19 20:33:33 +0000
20672
+
20673
+
20674
+ Started GET "/assets/ionicons.css?body=1" for 172.17.0.1 at 2016-09-19 20:33:33 +0000
20675
+
20676
+
20677
+ Started GET "/assets/type_station/admin_bar.css?body=1" for 172.17.0.1 at 2016-09-19 20:33:33 +0000
20678
+
20679
+
20680
+ Started GET "/assets/type_station/base.css?body=1" for 172.17.0.1 at 2016-09-19 20:33:33 +0000
20681
+
20682
+
20683
+ Started GET "/assets/type_station/application.css?body=1" for 172.17.0.1 at 2016-09-19 20:33:33 +0000
20684
+
20685
+
20686
+ Started GET "/assets/jquery-fileupload/vendor/jquery.ui.widget.js?body=1" for 172.17.0.1 at 2016-09-19 20:33:33 +0000
20687
+
20688
+
20689
+ Started GET "/assets/jquery-fileupload/jquery.iframe-transport.js?body=1" for 172.17.0.1 at 2016-09-19 20:33:34 +0000
20690
+
20691
+
20692
+ Started GET "/assets/jquery-fileupload/jquery.fileupload.js?body=1" for 172.17.0.1 at 2016-09-19 20:33:34 +0000
20693
+
20694
+
20695
+ Started GET "/assets/jquery-fileupload/basic.js?body=1" for 172.17.0.1 at 2016-09-19 20:33:34 +0000
20696
+
20697
+
20698
+ Started GET "/assets/jquery.cloudinary.js?body=1" for 172.17.0.1 at 2016-09-19 20:33:34 +0000
20699
+
20700
+
20701
+ Started GET "/assets/jquery.textcomplete.js?body=1" for 172.17.0.1 at 2016-09-19 20:33:34 +0000
20702
+
20703
+
20704
+ Started GET "/assets/classList.js?body=1" for 172.17.0.1 at 2016-09-19 20:33:34 +0000
20705
+
20706
+
20707
+ Started GET "/assets/chosen.jquery.min.js?body=1" for 172.17.0.1 at 2016-09-19 20:33:34 +0000
20708
+
20709
+
20710
+ Started GET "/assets/drop.js?body=1" for 172.17.0.1 at 2016-09-19 20:33:34 +0000
20711
+
20712
+
20713
+ Started GET "/assets/vex.combined.min.js?body=1" for 172.17.0.1 at 2016-09-19 20:33:34 +0000
20714
+
20715
+
20716
+ Started GET "/assets/type_station/lib/ts.js?body=1" for 172.17.0.1 at 2016-09-19 20:33:35 +0000
20717
+
20718
+
20719
+ Started GET "/assets/type_station/lib/models.js?body=1" for 172.17.0.1 at 2016-09-19 20:33:35 +0000
20720
+
20721
+
20722
+ Started GET "/assets/type_station/lib/helpers.js?body=1" for 172.17.0.1 at 2016-09-19 20:33:35 +0000
20723
+
20724
+
20725
+ Started GET "/assets/type_station/editables/admin_bar.js?body=1" for 172.17.0.1 at 2016-09-19 20:33:35 +0000
20726
+
20727
+
20728
+ Started GET "/assets/type_station/editables/entity_editor.js?body=1" for 172.17.0.1 at 2016-09-19 20:33:35 +0000
20729
+
20730
+
20731
+ Started GET "/assets/type_station/editables/file_editor.js?body=1" for 172.17.0.1 at 2016-09-19 20:33:35 +0000
20732
+
20733
+
20734
+ Started GET "/assets/type_station/editables/link_finder.js?body=1" for 172.17.0.1 at 2016-09-19 20:33:35 +0000
20735
+
20736
+
20737
+ Started GET "/assets/type_station/editables/text_html_editor.js?body=1" for 172.17.0.1 at 2016-09-19 20:33:35 +0000
20738
+
20739
+
20740
+ Started GET "/assets/type_station/init.js?body=1" for 172.17.0.1 at 2016-09-19 20:33:36 +0000
20741
+
20742
+
20743
+ Started GET "/assets/type_station/application.js?body=1" for 172.17.0.1 at 2016-09-19 20:33:36 +0000
20744
+
20745
+
20746
+ Started GET "/assets/medium-editor.js?body=1" for 172.17.0.1 at 2016-09-19 20:33:36 +0000
20747
+
20748
+
20749
+ Started PATCH "/type_station/_admin/entities/573f10870e34570009e3cc2d" for 172.17.0.1 at 2016-09-19 20:33:46 +0000
20750
+ Processing by TypeStation::Admin::EntitiesController#update as JSON
20751
+ Parameters: {"contents"=>[{"field"=>"title_c", "value"=>"\n Lorem ipsum dolor sit amet, comjkkknsectetur adipisicing elit, sed do eiusmod\n tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,\n quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo\n consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse\n cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non\n proident, sunt in culpa qui officia deserunt mollit anim id est laborumddd.\n", "type"=>"text"}], "id"=>"573f10870e34570009e3cc2d", "entity"=>{}}
20752
+ Can't verify CSRF token authenticity
20753
+ MONGODB | db:27017 | type_station_development.find | STARTED | {"find"=>"type_station_entities", "filter"=>{"_id"=>BSON::ObjectId('573f10870e34570009e3cc2d')}, "sort"=>{"position"=>1}}
20754
+ MONGODB | db:27017 | type_station_development.find | SUCCEEDED | 0.000615104s
20755
+ 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}
20756
+ MONGODB | db:27017 | type_station_development.find | SUCCEEDED | 0.0008999790000000001s
20757
+ MONGODB | db:27017 | type_station_development.update | STARTED | {"update"=>"type_station_entities", "updates"=>[{"q"=>{"_id"=>BSON::ObjectId('573f10870e34570009e3cc2d')}, "u"=>{"$set"=>{"old_paths"=>["/"], "contents.4.text"=>"\n Lorem ipsum dolor sit amet, comjkkknsectetur adipisicing elit, sed do eiusmod\n temp...
20758
+ MONGODB | db:27017 | type_station_development.update | SUCCEEDED | 0.000814512s
20759
+ MONGODB | db:27017 | type_station_development.count | STARTED | {"count"=>"type_station_entities", "query"=>{"parent_id"=>BSON::ObjectId('573f10870e34570009e3cc2d')}}
20760
+ MONGODB | db:27017 | type_station_development.count | SUCCEEDED | 0.001623876s
20761
+ MONGODB | db:27017 | type_station_development.find | STARTED | {"find"=>"type_station_entities", "filter"=>{"parent_id"=>BSON::ObjectId('573f10870e34570009e3cc2d')}, "sort"=>{"position"=>1}}
20762
+ MONGODB | db:27017 | type_station_development.find | SUCCEEDED | 0.000789042s
20763
+ Completed 200 OK in 40ms (Views: 0.3ms)
20764
+
20765
+
20766
+ Started GET "/type_station" for 172.17.0.1 at 2016-09-19 20:33:48 +0000
20767
+ Processing by TypeStation::PagesController#index as HTML
20768
+ 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}
20769
+ MONGODB | db:27017 | type_station_development.find | SUCCEEDED | 0.000715035s
20770
+ MONGODB | db:27017 | type_station_development.find | STARTED | {"find"=>"type_station_entities", "filter"=>{"parent_id"=>BSON::ObjectId('573f10870e34570009e3cc2d'), "_type"=>"TypeStation::Page"}, "sort"=>{"position"=>1}}
20771
+ MONGODB | db:27017 | type_station_development.find | SUCCEEDED | 0.001017113s
20772
+ MONGODB | db:27017 | type_station_development.find | STARTED | {"find"=>"type_station_entities", "filter"=>{"parent_id"=>BSON::ObjectId('573f10870e34570009e3cc2d'), "_type"=>"Team"}, "sort"=>{"position"=>1}}
20773
+ MONGODB | db:27017 | type_station_development.find | SUCCEEDED | 0.0012113229999999998s
20774
+ Rendered /workspace/app/views/type_station/toolbars/_admin_bar.html.haml (12.2ms)
20775
+ Rendered pages/index_other.html.erb within layouts/application (244.8ms)
20776
+ Completed 200 OK in 1130ms (Views: 1126.4ms)
20777
+
20778
+
20779
+ Started GET "/assets/jquery.js?body=1" for 172.17.0.1 at 2016-09-19 20:33:49 +0000
20780
+
20781
+
20782
+ Started GET "/assets/medium-editor/themes/bootstrap.css?body=1" for 172.17.0.1 at 2016-09-19 20:33:49 +0000
20783
+
20784
+
20785
+ Started GET "/assets/application.css?body=1" for 172.17.0.1 at 2016-09-19 20:33:49 +0000
20786
+
20787
+
20788
+ Started GET "/assets/application.js?body=1" for 172.17.0.1 at 2016-09-19 20:33:49 +0000
20789
+
20790
+
20791
+ Started GET "/assets/jquery.textcomplete.css?body=1" for 172.17.0.1 at 2016-09-19 20:33:49 +0000
20792
+
20793
+
20794
+ Started GET "/assets/medium-editor/medium-editor.css?body=1" for 172.17.0.1 at 2016-09-19 20:33:50 +0000
20795
+
20796
+
20797
+ Started GET "/assets/chosen.css?body=1" for 172.17.0.1 at 2016-09-19 20:33:50 +0000
20798
+
20799
+
20800
+ Started GET "/assets/drop-theme-arrows-bounce-dark.css?body=1" for 172.17.0.1 at 2016-09-19 20:33:50 +0000
20801
+
20802
+
20803
+ Started GET "/assets/vex.css?body=1" for 172.17.0.1 at 2016-09-19 20:33:50 +0000
20804
+
20805
+
20806
+ Started GET "/assets/vex-theme-os.css?body=1" for 172.17.0.1 at 2016-09-19 20:33:50 +0000
20807
+
20808
+
20809
+ Started GET "/assets/ionicons.css?body=1" for 172.17.0.1 at 2016-09-19 20:33:50 +0000
20810
+
20811
+
20812
+ Started GET "/assets/type_station/admin_bar.css?body=1" for 172.17.0.1 at 2016-09-19 20:33:50 +0000
20813
+
20814
+
20815
+ Started GET "/assets/type_station/base.css?body=1" for 172.17.0.1 at 2016-09-19 20:33:50 +0000
20816
+
20817
+
20818
+ Started GET "/assets/type_station/application.css?body=1" for 172.17.0.1 at 2016-09-19 20:33:50 +0000
20819
+
20820
+
20821
+ Started GET "/assets/jquery-fileupload/vendor/jquery.ui.widget.js?body=1" for 172.17.0.1 at 2016-09-19 20:33:51 +0000
20822
+
20823
+
20824
+ Started GET "/assets/jquery-fileupload/jquery.iframe-transport.js?body=1" for 172.17.0.1 at 2016-09-19 20:33:51 +0000
20825
+
20826
+
20827
+ Started GET "/assets/jquery-fileupload/jquery.fileupload.js?body=1" for 172.17.0.1 at 2016-09-19 20:33:51 +0000
20828
+
20829
+
20830
+ Started GET "/assets/jquery-fileupload/basic.js?body=1" for 172.17.0.1 at 2016-09-19 20:33:51 +0000
20831
+
20832
+
20833
+ Started GET "/assets/jquery.cloudinary.js?body=1" for 172.17.0.1 at 2016-09-19 20:33:51 +0000
20834
+
20835
+
20836
+ Started GET "/assets/jquery.textcomplete.js?body=1" for 172.17.0.1 at 2016-09-19 20:33:51 +0000
20837
+
20838
+
20839
+ Started GET "/assets/classList.js?body=1" for 172.17.0.1 at 2016-09-19 20:33:51 +0000
20840
+
20841
+
20842
+ Started GET "/assets/medium-editor.js?body=1" for 172.17.0.1 at 2016-09-19 20:33:51 +0000
20843
+
20844
+
20845
+ Started GET "/assets/chosen.jquery.min.js?body=1" for 172.17.0.1 at 2016-09-19 20:33:51 +0000
20846
+
20847
+
20848
+ Started GET "/assets/drop.js?body=1" for 172.17.0.1 at 2016-09-19 20:33:52 +0000
20849
+
20850
+
20851
+ Started GET "/assets/vex.combined.min.js?body=1" for 172.17.0.1 at 2016-09-19 20:33:52 +0000
20852
+
20853
+
20854
+ Started GET "/assets/type_station/lib/ts.js?body=1" for 172.17.0.1 at 2016-09-19 20:33:52 +0000
20855
+
20856
+
20857
+ Started GET "/assets/type_station/lib/models.js?body=1" for 172.17.0.1 at 2016-09-19 20:33:52 +0000
20858
+
20859
+
20860
+ Started GET "/assets/type_station/lib/helpers.js?body=1" for 172.17.0.1 at 2016-09-19 20:33:52 +0000
20861
+
20862
+
20863
+ Started GET "/assets/type_station/editables/admin_bar.js?body=1" for 172.17.0.1 at 2016-09-19 20:33:52 +0000
20864
+
20865
+
20866
+ Started GET "/assets/type_station/editables/entity_editor.js?body=1" for 172.17.0.1 at 2016-09-19 20:33:52 +0000
20867
+
20868
+
20869
+ Started GET "/assets/type_station/editables/file_editor.js?body=1" for 172.17.0.1 at 2016-09-19 20:33:52 +0000
20870
+
20871
+
20872
+ Started GET "/assets/type_station/editables/link_finder.js?body=1" for 172.17.0.1 at 2016-09-19 20:33:52 +0000
20873
+
20874
+
20875
+ Started GET "/assets/type_station/editables/text_html_editor.js?body=1" for 172.17.0.1 at 2016-09-19 20:33:52 +0000
20876
+
20877
+
20878
+ Started GET "/assets/type_station/init.js?body=1" for 172.17.0.1 at 2016-09-19 20:33:53 +0000
20879
+
20880
+
20881
+ Started GET "/assets/type_station/application.js?body=1" for 172.17.0.1 at 2016-09-19 20:33:53 +0000
20882
+
20883
+
20884
+ Started GET "/type_station" for 172.17.0.1 at 2016-09-19 20:36:54 +0000
20885
+ Processing by TypeStation::PagesController#index as HTML
20886
+ MONGODB | Adding db:27017 to the cluster.
20887
+ 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}
20888
+ MONGODB | db:27017 | type_station_development.find | SUCCEEDED | 0.001606753s
20889
+ MONGODB | db:27017 | type_station_development.find | STARTED | {"find"=>"type_station_entities", "filter"=>{"parent_id"=>BSON::ObjectId('573f10870e34570009e3cc2d'), "_type"=>"TypeStation::Page"}, "sort"=>{"position"=>1}}
20890
+ MONGODB | db:27017 | type_station_development.find | SUCCEEDED | 0.00113937s
20891
+ MONGODB | db:27017 | type_station_development.find | STARTED | {"find"=>"type_station_entities", "filter"=>{"parent_id"=>BSON::ObjectId('573f10870e34570009e3cc2d'), "_type"=>"Team"}, "sort"=>{"position"=>1}}
20892
+ MONGODB | db:27017 | type_station_development.find | SUCCEEDED | 0.000769573s
20893
+ Rendered /workspace/app/views/type_station/toolbars/_admin_bar.html.haml (32.6ms)
20894
+ Rendered pages/index_other.html.erb within layouts/application (657.1ms)
20895
+ Completed 200 OK in 2655ms (Views: 2562.0ms)
20896
+
20897
+
20898
+ Started GET "/assets/jquery.js?body=1" for 172.17.0.1 at 2016-09-19 20:36:57 +0000
20899
+
20900
+
20901
+ Started GET "/assets/medium-editor/medium-editor.css?body=1" for 172.17.0.1 at 2016-09-19 20:36:57 +0000
20902
+
20903
+
20904
+ Started GET "/assets/application.css?body=1" for 172.17.0.1 at 2016-09-19 20:36:58 +0000
20905
+
20906
+
20907
+ Started GET "/assets/medium-editor/themes/bootstrap.css?body=1" for 172.17.0.1 at 2016-09-19 20:36:58 +0000
20908
+
20909
+
20910
+ Started GET "/assets/jquery.textcomplete.css?body=1" for 172.17.0.1 at 2016-09-19 20:36:58 +0000
20911
+
20912
+
20913
+ Started GET "/assets/application.js?body=1" for 172.17.0.1 at 2016-09-19 20:36:58 +0000
20914
+
20915
+
20916
+ Started GET "/assets/chosen.css?body=1" for 172.17.0.1 at 2016-09-19 20:36:58 +0000
20917
+
20918
+
20919
+ Started GET "/assets/drop-theme-arrows-bounce-dark.css?body=1" for 172.17.0.1 at 2016-09-19 20:36:58 +0000
20920
+
20921
+
20922
+ Started GET "/assets/vex.css?body=1" for 172.17.0.1 at 2016-09-19 20:36:58 +0000
20923
+
20924
+
20925
+ Started GET "/assets/vex-theme-os.css?body=1" for 172.17.0.1 at 2016-09-19 20:36:59 +0000
20926
+
20927
+
20928
+ Started GET "/assets/ionicons.css?body=1" for 172.17.0.1 at 2016-09-19 20:36:59 +0000
20929
+
20930
+
20931
+ Started GET "/assets/type_station/admin_bar.css?body=1" for 172.17.0.1 at 2016-09-19 20:36:59 +0000
20932
+
20933
+
20934
+ Started GET "/assets/type_station/base.css?body=1" for 172.17.0.1 at 2016-09-19 20:36:59 +0000
20935
+
20936
+
20937
+ Started GET "/assets/type_station/application.css?body=1" for 172.17.0.1 at 2016-09-19 20:36:59 +0000
20938
+
20939
+
20940
+ Started GET "/assets/jquery-fileupload/vendor/jquery.ui.widget.js?body=1" for 172.17.0.1 at 2016-09-19 20:36:59 +0000
20941
+
20942
+
20943
+ Started GET "/assets/jquery-fileupload/jquery.iframe-transport.js?body=1" for 172.17.0.1 at 2016-09-19 20:36:59 +0000
20944
+
20945
+
20946
+ Started GET "/assets/jquery-fileupload/jquery.fileupload.js?body=1" for 172.17.0.1 at 2016-09-19 20:36:59 +0000
20947
+
20948
+
20949
+ Started GET "/assets/jquery-fileupload/basic.js?body=1" for 172.17.0.1 at 2016-09-19 20:37:00 +0000
20950
+
20951
+
20952
+ Started GET "/assets/jquery.cloudinary.js?body=1" for 172.17.0.1 at 2016-09-19 20:37:00 +0000
20953
+
20954
+
20955
+ Started GET "/assets/jquery.textcomplete.js?body=1" for 172.17.0.1 at 2016-09-19 20:37:00 +0000
20956
+
20957
+
20958
+ Started GET "/assets/classList.js?body=1" for 172.17.0.1 at 2016-09-19 20:37:00 +0000
20959
+
20960
+
20961
+ Started GET "/assets/chosen.jquery.min.js?body=1" for 172.17.0.1 at 2016-09-19 20:37:00 +0000
20962
+
20963
+
20964
+ Started GET "/assets/drop.js?body=1" for 172.17.0.1 at 2016-09-19 20:37:00 +0000
20965
+
20966
+
20967
+ Started GET "/assets/vex.combined.min.js?body=1" for 172.17.0.1 at 2016-09-19 20:37:00 +0000
20968
+
20969
+
20970
+ Started GET "/assets/type_station/lib/ts.js?body=1" for 172.17.0.1 at 2016-09-19 20:37:01 +0000
20971
+
20972
+
20973
+ Started GET "/assets/type_station/lib/models.js?body=1" for 172.17.0.1 at 2016-09-19 20:37:01 +0000
20974
+
20975
+
20976
+ Started GET "/assets/type_station/lib/helpers.js?body=1" for 172.17.0.1 at 2016-09-19 20:37:01 +0000
20977
+
20978
+
20979
+ Started GET "/assets/type_station/editables/admin_bar.js?body=1" for 172.17.0.1 at 2016-09-19 20:37:01 +0000
20980
+
20981
+
20982
+ Started GET "/assets/type_station/editables/entity_editor.js?body=1" for 172.17.0.1 at 2016-09-19 20:37:01 +0000
20983
+
20984
+
20985
+ Started GET "/assets/type_station/editables/file_editor.js?body=1" for 172.17.0.1 at 2016-09-19 20:37:01 +0000
20986
+
20987
+
20988
+ Started GET "/assets/type_station/editables/link_finder.js?body=1" for 172.17.0.1 at 2016-09-19 20:37:01 +0000
20989
+
20990
+
20991
+ Started GET "/assets/type_station/editables/text_html_editor.js?body=1" for 172.17.0.1 at 2016-09-19 20:37:01 +0000
20992
+
20993
+
20994
+ Started GET "/assets/type_station/init.js?body=1" for 172.17.0.1 at 2016-09-19 20:37:02 +0000
20995
+
20996
+
20997
+ Started GET "/assets/type_station/application.js?body=1" for 172.17.0.1 at 2016-09-19 20:37:02 +0000
20998
+
20999
+
21000
+ Started GET "/assets/medium-editor.js?body=1" for 172.17.0.1 at 2016-09-19 20:37:02 +0000
21001
+
21002
+
21003
+ Started GET "/type_station" for 172.17.0.1 at 2016-09-19 20:39:01 +0000
21004
+ Processing by TypeStation::PagesController#index as HTML
21005
+ MONGODB | Adding db:27017 to the cluster.
21006
+ 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}
21007
+ MONGODB | db:27017 | type_station_development.find | SUCCEEDED | 0.0018153219999999999s
21008
+ MONGODB | db:27017 | type_station_development.find | STARTED | {"find"=>"type_station_entities", "filter"=>{"parent_id"=>BSON::ObjectId('573f10870e34570009e3cc2d'), "_type"=>"TypeStation::Page"}, "sort"=>{"position"=>1}}
21009
+ MONGODB | db:27017 | type_station_development.find | SUCCEEDED | 0.00074949s
21010
+ MONGODB | db:27017 | type_station_development.find | STARTED | {"find"=>"type_station_entities", "filter"=>{"parent_id"=>BSON::ObjectId('573f10870e34570009e3cc2d'), "_type"=>"Team"}, "sort"=>{"position"=>1}}
21011
+ MONGODB | db:27017 | type_station_development.find | SUCCEEDED | 0.000602483s
21012
+ Rendered /workspace/app/views/type_station/toolbars/_admin_bar.html.haml (35.5ms)
21013
+ Rendered pages/index_other.html.erb within layouts/application (657.2ms)
21014
+ Completed 200 OK in 2539ms (Views: 2438.3ms)
21015
+
21016
+
21017
+ Started GET "/assets/jquery.js?body=1" for 172.17.0.1 at 2016-09-19 20:39:04 +0000
21018
+
21019
+
21020
+ Started GET "/assets/medium-editor/medium-editor.css?body=1" for 172.17.0.1 at 2016-09-19 20:39:04 +0000
21021
+
21022
+
21023
+ Started GET "/assets/medium-editor/themes/bootstrap.css?body=1" for 172.17.0.1 at 2016-09-19 20:39:04 +0000
21024
+
21025
+
21026
+ Started GET "/assets/application.js?body=1" for 172.17.0.1 at 2016-09-19 20:39:04 +0000
21027
+
21028
+
21029
+ Started GET "/assets/jquery.textcomplete.css?body=1" for 172.17.0.1 at 2016-09-19 20:39:04 +0000
21030
+
21031
+
21032
+ Started GET "/assets/application.css?body=1" for 172.17.0.1 at 2016-09-19 20:39:04 +0000
21033
+
21034
+
21035
+ Started GET "/assets/chosen.css?body=1" for 172.17.0.1 at 2016-09-19 20:39:05 +0000
21036
+
21037
+
21038
+ Started GET "/assets/drop-theme-arrows-bounce-dark.css?body=1" for 172.17.0.1 at 2016-09-19 20:39:05 +0000
21039
+
21040
+
21041
+ Started GET "/assets/vex.css?body=1" for 172.17.0.1 at 2016-09-19 20:39:05 +0000
21042
+
21043
+
21044
+ Started GET "/assets/vex-theme-os.css?body=1" for 172.17.0.1 at 2016-09-19 20:39:05 +0000
21045
+
21046
+
21047
+ Started GET "/assets/ionicons.css?body=1" for 172.17.0.1 at 2016-09-19 20:39:05 +0000
21048
+
21049
+
21050
+ Started GET "/assets/type_station/admin_bar.css?body=1" for 172.17.0.1 at 2016-09-19 20:39:05 +0000
21051
+
21052
+
21053
+ Started GET "/assets/type_station/base.css?body=1" for 172.17.0.1 at 2016-09-19 20:39:05 +0000
21054
+
21055
+
21056
+ Started GET "/assets/type_station/application.css?body=1" for 172.17.0.1 at 2016-09-19 20:39:06 +0000
21057
+
21058
+
21059
+ Started GET "/assets/jquery-fileupload/vendor/jquery.ui.widget.js?body=1" for 172.17.0.1 at 2016-09-19 20:39:06 +0000
21060
+
21061
+
21062
+ Started GET "/assets/jquery-fileupload/jquery.iframe-transport.js?body=1" for 172.17.0.1 at 2016-09-19 20:39:06 +0000
21063
+
21064
+
21065
+ Started GET "/assets/jquery-fileupload/jquery.fileupload.js?body=1" for 172.17.0.1 at 2016-09-19 20:39:06 +0000
21066
+
21067
+
21068
+ Started GET "/assets/jquery-fileupload/basic.js?body=1" for 172.17.0.1 at 2016-09-19 20:39:06 +0000
21069
+
21070
+
21071
+ Started GET "/assets/jquery.cloudinary.js?body=1" for 172.17.0.1 at 2016-09-19 20:39:06 +0000
21072
+
21073
+
21074
+ Started GET "/assets/jquery.textcomplete.js?body=1" for 172.17.0.1 at 2016-09-19 20:39:06 +0000
21075
+
21076
+
21077
+ Started GET "/assets/classList.js?body=1" for 172.17.0.1 at 2016-09-19 20:39:07 +0000
21078
+
21079
+
21080
+ Started GET "/assets/medium-editor.js?body=1" for 172.17.0.1 at 2016-09-19 20:39:07 +0000
21081
+
21082
+
21083
+ Started GET "/assets/chosen.jquery.min.js?body=1" for 172.17.0.1 at 2016-09-19 20:39:07 +0000
21084
+
21085
+
21086
+ Started GET "/assets/drop.js?body=1" for 172.17.0.1 at 2016-09-19 20:39:07 +0000
21087
+
21088
+
21089
+ Started GET "/assets/vex.combined.min.js?body=1" for 172.17.0.1 at 2016-09-19 20:39:07 +0000
21090
+
21091
+
21092
+ Started GET "/assets/type_station/lib/ts.js?body=1" for 172.17.0.1 at 2016-09-19 20:39:07 +0000
21093
+
21094
+
21095
+ Started GET "/assets/type_station/lib/models.js?body=1" for 172.17.0.1 at 2016-09-19 20:39:07 +0000
21096
+
21097
+
21098
+ Started GET "/assets/type_station/lib/helpers.js?body=1" for 172.17.0.1 at 2016-09-19 20:39:08 +0000
21099
+
21100
+
21101
+ Started GET "/assets/type_station/editables/admin_bar.js?body=1" for 172.17.0.1 at 2016-09-19 20:39:08 +0000
21102
+
21103
+
21104
+ Started GET "/assets/type_station/editables/entity_editor.js?body=1" for 172.17.0.1 at 2016-09-19 20:39:08 +0000
21105
+
21106
+
21107
+ Started GET "/assets/type_station/editables/file_editor.js?body=1" for 172.17.0.1 at 2016-09-19 20:39:08 +0000
21108
+
21109
+
21110
+ Started GET "/assets/type_station/editables/link_finder.js?body=1" for 172.17.0.1 at 2016-09-19 20:39:08 +0000
21111
+
21112
+
21113
+ Started GET "/assets/type_station/editables/text_html_editor.js?body=1" for 172.17.0.1 at 2016-09-19 20:39:08 +0000
21114
+
21115
+
21116
+ Started GET "/assets/type_station/init.js?body=1" for 172.17.0.1 at 2016-09-19 20:39:08 +0000
21117
+
21118
+
21119
+ Started GET "/assets/type_station/application.js?body=1" for 172.17.0.1 at 2016-09-19 20:39:08 +0000
21120
+
21121
+
21122
+ Started GET "/assets/jquery.textcomplete.css?body=1" for 172.17.0.1 at 2016-09-19 20:39:20 +0000
21123
+
21124
+
21125
+ Started GET "/assets/medium-editor/themes/bootstrap.css?body=1" for 172.17.0.1 at 2016-09-19 20:39:20 +0000
21126
+
21127
+
21128
+ Started GET "/assets/drop-theme-arrows-bounce-dark.css?body=1" for 172.17.0.1 at 2016-09-19 20:39:20 +0000
21129
+
21130
+
21131
+ Started GET "/assets/application.css?body=1" for 172.17.0.1 at 2016-09-19 20:39:20 +0000
21132
+
21133
+
21134
+ Started GET "/assets/medium-editor/medium-editor.css?body=1" for 172.17.0.1 at 2016-09-19 20:39:21 +0000
21135
+
21136
+
21137
+ Started GET "/assets/chosen.css?body=1" for 172.17.0.1 at 2016-09-19 20:39:21 +0000
21138
+
21139
+
21140
+ Started GET "/assets/vex.css?body=1" for 172.17.0.1 at 2016-09-19 20:39:21 +0000
21141
+
21142
+
21143
+ Started GET "/assets/vex-theme-os.css?body=1" for 172.17.0.1 at 2016-09-19 20:39:21 +0000
21144
+
21145
+
21146
+ Started GET "/assets/ionicons.css?body=1" for 172.17.0.1 at 2016-09-19 20:39:21 +0000
21147
+
21148
+
21149
+ Started GET "/assets/type_station/admin_bar.css?body=1" for 172.17.0.1 at 2016-09-19 20:39:21 +0000
21150
+
21151
+
21152
+ Started GET "/assets/type_station/base.css?body=1" for 172.17.0.1 at 2016-09-19 20:39:21 +0000
21153
+
21154
+
21155
+ Started GET "/assets/type_station/application.css?body=1" for 172.17.0.1 at 2016-09-19 20:39:22 +0000
@@ -1 +1 @@
1
- 7
1
+ 8
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.4.6
4
+ version: 0.4.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Richard Adams
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-08-31 00:00:00.000000000 Z
11
+ date: 2016-09-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails