morrigan_editor_rails 0.0.3 → 0.0.4

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e77a871ee08b5b615a9ee6a93654072eadb6a5bd
4
- data.tar.gz: 28d6aa8496536e32a5080249e37f9e98f7823bf9
3
+ metadata.gz: 10ea57dd9231d4d31922c232b7c00afce8b19bfc
4
+ data.tar.gz: c558fe32d83524ba4fed855cf0404c1c8920e436
5
5
  SHA512:
6
- metadata.gz: 80c2c27ebe3c9534f52de079ca084210ee9fd6bc92ff6d37483d490624ed3333773bf95f924a24b7a5ed5e9c6fab33df00bb2606b78a7b4fc0eb3ab9df90bb89
7
- data.tar.gz: bad5e6b1ac3616dd9f4f1e2c66e7fc174ef4fb8bad7c9f894333e50abb2ee9d5221816f09e345826be5fee7205a5dea234cbcb06473139e29a093b005c1f43ea
6
+ metadata.gz: cab2b3ee9d97d78ec293cb47869c1e637c859f81da5e756c5c2932e332dfab0dd768af2f794ec5e1efbffb95ec957e73069ca4a513250539c8cb338599cfb70f
7
+ data.tar.gz: 4858a5c67b3d3f9b1e53fcf730369d4a1cfdfa59c0616c5640e147bd775bf326d780409752ec53d5e4850ecb363646514f1df82d152e668f1024f2881aa5c252
@@ -1,14 +1,24 @@
1
1
  <% environment.context_class.instance_eval { include MorriganEditorRails::ApplicationHelper } %>
2
2
  $(function () {
3
3
  $('[morrigan-editor="true"]').each(function () {
4
+ var textarea_str, textarea, form;
4
5
  var container = $(this);
5
6
  var width = container.attr('editor-width');
6
7
  var height = container.attr('editor-height');
7
- container.morrigan_editor({
8
+ var editor = container.morrigan_editor({
8
9
  iframeStyles: "<%= iframe_stylesheet %>",
9
10
  imageUpload: 'morrigan_editor_rails/editor_images',
10
11
  width: width,
11
12
  height: height
12
13
  });
14
+ textarea_str = container.attr('editor-bound-textarea');
15
+ if (textarea_str) {
16
+ textarea = $(textarea_str);
17
+ form = textarea.closest('form');
18
+ form.submit( function () {
19
+ textarea.val(editor.morrigan_editor('html'));
20
+ return true;
21
+ });
22
+ }
13
23
  });
14
24
  });
@@ -1,3 +1,3 @@
1
1
  module MorriganEditorRails
2
- VERSION = '0.0.3'
2
+ VERSION = '0.0.4'
3
3
  end
@@ -1,3 +1,7 @@
1
1
  <!--<%= asset_path('morrigan_editor_rails/iframe.css') %>-->
2
- <%= MorriganEditorRails::Editor.sanitize '<b><a href="http://foo.com/">foo</a></b><img src="bar.jpg">' %>
3
- <div morrigan-editor="true" id="editor" editor-width="100%" editor-height="300px"></div>
2
+ <!--<%= MorriganEditorRails::Editor.sanitize '<b><a href="http://foo.com/">foo</a></b><img src="bar.jpg">' %> -->
3
+ <form id="form">
4
+ <textarea id="textarea"></textarea>
5
+ <div morrigan-editor="true" id="editor" editor-width="100%" editor-height="300px" editor-bound-textarea="#textarea"></div>
6
+ <input type="submit">
7
+ </form>
@@ -9376,3 +9376,740 @@ Started GET "/assets/editor_iframe.css" for 127.0.0.1 at 2014-07-21 11:21:46 +04
9376
9376
 
9377
9377
  Started GET "/assets/fontawesome-webfont.woff" for 127.0.0.1 at 2014-07-21 11:21:47 +0400
9378
9378
  ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
9379
+
9380
+
9381
+ Started GET "/" for 127.0.0.1 at 2014-07-24 18:16:22 +0400
9382
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
9383
+ Processing by TestController#index as HTML
9384
+ Rendered test/index.html.erb within layouts/application (5.4ms)
9385
+ Completed 200 OK in 205ms (Views: 204.6ms | ActiveRecord: 0.0ms)
9386
+
9387
+
9388
+ Started GET "/assets/editor_iframe.css?body=1" for 127.0.0.1 at 2014-07-24 18:16:23 +0400
9389
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
9390
+
9391
+
9392
+ Started GET "/assets/morrigan_editor_rails/morrigan-jquery-editor.css?body=1" for 127.0.0.1 at 2014-07-24 18:16:24 +0400
9393
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
9394
+
9395
+
9396
+ Started GET "/assets/font-awesome.css?body=1" for 127.0.0.1 at 2014-07-24 18:16:25 +0400
9397
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
9398
+
9399
+
9400
+ Started GET "/assets/morrigan_editor_rails/application.css?body=1" for 127.0.0.1 at 2014-07-24 18:16:26 +0400
9401
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
9402
+
9403
+
9404
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-24 18:16:27 +0400
9405
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
9406
+
9407
+
9408
+ Started GET "/assets/jquery-ui/core.js?body=1" for 127.0.0.1 at 2014-07-24 18:16:28 +0400
9409
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
9410
+
9411
+
9412
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-24 18:16:29 +0400
9413
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
9414
+
9415
+
9416
+ Started GET "/assets/morrigan_editor_rails/morrigan-jquery-editor.js?body=1" for 127.0.0.1 at 2014-07-24 18:16:29 +0400
9417
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
9418
+
9419
+
9420
+ Started GET "/assets/jquery-ui/widget.js?body=1" for 127.0.0.1 at 2014-07-24 18:16:30 +0400
9421
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
9422
+
9423
+
9424
+ Started GET "/assets/morrigan_editor_rails/main.js?body=1" for 127.0.0.1 at 2014-07-24 18:16:31 +0400
9425
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
9426
+
9427
+
9428
+ Started GET "/assets/morrigan_editor_rails/application.js?body=1" for 127.0.0.1 at 2014-07-24 18:16:32 +0400
9429
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
9430
+
9431
+
9432
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-24 18:16:33 +0400
9433
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
9434
+
9435
+
9436
+ Started GET "/assets/editor_iframe.css" for 127.0.0.1 at 2014-07-24 18:16:34 +0400
9437
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
9438
+
9439
+
9440
+ Started GET "/assets/fontawesome-webfont.woff" for 127.0.0.1 at 2014-07-24 18:16:35 +0400
9441
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
9442
+
9443
+
9444
+ Started GET "/" for 127.0.0.1 at 2014-07-24 18:17:03 +0400
9445
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
9446
+ Processing by TestController#index as HTML
9447
+ Rendered test/index.html.erb within layouts/application (6.6ms)
9448
+ Completed 200 OK in 210ms (Views: 209.4ms | ActiveRecord: 0.0ms)
9449
+
9450
+
9451
+ Started GET "/assets/editor_iframe.css?body=1" for 127.0.0.1 at 2014-07-24 18:17:04 +0400
9452
+
9453
+
9454
+ Started GET "/assets/morrigan_editor_rails/morrigan-jquery-editor.css?body=1" for 127.0.0.1 at 2014-07-24 18:17:04 +0400
9455
+
9456
+
9457
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-24 18:17:04 +0400
9458
+
9459
+
9460
+ Started GET "/assets/font-awesome.css?body=1" for 127.0.0.1 at 2014-07-24 18:17:04 +0400
9461
+
9462
+
9463
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-24 18:17:04 +0400
9464
+
9465
+
9466
+ Started GET "/assets/morrigan_editor_rails/application.css?body=1" for 127.0.0.1 at 2014-07-24 18:17:04 +0400
9467
+
9468
+
9469
+ Started GET "/assets/jquery-ui/core.js?body=1" for 127.0.0.1 at 2014-07-24 18:17:04 +0400
9470
+
9471
+
9472
+ Started GET "/assets/jquery-ui/widget.js?body=1" for 127.0.0.1 at 2014-07-24 18:17:04 +0400
9473
+
9474
+
9475
+ Started GET "/assets/morrigan_editor_rails/main.js?body=1" for 127.0.0.1 at 2014-07-24 18:17:04 +0400
9476
+
9477
+
9478
+ Started GET "/assets/morrigan_editor_rails/morrigan-jquery-editor.js?body=1" for 127.0.0.1 at 2014-07-24 18:17:04 +0400
9479
+
9480
+
9481
+ Started GET "/assets/morrigan_editor_rails/application.js?body=1" for 127.0.0.1 at 2014-07-24 18:17:04 +0400
9482
+
9483
+
9484
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-24 18:17:04 +0400
9485
+
9486
+
9487
+ Started GET "/assets/editor_iframe.css" for 127.0.0.1 at 2014-07-24 18:17:04 +0400
9488
+
9489
+
9490
+ Started GET "/assets/fontawesome-webfont.woff" for 127.0.0.1 at 2014-07-24 18:17:04 +0400
9491
+
9492
+
9493
+ Started GET "/" for 127.0.0.1 at 2014-07-24 18:19:45 +0400
9494
+ Processing by TestController#index as HTML
9495
+ Rendered test/index.html.erb within layouts/application (1.2ms)
9496
+ Completed 200 OK in 9ms (Views: 8.4ms | ActiveRecord: 0.0ms)
9497
+
9498
+
9499
+ Started GET "/assets/editor_iframe.css?body=1" for 127.0.0.1 at 2014-07-24 18:19:45 +0400
9500
+
9501
+
9502
+ Started GET "/assets/morrigan_editor_rails/morrigan-jquery-editor.css?body=1" for 127.0.0.1 at 2014-07-24 18:19:45 +0400
9503
+
9504
+
9505
+ Started GET "/assets/font-awesome.css?body=1" for 127.0.0.1 at 2014-07-24 18:19:45 +0400
9506
+
9507
+
9508
+ Started GET "/assets/morrigan_editor_rails/application.css?body=1" for 127.0.0.1 at 2014-07-24 18:19:45 +0400
9509
+
9510
+
9511
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-24 18:19:45 +0400
9512
+
9513
+
9514
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-24 18:19:45 +0400
9515
+
9516
+
9517
+ Started GET "/assets/jquery-ui/core.js?body=1" for 127.0.0.1 at 2014-07-24 18:19:45 +0400
9518
+
9519
+
9520
+ Started GET "/assets/jquery-ui/widget.js?body=1" for 127.0.0.1 at 2014-07-24 18:19:45 +0400
9521
+
9522
+
9523
+ Started GET "/assets/morrigan_editor_rails/main.js?body=1" for 127.0.0.1 at 2014-07-24 18:19:45 +0400
9524
+
9525
+
9526
+ Started GET "/assets/morrigan_editor_rails/morrigan-jquery-editor.js?body=1" for 127.0.0.1 at 2014-07-24 18:19:45 +0400
9527
+
9528
+
9529
+ Started GET "/assets/morrigan_editor_rails/application.js?body=1" for 127.0.0.1 at 2014-07-24 18:19:45 +0400
9530
+
9531
+
9532
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-24 18:19:45 +0400
9533
+
9534
+
9535
+ Started GET "/assets/editor_iframe.css" for 127.0.0.1 at 2014-07-24 18:19:45 +0400
9536
+
9537
+
9538
+ Started GET "/assets/fontawesome-webfont.woff" for 127.0.0.1 at 2014-07-24 18:19:45 +0400
9539
+
9540
+
9541
+ Started GET "/" for 127.0.0.1 at 2014-07-24 18:20:12 +0400
9542
+ Processing by TestController#index as HTML
9543
+ Rendered test/index.html.erb within layouts/application (1.4ms)
9544
+ Completed 200 OK in 7ms (Views: 7.2ms | ActiveRecord: 0.0ms)
9545
+
9546
+
9547
+ Started GET "/assets/editor_iframe.css?body=1" for 127.0.0.1 at 2014-07-24 18:20:12 +0400
9548
+
9549
+
9550
+ Started GET "/assets/font-awesome.css?body=1" for 127.0.0.1 at 2014-07-24 18:20:12 +0400
9551
+
9552
+
9553
+ Started GET "/assets/morrigan_editor_rails/application.css?body=1" for 127.0.0.1 at 2014-07-24 18:20:12 +0400
9554
+
9555
+
9556
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-24 18:20:12 +0400
9557
+
9558
+
9559
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-24 18:20:12 +0400
9560
+
9561
+
9562
+ Started GET "/assets/morrigan_editor_rails/morrigan-jquery-editor.css?body=1" for 127.0.0.1 at 2014-07-24 18:20:12 +0400
9563
+
9564
+
9565
+ Started GET "/assets/jquery-ui/widget.js?body=1" for 127.0.0.1 at 2014-07-24 18:20:12 +0400
9566
+
9567
+
9568
+ Started GET "/assets/jquery-ui/core.js?body=1" for 127.0.0.1 at 2014-07-24 18:20:12 +0400
9569
+
9570
+
9571
+ Started GET "/assets/morrigan_editor_rails/main.js?body=1" for 127.0.0.1 at 2014-07-24 18:20:12 +0400
9572
+
9573
+
9574
+ Started GET "/assets/morrigan_editor_rails/morrigan-jquery-editor.js?body=1" for 127.0.0.1 at 2014-07-24 18:20:12 +0400
9575
+
9576
+
9577
+ Started GET "/assets/morrigan_editor_rails/application.js?body=1" for 127.0.0.1 at 2014-07-24 18:20:12 +0400
9578
+
9579
+
9580
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-24 18:20:12 +0400
9581
+
9582
+
9583
+ Started GET "/assets/editor_iframe.css" for 127.0.0.1 at 2014-07-24 18:20:12 +0400
9584
+
9585
+
9586
+ Started GET "/assets/fontawesome-webfont.woff" for 127.0.0.1 at 2014-07-24 18:20:12 +0400
9587
+
9588
+
9589
+ Started GET "/" for 127.0.0.1 at 2014-07-24 18:26:07 +0400
9590
+ Processing by TestController#index as HTML
9591
+ Rendered test/index.html.erb within layouts/application (1.0ms)
9592
+ Completed 200 OK in 53ms (Views: 52.9ms | ActiveRecord: 0.0ms)
9593
+
9594
+
9595
+ Started GET "/assets/editor_iframe.css?body=1" for 127.0.0.1 at 2014-07-24 18:26:08 +0400
9596
+
9597
+
9598
+ Started GET "/assets/morrigan_editor_rails/morrigan-jquery-editor.css?body=1" for 127.0.0.1 at 2014-07-24 18:26:08 +0400
9599
+
9600
+
9601
+ Started GET "/assets/font-awesome.css?body=1" for 127.0.0.1 at 2014-07-24 18:26:08 +0400
9602
+
9603
+
9604
+ Started GET "/assets/morrigan_editor_rails/application.css?body=1" for 127.0.0.1 at 2014-07-24 18:26:08 +0400
9605
+
9606
+
9607
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-24 18:26:08 +0400
9608
+
9609
+
9610
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-24 18:26:08 +0400
9611
+
9612
+
9613
+ Started GET "/assets/jquery-ui/core.js?body=1" for 127.0.0.1 at 2014-07-24 18:26:08 +0400
9614
+
9615
+
9616
+ Started GET "/assets/jquery-ui/widget.js?body=1" for 127.0.0.1 at 2014-07-24 18:26:08 +0400
9617
+
9618
+
9619
+ Started GET "/assets/morrigan_editor_rails/main.js?body=1" for 127.0.0.1 at 2014-07-24 18:26:08 +0400
9620
+
9621
+
9622
+ Started GET "/assets/morrigan_editor_rails/morrigan-jquery-editor.js?body=1" for 127.0.0.1 at 2014-07-24 18:26:08 +0400
9623
+
9624
+
9625
+ Started GET "/assets/morrigan_editor_rails/application.js?body=1" for 127.0.0.1 at 2014-07-24 18:26:08 +0400
9626
+
9627
+
9628
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-24 18:26:08 +0400
9629
+
9630
+
9631
+ Started GET "/assets/editor_iframe.css" for 127.0.0.1 at 2014-07-24 18:26:08 +0400
9632
+
9633
+
9634
+ Started GET "/assets/fontawesome-webfont.woff" for 127.0.0.1 at 2014-07-24 18:26:08 +0400
9635
+
9636
+
9637
+ Started GET "/" for 127.0.0.1 at 2014-07-24 18:26:37 +0400
9638
+ Processing by TestController#index as HTML
9639
+ Rendered test/index.html.erb within layouts/application (2.1ms)
9640
+ Completed 200 OK in 8ms (Views: 7.9ms | ActiveRecord: 0.0ms)
9641
+
9642
+
9643
+ Started GET "/assets/editor_iframe.css?body=1" for 127.0.0.1 at 2014-07-24 18:26:37 +0400
9644
+
9645
+
9646
+ Started GET "/assets/morrigan_editor_rails/morrigan-jquery-editor.css?body=1" for 127.0.0.1 at 2014-07-24 18:26:37 +0400
9647
+
9648
+
9649
+ Started GET "/assets/font-awesome.css?body=1" for 127.0.0.1 at 2014-07-24 18:26:37 +0400
9650
+
9651
+
9652
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-24 18:26:37 +0400
9653
+
9654
+
9655
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-24 18:26:37 +0400
9656
+
9657
+
9658
+ Started GET "/assets/morrigan_editor_rails/application.css?body=1" for 127.0.0.1 at 2014-07-24 18:26:37 +0400
9659
+
9660
+
9661
+ Started GET "/assets/jquery-ui/core.js?body=1" for 127.0.0.1 at 2014-07-24 18:26:37 +0400
9662
+
9663
+
9664
+ Started GET "/assets/jquery-ui/widget.js?body=1" for 127.0.0.1 at 2014-07-24 18:26:37 +0400
9665
+
9666
+
9667
+ Started GET "/assets/morrigan_editor_rails/main.js?body=1" for 127.0.0.1 at 2014-07-24 18:26:37 +0400
9668
+
9669
+
9670
+ Started GET "/assets/morrigan_editor_rails/morrigan-jquery-editor.js?body=1" for 127.0.0.1 at 2014-07-24 18:26:37 +0400
9671
+
9672
+
9673
+ Started GET "/assets/morrigan_editor_rails/application.js?body=1" for 127.0.0.1 at 2014-07-24 18:26:37 +0400
9674
+
9675
+
9676
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-24 18:26:37 +0400
9677
+
9678
+
9679
+ Started GET "/assets/editor_iframe.css" for 127.0.0.1 at 2014-07-24 18:26:38 +0400
9680
+
9681
+
9682
+ Started GET "/assets/fontawesome-webfont.woff" for 127.0.0.1 at 2014-07-24 18:26:38 +0400
9683
+
9684
+
9685
+ Started GET "/" for 127.0.0.1 at 2014-07-24 18:26:50 +0400
9686
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
9687
+ Processing by TestController#index as HTML
9688
+ Rendered test/index.html.erb within layouts/application (5.4ms)
9689
+ Completed 200 OK in 211ms (Views: 211.2ms | ActiveRecord: 0.0ms)
9690
+
9691
+
9692
+ Started GET "/assets/editor_iframe.css?body=1" for 127.0.0.1 at 2014-07-24 18:26:50 +0400
9693
+
9694
+
9695
+ Started GET "/assets/morrigan_editor_rails/morrigan-jquery-editor.css?body=1" for 127.0.0.1 at 2014-07-24 18:26:50 +0400
9696
+
9697
+
9698
+ Started GET "/assets/font-awesome.css?body=1" for 127.0.0.1 at 2014-07-24 18:26:50 +0400
9699
+
9700
+
9701
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-24 18:26:50 +0400
9702
+
9703
+
9704
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-24 18:26:50 +0400
9705
+
9706
+
9707
+ Started GET "/assets/jquery-ui/core.js?body=1" for 127.0.0.1 at 2014-07-24 18:26:50 +0400
9708
+
9709
+
9710
+ Started GET "/assets/morrigan_editor_rails/application.css?body=1" for 127.0.0.1 at 2014-07-24 18:26:50 +0400
9711
+
9712
+
9713
+ Started GET "/assets/jquery-ui/widget.js?body=1" for 127.0.0.1 at 2014-07-24 18:26:50 +0400
9714
+
9715
+
9716
+ Started GET "/assets/morrigan_editor_rails/main.js?body=1" for 127.0.0.1 at 2014-07-24 18:26:50 +0400
9717
+
9718
+
9719
+ Started GET "/assets/morrigan_editor_rails/morrigan-jquery-editor.js?body=1" for 127.0.0.1 at 2014-07-24 18:26:50 +0400
9720
+
9721
+
9722
+ Started GET "/assets/morrigan_editor_rails/application.js?body=1" for 127.0.0.1 at 2014-07-24 18:26:50 +0400
9723
+
9724
+
9725
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-24 18:26:50 +0400
9726
+
9727
+
9728
+ Started GET "/assets/editor_iframe.css" for 127.0.0.1 at 2014-07-24 18:26:50 +0400
9729
+
9730
+
9731
+ Started GET "/assets/fontawesome-webfont.woff" for 127.0.0.1 at 2014-07-24 18:26:50 +0400
9732
+
9733
+
9734
+ Started GET "/" for 127.0.0.1 at 2014-07-24 18:27:10 +0400
9735
+ Processing by TestController#index as HTML
9736
+ Rendered test/index.html.erb within layouts/application (1.9ms)
9737
+ Completed 200 OK in 60ms (Views: 59.7ms | ActiveRecord: 0.0ms)
9738
+
9739
+
9740
+ Started GET "/assets/editor_iframe.css?body=1" for 127.0.0.1 at 2014-07-24 18:27:10 +0400
9741
+
9742
+
9743
+ Started GET "/assets/font-awesome.css?body=1" for 127.0.0.1 at 2014-07-24 18:27:10 +0400
9744
+
9745
+
9746
+ Started GET "/assets/morrigan_editor_rails/application.css?body=1" for 127.0.0.1 at 2014-07-24 18:27:10 +0400
9747
+
9748
+
9749
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-24 18:27:10 +0400
9750
+
9751
+
9752
+ Started GET "/assets/morrigan_editor_rails/morrigan-jquery-editor.css?body=1" for 127.0.0.1 at 2014-07-24 18:27:10 +0400
9753
+
9754
+
9755
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-24 18:27:10 +0400
9756
+
9757
+
9758
+ Started GET "/assets/jquery-ui/core.js?body=1" for 127.0.0.1 at 2014-07-24 18:27:10 +0400
9759
+
9760
+
9761
+ Started GET "/assets/jquery-ui/widget.js?body=1" for 127.0.0.1 at 2014-07-24 18:27:10 +0400
9762
+
9763
+
9764
+ Started GET "/assets/morrigan_editor_rails/main.js?body=1" for 127.0.0.1 at 2014-07-24 18:27:10 +0400
9765
+
9766
+
9767
+ Started GET "/assets/morrigan_editor_rails/morrigan-jquery-editor.js?body=1" for 127.0.0.1 at 2014-07-24 18:27:10 +0400
9768
+
9769
+
9770
+ Started GET "/assets/morrigan_editor_rails/application.js?body=1" for 127.0.0.1 at 2014-07-24 18:27:10 +0400
9771
+
9772
+
9773
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-24 18:27:10 +0400
9774
+
9775
+
9776
+ Started GET "/assets/editor_iframe.css" for 127.0.0.1 at 2014-07-24 18:27:10 +0400
9777
+
9778
+
9779
+ Started GET "/assets/fontawesome-webfont.woff" for 127.0.0.1 at 2014-07-24 18:27:10 +0400
9780
+
9781
+
9782
+ Started GET "/" for 127.0.0.1 at 2014-07-24 18:27:26 +0400
9783
+ Processing by TestController#index as HTML
9784
+ Rendered test/index.html.erb within layouts/application (2.7ms)
9785
+ Completed 200 OK in 51ms (Views: 51.2ms | ActiveRecord: 0.0ms)
9786
+
9787
+
9788
+ Started GET "/assets/morrigan_editor_rails/morrigan-jquery-editor.css?body=1" for 127.0.0.1 at 2014-07-24 18:27:26 +0400
9789
+
9790
+
9791
+ Started GET "/assets/font-awesome.css?body=1" for 127.0.0.1 at 2014-07-24 18:27:26 +0400
9792
+
9793
+
9794
+ Started GET "/assets/morrigan_editor_rails/application.css?body=1" for 127.0.0.1 at 2014-07-24 18:27:26 +0400
9795
+
9796
+
9797
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-24 18:27:26 +0400
9798
+
9799
+
9800
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-24 18:27:26 +0400
9801
+
9802
+
9803
+ Started GET "/assets/editor_iframe.css?body=1" for 127.0.0.1 at 2014-07-24 18:27:26 +0400
9804
+
9805
+
9806
+ Started GET "/assets/jquery-ui/core.js?body=1" for 127.0.0.1 at 2014-07-24 18:27:26 +0400
9807
+
9808
+
9809
+ Started GET "/assets/jquery-ui/widget.js?body=1" for 127.0.0.1 at 2014-07-24 18:27:26 +0400
9810
+
9811
+
9812
+ Started GET "/assets/morrigan_editor_rails/main.js?body=1" for 127.0.0.1 at 2014-07-24 18:27:26 +0400
9813
+
9814
+
9815
+ Started GET "/assets/morrigan_editor_rails/morrigan-jquery-editor.js?body=1" for 127.0.0.1 at 2014-07-24 18:27:26 +0400
9816
+
9817
+
9818
+ Started GET "/assets/morrigan_editor_rails/application.js?body=1" for 127.0.0.1 at 2014-07-24 18:27:26 +0400
9819
+
9820
+
9821
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-24 18:27:27 +0400
9822
+
9823
+
9824
+ Started GET "/assets/editor_iframe.css" for 127.0.0.1 at 2014-07-24 18:27:27 +0400
9825
+
9826
+
9827
+ Started GET "/assets/fontawesome-webfont.woff" for 127.0.0.1 at 2014-07-24 18:27:27 +0400
9828
+
9829
+
9830
+ Started GET "/" for 127.0.0.1 at 2014-07-24 18:27:28 +0400
9831
+ Processing by TestController#index as HTML
9832
+ Rendered test/index.html.erb within layouts/application (2.0ms)
9833
+ Completed 200 OK in 8ms (Views: 8.2ms | ActiveRecord: 0.0ms)
9834
+
9835
+
9836
+ Started GET "/assets/editor_iframe.css?body=1" for 127.0.0.1 at 2014-07-24 18:27:28 +0400
9837
+
9838
+
9839
+ Started GET "/assets/morrigan_editor_rails/morrigan-jquery-editor.css?body=1" for 127.0.0.1 at 2014-07-24 18:27:28 +0400
9840
+
9841
+
9842
+ Started GET "/assets/font-awesome.css?body=1" for 127.0.0.1 at 2014-07-24 18:27:28 +0400
9843
+
9844
+
9845
+ Started GET "/assets/morrigan_editor_rails/application.css?body=1" for 127.0.0.1 at 2014-07-24 18:27:28 +0400
9846
+
9847
+
9848
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-24 18:27:28 +0400
9849
+
9850
+
9851
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-24 18:27:28 +0400
9852
+
9853
+
9854
+ Started GET "/assets/jquery-ui/core.js?body=1" for 127.0.0.1 at 2014-07-24 18:27:28 +0400
9855
+
9856
+
9857
+ Started GET "/assets/jquery-ui/widget.js?body=1" for 127.0.0.1 at 2014-07-24 18:27:28 +0400
9858
+
9859
+
9860
+ Started GET "/assets/morrigan_editor_rails/main.js?body=1" for 127.0.0.1 at 2014-07-24 18:27:28 +0400
9861
+
9862
+
9863
+ Started GET "/assets/morrigan_editor_rails/morrigan-jquery-editor.js?body=1" for 127.0.0.1 at 2014-07-24 18:27:28 +0400
9864
+
9865
+
9866
+ Started GET "/assets/morrigan_editor_rails/application.js?body=1" for 127.0.0.1 at 2014-07-24 18:27:28 +0400
9867
+
9868
+
9869
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-24 18:27:29 +0400
9870
+
9871
+
9872
+ Started GET "/assets/editor_iframe.css" for 127.0.0.1 at 2014-07-24 18:27:29 +0400
9873
+
9874
+
9875
+ Started GET "/assets/fontawesome-webfont.woff" for 127.0.0.1 at 2014-07-24 18:27:29 +0400
9876
+
9877
+
9878
+ Started GET "/" for 127.0.0.1 at 2014-07-24 18:27:46 +0400
9879
+ Processing by TestController#index as HTML
9880
+ Rendered test/index.html.erb within layouts/application (2.5ms)
9881
+ Completed 200 OK in 65ms (Views: 64.4ms | ActiveRecord: 0.0ms)
9882
+
9883
+
9884
+ Started GET "/assets/editor_iframe.css?body=1" for 127.0.0.1 at 2014-07-24 18:27:46 +0400
9885
+
9886
+
9887
+ Started GET "/assets/font-awesome.css?body=1" for 127.0.0.1 at 2014-07-24 18:27:46 +0400
9888
+
9889
+
9890
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-24 18:27:46 +0400
9891
+
9892
+
9893
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-24 18:27:46 +0400
9894
+
9895
+
9896
+ Started GET "/assets/morrigan_editor_rails/application.css?body=1" for 127.0.0.1 at 2014-07-24 18:27:46 +0400
9897
+
9898
+
9899
+ Started GET "/assets/morrigan_editor_rails/morrigan-jquery-editor.css?body=1" for 127.0.0.1 at 2014-07-24 18:27:46 +0400
9900
+
9901
+
9902
+ Started GET "/assets/jquery-ui/core.js?body=1" for 127.0.0.1 at 2014-07-24 18:27:46 +0400
9903
+
9904
+
9905
+ Started GET "/assets/jquery-ui/widget.js?body=1" for 127.0.0.1 at 2014-07-24 18:27:46 +0400
9906
+
9907
+
9908
+ Started GET "/assets/morrigan_editor_rails/main.js?body=1" for 127.0.0.1 at 2014-07-24 18:27:46 +0400
9909
+
9910
+
9911
+ Started GET "/assets/morrigan_editor_rails/morrigan-jquery-editor.js?body=1" for 127.0.0.1 at 2014-07-24 18:27:46 +0400
9912
+
9913
+
9914
+ Started GET "/assets/morrigan_editor_rails/application.js?body=1" for 127.0.0.1 at 2014-07-24 18:27:46 +0400
9915
+
9916
+
9917
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-24 18:27:46 +0400
9918
+
9919
+
9920
+ Started GET "/assets/editor_iframe.css" for 127.0.0.1 at 2014-07-24 18:27:47 +0400
9921
+
9922
+
9923
+ Started GET "/assets/fontawesome-webfont.woff" for 127.0.0.1 at 2014-07-24 18:27:47 +0400
9924
+
9925
+
9926
+ Started GET "/" for 127.0.0.1 at 2014-07-24 18:28:08 +0400
9927
+ Processing by TestController#index as HTML
9928
+ Rendered test/index.html.erb within layouts/application (2.2ms)
9929
+ Completed 200 OK in 58ms (Views: 57.3ms | ActiveRecord: 0.0ms)
9930
+
9931
+
9932
+ Started GET "/assets/editor_iframe.css?body=1" for 127.0.0.1 at 2014-07-24 18:28:09 +0400
9933
+
9934
+
9935
+ Started GET "/assets/morrigan_editor_rails/morrigan-jquery-editor.css?body=1" for 127.0.0.1 at 2014-07-24 18:28:09 +0400
9936
+
9937
+
9938
+ Started GET "/assets/font-awesome.css?body=1" for 127.0.0.1 at 2014-07-24 18:28:09 +0400
9939
+
9940
+
9941
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-24 18:28:09 +0400
9942
+
9943
+
9944
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-24 18:28:09 +0400
9945
+
9946
+
9947
+ Started GET "/assets/morrigan_editor_rails/application.css?body=1" for 127.0.0.1 at 2014-07-24 18:28:09 +0400
9948
+
9949
+
9950
+ Started GET "/assets/jquery-ui/core.js?body=1" for 127.0.0.1 at 2014-07-24 18:28:09 +0400
9951
+
9952
+
9953
+ Started GET "/assets/morrigan_editor_rails/main.js?body=1" for 127.0.0.1 at 2014-07-24 18:28:09 +0400
9954
+
9955
+
9956
+ Started GET "/assets/jquery-ui/widget.js?body=1" for 127.0.0.1 at 2014-07-24 18:28:09 +0400
9957
+
9958
+
9959
+ Started GET "/assets/morrigan_editor_rails/morrigan-jquery-editor.js?body=1" for 127.0.0.1 at 2014-07-24 18:28:09 +0400
9960
+
9961
+
9962
+ Started GET "/assets/morrigan_editor_rails/application.js?body=1" for 127.0.0.1 at 2014-07-24 18:28:09 +0400
9963
+
9964
+
9965
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-24 18:28:09 +0400
9966
+
9967
+
9968
+ Started GET "/assets/editor_iframe.css" for 127.0.0.1 at 2014-07-24 18:28:09 +0400
9969
+
9970
+
9971
+ Started GET "/assets/fontawesome-webfont.woff" for 127.0.0.1 at 2014-07-24 18:28:09 +0400
9972
+
9973
+
9974
+ Started GET "/" for 127.0.0.1 at 2014-07-24 18:28:10 +0400
9975
+ Processing by TestController#index as HTML
9976
+ Rendered test/index.html.erb within layouts/application (1.9ms)
9977
+ Completed 200 OK in 11ms (Views: 11.1ms | ActiveRecord: 0.0ms)
9978
+
9979
+
9980
+ Started GET "/assets/editor_iframe.css?body=1" for 127.0.0.1 at 2014-07-24 18:28:10 +0400
9981
+
9982
+
9983
+ Started GET "/assets/morrigan_editor_rails/morrigan-jquery-editor.css?body=1" for 127.0.0.1 at 2014-07-24 18:28:10 +0400
9984
+
9985
+
9986
+ Started GET "/assets/font-awesome.css?body=1" for 127.0.0.1 at 2014-07-24 18:28:10 +0400
9987
+
9988
+
9989
+ Started GET "/assets/morrigan_editor_rails/application.css?body=1" for 127.0.0.1 at 2014-07-24 18:28:10 +0400
9990
+
9991
+
9992
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-24 18:28:10 +0400
9993
+
9994
+
9995
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-24 18:28:10 +0400
9996
+
9997
+
9998
+ Started GET "/assets/jquery-ui/core.js?body=1" for 127.0.0.1 at 2014-07-24 18:28:10 +0400
9999
+
10000
+
10001
+ Started GET "/assets/jquery-ui/widget.js?body=1" for 127.0.0.1 at 2014-07-24 18:28:10 +0400
10002
+
10003
+
10004
+ Started GET "/assets/morrigan_editor_rails/main.js?body=1" for 127.0.0.1 at 2014-07-24 18:28:10 +0400
10005
+
10006
+
10007
+ Started GET "/assets/morrigan_editor_rails/morrigan-jquery-editor.js?body=1" for 127.0.0.1 at 2014-07-24 18:28:10 +0400
10008
+
10009
+
10010
+ Started GET "/assets/morrigan_editor_rails/application.js?body=1" for 127.0.0.1 at 2014-07-24 18:28:10 +0400
10011
+
10012
+
10013
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-24 18:28:10 +0400
10014
+
10015
+
10016
+ Started GET "/assets/editor_iframe.css" for 127.0.0.1 at 2014-07-24 18:28:11 +0400
10017
+
10018
+
10019
+ Started GET "/assets/fontawesome-webfont.woff" for 127.0.0.1 at 2014-07-24 18:28:11 +0400
10020
+
10021
+
10022
+ Started GET "/" for 127.0.0.1 at 2014-07-24 18:28:14 +0400
10023
+ Processing by TestController#index as HTML
10024
+ Rendered test/index.html.erb within layouts/application (1.4ms)
10025
+ Completed 200 OK in 11ms (Views: 11.1ms | ActiveRecord: 0.0ms)
10026
+
10027
+
10028
+ Started GET "/assets/editor_iframe.css?body=1" for 127.0.0.1 at 2014-07-24 18:28:14 +0400
10029
+
10030
+
10031
+ Started GET "/assets/morrigan_editor_rails/morrigan-jquery-editor.css?body=1" for 127.0.0.1 at 2014-07-24 18:28:14 +0400
10032
+
10033
+
10034
+ Started GET "/assets/font-awesome.css?body=1" for 127.0.0.1 at 2014-07-24 18:28:14 +0400
10035
+
10036
+
10037
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-24 18:28:14 +0400
10038
+
10039
+
10040
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-24 18:28:14 +0400
10041
+
10042
+
10043
+ Started GET "/assets/morrigan_editor_rails/application.css?body=1" for 127.0.0.1 at 2014-07-24 18:28:14 +0400
10044
+
10045
+
10046
+ Started GET "/assets/jquery-ui/core.js?body=1" for 127.0.0.1 at 2014-07-24 18:28:14 +0400
10047
+
10048
+
10049
+ Started GET "/assets/jquery-ui/widget.js?body=1" for 127.0.0.1 at 2014-07-24 18:28:14 +0400
10050
+
10051
+
10052
+ Started GET "/assets/morrigan_editor_rails/morrigan-jquery-editor.js?body=1" for 127.0.0.1 at 2014-07-24 18:28:14 +0400
10053
+
10054
+
10055
+ Started GET "/assets/morrigan_editor_rails/main.js?body=1" for 127.0.0.1 at 2014-07-24 18:28:14 +0400
10056
+
10057
+
10058
+ Started GET "/assets/morrigan_editor_rails/application.js?body=1" for 127.0.0.1 at 2014-07-24 18:28:14 +0400
10059
+
10060
+
10061
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-24 18:28:14 +0400
10062
+
10063
+
10064
+ Started GET "/assets/editor_iframe.css" for 127.0.0.1 at 2014-07-24 18:28:14 +0400
10065
+
10066
+
10067
+ Started GET "/assets/fontawesome-webfont.woff" for 127.0.0.1 at 2014-07-24 18:28:14 +0400
10068
+
10069
+
10070
+ Started GET "/" for 127.0.0.1 at 2014-07-24 18:28:19 +0400
10071
+ Processing by TestController#index as HTML
10072
+ Rendered test/index.html.erb within layouts/application (1.3ms)
10073
+ Completed 200 OK in 10ms (Views: 9.8ms | ActiveRecord: 0.0ms)
10074
+
10075
+
10076
+ Started GET "/assets/editor_iframe.css?body=1" for 127.0.0.1 at 2014-07-24 18:28:19 +0400
10077
+
10078
+
10079
+ Started GET "/assets/morrigan_editor_rails/morrigan-jquery-editor.css?body=1" for 127.0.0.1 at 2014-07-24 18:28:19 +0400
10080
+
10081
+
10082
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-24 18:28:19 +0400
10083
+
10084
+
10085
+ Started GET "/assets/font-awesome.css?body=1" for 127.0.0.1 at 2014-07-24 18:28:19 +0400
10086
+
10087
+
10088
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-24 18:28:19 +0400
10089
+
10090
+
10091
+ Started GET "/assets/morrigan_editor_rails/application.css?body=1" for 127.0.0.1 at 2014-07-24 18:28:19 +0400
10092
+
10093
+
10094
+ Started GET "/assets/jquery-ui/core.js?body=1" for 127.0.0.1 at 2014-07-24 18:28:19 +0400
10095
+
10096
+
10097
+ Started GET "/assets/jquery-ui/widget.js?body=1" for 127.0.0.1 at 2014-07-24 18:28:19 +0400
10098
+
10099
+
10100
+ Started GET "/assets/morrigan_editor_rails/main.js?body=1" for 127.0.0.1 at 2014-07-24 18:28:19 +0400
10101
+
10102
+
10103
+ Started GET "/assets/morrigan_editor_rails/morrigan-jquery-editor.js?body=1" for 127.0.0.1 at 2014-07-24 18:28:19 +0400
10104
+
10105
+
10106
+ Started GET "/assets/morrigan_editor_rails/application.js?body=1" for 127.0.0.1 at 2014-07-24 18:28:19 +0400
10107
+
10108
+
10109
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-24 18:28:19 +0400
10110
+
10111
+
10112
+ Started GET "/assets/editor_iframe.css" for 127.0.0.1 at 2014-07-24 18:28:19 +0400
10113
+
10114
+
10115
+ Started GET "/assets/fontawesome-webfont.woff" for 127.0.0.1 at 2014-07-24 18:28:19 +0400
@@ -0,0 +1 @@
1
+ 19537
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: morrigan_editor_rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sergey Sokolov
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-07-21 00:00:00.000000000 Z
11
+ date: 2014-07-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -196,6 +196,7 @@ files:
196
196
  - test/dummy/public/uploads/morrigan_editor_rails/editor_image/image/1/22129_b.jpeg
197
197
  - test/dummy/public/uploads/morrigan_editor_rails/editor_image/image/2/22129_b.jpeg
198
198
  - test/dummy/public/uploads/morrigan_editor_rails/editor_image/image/3/22129_b.jpeg
199
+ - test/dummy/tmp/pids/server.pid
199
200
  - test/integration/navigation_test.rb
200
201
  - test/morrigan_editor_rails_test.rb
201
202
  - test/test_helper.rb
@@ -251,6 +252,7 @@ test_files:
251
252
  - test/dummy/public/uploads/morrigan_editor_rails/editor_image/image/2/22129_b.jpeg
252
253
  - test/dummy/public/500.html
253
254
  - test/dummy/Rakefile
255
+ - test/dummy/tmp/pids/server.pid
254
256
  - test/dummy/bin/rails
255
257
  - test/dummy/bin/rake
256
258
  - test/dummy/bin/bundle