inky-rb 1.3.8.0 → 1.4.2.0

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 (54) hide show
  1. checksums.yaml +4 -4
  2. data/inky.gemspec +5 -5
  3. data/lib/inky/component_factory.rb +15 -8
  4. data/lib/inky/rails/version.rb +1 -1
  5. data/lib/inky.rb +3 -1
  6. data/spec/_cases_output/button/no_link.inky +1 -1
  7. data/spec/_cases_output/button/with_expand_class.inky +3 -3
  8. data/spec/_cases_output/button/with_extra_attr.inky +3 -0
  9. data/spec/_cases_output/button/with_image.inky +2 -2
  10. data/spec/_cases_output/button/with_link.inky +2 -2
  11. data/spec/_cases_output/button/with_link_and_extra_attr.inky +3 -0
  12. data/spec/_cases_output/button/with_tricky_class.inky +13 -13
  13. data/spec/_cases_output/callout/basic.inky +1 -1
  14. data/spec/_cases_output/callout/with_attributes.inky +2 -2
  15. data/spec/_cases_output/general/multiple_root.inky +2 -2
  16. data/spec/_cases_output/general/root_within_text.inky +5 -1
  17. data/spec/_cases_output/general/void_html_elements.inky +2 -2
  18. data/spec/_cases_output/grid/columns.inky +2 -2
  19. data/spec/_cases_output/grid/row_with_columns.inky +3 -3
  20. data/spec/_cases_output/h_line/basic.inky +1 -0
  21. data/spec/_cases_output/h_line/h_line.inky +2 -0
  22. data/spec/_cases_output/h_line/multiple.inky +3 -0
  23. data/spec/_cases_output/h_line/with_attr.inky +1 -0
  24. data/spec/_cases_output/menu/menu.inky +2 -2
  25. data/spec/_cases_output/menu/menu_with_align.inky +2 -2
  26. data/spec/_cases_output/menu/menu_with_items.inky +2 -2
  27. data/spec/_cases_output/spacer/basic.inky +1 -1
  28. data/spec/_cases_output/spacer/with_attr.inky +6 -0
  29. data/spec/_cases_output/spacer/with_size.inky +1 -1
  30. data/spec/_cases_output/spacer/with_size_lg.inky +1 -1
  31. data/spec/_cases_output/spacer/with_size_sm.inky +1 -1
  32. data/spec/_cases_output/spacer/with_size_sm_and_lg.inky +1 -1
  33. data/spec/_cases_output/spacer/with_sizes_and_attr.inky +6 -0
  34. data/spec/_cases_output/wrapper/basic.inky +1 -1
  35. data/spec/_cases_output/wrapper/with_align.inky +1 -1
  36. data/spec/_cases_output/wrapper/with_attributes.inky +1 -1
  37. data/spec/cases/button/with_extra_attr.inky +3 -0
  38. data/spec/cases/button/with_link.inky +1 -1
  39. data/spec/cases/button/with_link_and_extra_attr.inky +3 -0
  40. data/spec/cases/h_line/basic.inky +1 -0
  41. data/spec/cases/h_line/multiple.inky +8 -0
  42. data/spec/cases/h_line/with_attr.inky +2 -0
  43. data/spec/cases/spacer/with_attr.inky +6 -0
  44. data/spec/cases/spacer/with_size.inky +1 -1
  45. data/spec/cases/spacer/with_size_lg.inky +1 -1
  46. data/spec/cases/spacer/with_size_sm.inky +1 -1
  47. data/spec/cases/spacer/with_size_sm_and_lg.inky +1 -1
  48. data/spec/cases/spacer/with_sizes_and_attr.inky +6 -0
  49. data/spec/components_spec.rb +48 -48
  50. data/spec/grid_spec.rb +38 -38
  51. data/spec/spec_helper.rb +0 -1
  52. data/spec/test_app/log/test.log +663 -0
  53. data/spec/test_app/spec/features/inky_spec.rb +3 -3
  54. metadata +130 -102
@@ -4740,3 +4740,666 @@ Processing by InkyController#explicit_builder as HTML
4740
4740
  Rendering inky/explicit_builder.html.inky-builder within layouts/application
4741
4741
  Rendered inky/explicit_builder.html.inky-builder within layouts/application (16.6ms)
4742
4742
  Completed 200 OK in 21ms (Views: 17.4ms)
4743
+ Started GET "/inky/simple" for 127.0.0.1 at 2021-12-06 11:04:15 -0500
4744
+ Processing by InkyController#simple as HTML
4745
+ Rendering layout layouts/application.html.erb
4746
+ Rendering inky/simple.html.inky within layouts/application
4747
+ Rendered inky/simple.html.inky within layouts/application (Duration: 1.4ms | Allocations: 495)
4748
+ Rendered layout layouts/application.html.erb (Duration: 2.0ms | Allocations: 664)
4749
+ Completed 200 OK in 9ms (Views: 6.2ms | Allocations: 2652)
4750
+ Started GET "/inky/non_inky" for 127.0.0.1 at 2021-12-06 11:04:15 -0500
4751
+ Processing by InkyController#non_inky as HTML
4752
+ Rendering layout layouts/application.html.erb
4753
+ Rendering inky/non_inky.html.erb within layouts/application
4754
+ Rendered inky/non_inky.html.erb within layouts/application (Duration: 0.4ms | Allocations: 95)
4755
+ Rendered layout layouts/application.html.erb (Duration: 0.5ms | Allocations: 138)
4756
+ Completed 200 OK in 2ms (Views: 0.9ms | Allocations: 500)
4757
+ Started GET "/inky/non_inky?partial=inky_partial" for 127.0.0.1 at 2021-12-06 11:04:15 -0500
4758
+ Processing by InkyController#non_inky as HTML
4759
+ Parameters: {"partial"=>"inky_partial"}
4760
+ Rendering layout layouts/application.html.erb
4761
+ Rendering inky/non_inky.html.erb within layouts/application
4762
+ Rendered inky/_inky_partial.html.inky (Duration: 8.6ms | Allocations: 309)
4763
+ Rendered inky/non_inky.html.erb within layouts/application (Duration: 9.3ms | Allocations: 506)
4764
+ Rendered layout layouts/application.html.erb (Duration: 9.5ms | Allocations: 549)
4765
+ Completed 200 OK in 10ms (Views: 10.0ms | Allocations: 765)
4766
+ Started GET "/inky/layout" for 127.0.0.1 at 2021-12-06 11:04:15 -0500
4767
+ Processing by InkyController#layout as HTML
4768
+ Rendering layout layouts/inky_layout.html.inky
4769
+ Rendering inky/layout.html.erb within layouts/inky_layout
4770
+ Rendered inky/layout.html.erb within layouts/inky_layout (Duration: 0.3ms | Allocations: 70)
4771
+ Rendered layout layouts/inky_layout.html.inky (Duration: 1.2ms | Allocations: 439)
4772
+ Completed 200 OK in 3ms (Views: 1.9ms | Allocations: 897)
4773
+ Started GET "/inky/slim" for 127.0.0.1 at 2021-12-06 11:04:15 -0500
4774
+ Processing by InkyController#slim as HTML
4775
+ Rendering layout layouts/application.html.erb
4776
+ Rendering inky/slim.html.inky within layouts/application
4777
+ Rendered inky/slim.html.inky within layouts/application (Duration: 14.7ms | Allocations: 9495)
4778
+ Rendered layout layouts/application.html.erb (Duration: 14.9ms | Allocations: 9537)
4779
+ Completed 200 OK in 16ms (Views: 15.7ms | Allocations: 9873)
4780
+ Started GET "/inky/explicit_slim" for 127.0.0.1 at 2021-12-06 11:04:15 -0500
4781
+ Processing by InkyController#explicit_slim as HTML
4782
+ Rendering layout layouts/application.html.erb
4783
+ Rendering inky/explicit_slim.html.inky-slim within layouts/application
4784
+ Rendered inky/explicit_slim.html.inky-slim within layouts/application (Duration: 2.8ms | Allocations: 1737)
4785
+ Rendered layout layouts/application.html.erb (Duration: 3.0ms | Allocations: 1779)
4786
+ Completed 200 OK in 4ms (Views: 3.3ms | Allocations: 2115)
4787
+ Started GET "/inky/explicit_builder" for 127.0.0.1 at 2021-12-06 11:04:15 -0500
4788
+ Processing by InkyController#explicit_builder as HTML
4789
+ Rendering layout layouts/application.html.erb
4790
+ Rendering inky/explicit_builder.html.inky-builder within layouts/application
4791
+ Rendered inky/explicit_builder.html.inky-builder within layouts/application (Duration: 16.5ms | Allocations: 2000)
4792
+ Rendered layout layouts/application.html.erb (Duration: 16.8ms | Allocations: 2042)
4793
+ Completed 200 OK in 19ms (Views: 17.4ms | Allocations: 2378)
4794
+ Started GET "/inky/simple" for 127.0.0.1 at 2021-12-06 11:04:41 -0500
4795
+ Processing by InkyController#simple as HTML
4796
+ Rendering layout layouts/application.html.erb
4797
+ Rendering inky/simple.html.inky within layouts/application
4798
+ Rendered inky/simple.html.inky within layouts/application (Duration: 2.8ms | Allocations: 495)
4799
+ Rendered layout layouts/application.html.erb (Duration: 3.7ms | Allocations: 664)
4800
+ Completed 200 OK in 14ms (Views: 11.7ms | Allocations: 2652)
4801
+ Started GET "/inky/non_inky" for 127.0.0.1 at 2021-12-06 11:04:41 -0500
4802
+ Processing by InkyController#non_inky as HTML
4803
+ Rendering layout layouts/application.html.erb
4804
+ Rendering inky/non_inky.html.erb within layouts/application
4805
+ Rendered inky/non_inky.html.erb within layouts/application (Duration: 0.5ms | Allocations: 95)
4806
+ Rendered layout layouts/application.html.erb (Duration: 0.7ms | Allocations: 138)
4807
+ Completed 200 OK in 2ms (Views: 1.2ms | Allocations: 500)
4808
+ Started GET "/inky/non_inky?partial=inky_partial" for 127.0.0.1 at 2021-12-06 11:04:41 -0500
4809
+ Processing by InkyController#non_inky as HTML
4810
+ Parameters: {"partial"=>"inky_partial"}
4811
+ Rendering layout layouts/application.html.erb
4812
+ Rendering inky/non_inky.html.erb within layouts/application
4813
+ Rendered inky/_inky_partial.html.inky (Duration: 1.0ms | Allocations: 309)
4814
+ Rendered inky/non_inky.html.erb within layouts/application (Duration: 1.8ms | Allocations: 506)
4815
+ Rendered layout layouts/application.html.erb (Duration: 2.0ms | Allocations: 549)
4816
+ Completed 200 OK in 3ms (Views: 2.4ms | Allocations: 765)
4817
+ Started GET "/inky/layout" for 127.0.0.1 at 2021-12-06 11:04:41 -0500
4818
+ Processing by InkyController#layout as HTML
4819
+ Rendering layout layouts/inky_layout.html.inky
4820
+ Rendering inky/layout.html.erb within layouts/inky_layout
4821
+ Rendered inky/layout.html.erb within layouts/inky_layout (Duration: 0.3ms | Allocations: 70)
4822
+ Rendered layout layouts/inky_layout.html.inky (Duration: 1.3ms | Allocations: 439)
4823
+ Completed 200 OK in 2ms (Views: 2.0ms | Allocations: 897)
4824
+ Started GET "/inky/slim" for 127.0.0.1 at 2021-12-06 11:04:41 -0500
4825
+ Processing by InkyController#slim as HTML
4826
+ Rendering layout layouts/application.html.erb
4827
+ Rendering inky/slim.html.inky within layouts/application
4828
+ Rendered inky/slim.html.inky within layouts/application (Duration: 10.8ms | Allocations: 9495)
4829
+ Rendered layout layouts/application.html.erb (Duration: 11.1ms | Allocations: 9537)
4830
+ Completed 200 OK in 13ms (Views: 12.7ms | Allocations: 9873)
4831
+ Started GET "/inky/explicit_slim" for 127.0.0.1 at 2021-12-06 11:04:41 -0500
4832
+ Processing by InkyController#explicit_slim as HTML
4833
+ Rendering layout layouts/application.html.erb
4834
+ Rendering inky/explicit_slim.html.inky-slim within layouts/application
4835
+ Rendered inky/explicit_slim.html.inky-slim within layouts/application (Duration: 6.2ms | Allocations: 1737)
4836
+ Rendered layout layouts/application.html.erb (Duration: 6.8ms | Allocations: 1779)
4837
+ Completed 200 OK in 9ms (Views: 7.6ms | Allocations: 2115)
4838
+ Started GET "/inky/explicit_builder" for 127.0.0.1 at 2021-12-06 11:04:41 -0500
4839
+ Processing by InkyController#explicit_builder as HTML
4840
+ Rendering layout layouts/application.html.erb
4841
+ Rendering inky/explicit_builder.html.inky-builder within layouts/application
4842
+ Rendered inky/explicit_builder.html.inky-builder within layouts/application (Duration: 20.8ms | Allocations: 2000)
4843
+ Rendered layout layouts/application.html.erb (Duration: 21.0ms | Allocations: 2042)
4844
+ Completed 200 OK in 22ms (Views: 21.5ms | Allocations: 2378)
4845
+ Started GET "/inky/simple" for 127.0.0.1 at 2021-12-06 11:06:17 -0500
4846
+ Processing by InkyController#simple as HTML
4847
+ Rendering layout layouts/application.html.erb
4848
+ Rendering inky/simple.html.inky within layouts/application
4849
+ Rendered inky/simple.html.inky within layouts/application (Duration: 1.2ms | Allocations: 495)
4850
+ Rendered layout layouts/application.html.erb (Duration: 1.6ms | Allocations: 664)
4851
+ Completed 200 OK in 8ms (Views: 5.5ms | Allocations: 2652)
4852
+ Started GET "/inky/non_inky" for 127.0.0.1 at 2021-12-06 11:06:17 -0500
4853
+ Processing by InkyController#non_inky as HTML
4854
+ Rendering layout layouts/application.html.erb
4855
+ Rendering inky/non_inky.html.erb within layouts/application
4856
+ Rendered inky/non_inky.html.erb within layouts/application (Duration: 0.3ms | Allocations: 95)
4857
+ Rendered layout layouts/application.html.erb (Duration: 0.4ms | Allocations: 138)
4858
+ Completed 200 OK in 1ms (Views: 0.8ms | Allocations: 500)
4859
+ Started GET "/inky/non_inky?partial=inky_partial" for 127.0.0.1 at 2021-12-06 11:06:17 -0500
4860
+ Processing by InkyController#non_inky as HTML
4861
+ Parameters: {"partial"=>"inky_partial"}
4862
+ Rendering layout layouts/application.html.erb
4863
+ Rendering inky/non_inky.html.erb within layouts/application
4864
+ Rendered inky/_inky_partial.html.inky (Duration: 0.7ms | Allocations: 309)
4865
+ Rendered inky/non_inky.html.erb within layouts/application (Duration: 1.3ms | Allocations: 506)
4866
+ Rendered layout layouts/application.html.erb (Duration: 1.4ms | Allocations: 549)
4867
+ Completed 200 OK in 2ms (Views: 1.8ms | Allocations: 765)
4868
+ Started GET "/inky/layout" for 127.0.0.1 at 2021-12-06 11:06:17 -0500
4869
+ Processing by InkyController#layout as HTML
4870
+ Rendering layout layouts/inky_layout.html.inky
4871
+ Rendering inky/layout.html.erb within layouts/inky_layout
4872
+ Rendered inky/layout.html.erb within layouts/inky_layout (Duration: 0.3ms | Allocations: 70)
4873
+ Rendered layout layouts/inky_layout.html.inky (Duration: 1.0ms | Allocations: 439)
4874
+ Completed 200 OK in 2ms (Views: 1.6ms | Allocations: 897)
4875
+ Started GET "/inky/slim" for 127.0.0.1 at 2021-12-06 11:06:17 -0500
4876
+ Processing by InkyController#slim as HTML
4877
+ Rendering layout layouts/application.html.erb
4878
+ Rendering inky/slim.html.inky within layouts/application
4879
+ Rendered inky/slim.html.inky within layouts/application (Duration: 13.7ms | Allocations: 9495)
4880
+ Rendered layout layouts/application.html.erb (Duration: 13.9ms | Allocations: 9537)
4881
+ Completed 200 OK in 15ms (Views: 14.7ms | Allocations: 9873)
4882
+ Started GET "/inky/explicit_slim" for 127.0.0.1 at 2021-12-06 11:06:17 -0500
4883
+ Processing by InkyController#explicit_slim as HTML
4884
+ Rendering layout layouts/application.html.erb
4885
+ Rendering inky/explicit_slim.html.inky-slim within layouts/application
4886
+ Rendered inky/explicit_slim.html.inky-slim within layouts/application (Duration: 5.1ms | Allocations: 1737)
4887
+ Rendered layout layouts/application.html.erb (Duration: 5.4ms | Allocations: 1779)
4888
+ Completed 200 OK in 7ms (Views: 6.1ms | Allocations: 2115)
4889
+ Started GET "/inky/explicit_builder" for 127.0.0.1 at 2021-12-06 11:06:17 -0500
4890
+ Processing by InkyController#explicit_builder as HTML
4891
+ Rendering layout layouts/application.html.erb
4892
+ Rendering inky/explicit_builder.html.inky-builder within layouts/application
4893
+ Rendered inky/explicit_builder.html.inky-builder within layouts/application (Duration: 7.8ms | Allocations: 2000)
4894
+ Rendered layout layouts/application.html.erb (Duration: 8.0ms | Allocations: 2042)
4895
+ Completed 200 OK in 9ms (Views: 8.5ms | Allocations: 2378)
4896
+ Started GET "/inky/simple" for 127.0.0.1 at 2021-12-06 11:08:07 -0500
4897
+ Processing by InkyController#simple as HTML
4898
+ Rendering layout layouts/application.html.erb
4899
+ Rendering inky/simple.html.inky within layouts/application
4900
+ Rendered inky/simple.html.inky within layouts/application (Duration: 1.8ms | Allocations: 495)
4901
+ Rendered layout layouts/application.html.erb (Duration: 2.5ms | Allocations: 664)
4902
+ Completed 200 OK in 10ms (Views: 6.9ms | Allocations: 2652)
4903
+ Started GET "/inky/non_inky" for 127.0.0.1 at 2021-12-06 11:08:07 -0500
4904
+ Processing by InkyController#non_inky as HTML
4905
+ Rendering layout layouts/application.html.erb
4906
+ Rendering inky/non_inky.html.erb within layouts/application
4907
+ Rendered inky/non_inky.html.erb within layouts/application (Duration: 0.5ms | Allocations: 95)
4908
+ Rendered layout layouts/application.html.erb (Duration: 0.7ms | Allocations: 138)
4909
+ Completed 200 OK in 2ms (Views: 1.1ms | Allocations: 500)
4910
+ Started GET "/inky/non_inky?partial=inky_partial" for 127.0.0.1 at 2021-12-06 11:08:07 -0500
4911
+ Processing by InkyController#non_inky as HTML
4912
+ Parameters: {"partial"=>"inky_partial"}
4913
+ Rendering layout layouts/application.html.erb
4914
+ Rendering inky/non_inky.html.erb within layouts/application
4915
+ Rendered inky/_inky_partial.html.inky (Duration: 1.5ms | Allocations: 309)
4916
+ Rendered inky/non_inky.html.erb within layouts/application (Duration: 2.6ms | Allocations: 506)
4917
+ Rendered layout layouts/application.html.erb (Duration: 2.8ms | Allocations: 549)
4918
+ Completed 200 OK in 4ms (Views: 3.5ms | Allocations: 765)
4919
+ Started GET "/inky/layout" for 127.0.0.1 at 2021-12-06 11:08:07 -0500
4920
+ Processing by InkyController#layout as HTML
4921
+ Rendering layout layouts/inky_layout.html.inky
4922
+ Rendering inky/layout.html.erb within layouts/inky_layout
4923
+ Rendered inky/layout.html.erb within layouts/inky_layout (Duration: 0.7ms | Allocations: 70)
4924
+ Rendered layout layouts/inky_layout.html.inky (Duration: 2.3ms | Allocations: 439)
4925
+ Completed 200 OK in 5ms (Views: 4.0ms | Allocations: 897)
4926
+ Started GET "/inky/slim" for 127.0.0.1 at 2021-12-06 11:08:07 -0500
4927
+ Processing by InkyController#slim as HTML
4928
+ Rendering layout layouts/application.html.erb
4929
+ Rendering inky/slim.html.inky within layouts/application
4930
+ Rendered inky/slim.html.inky within layouts/application (Duration: 20.5ms | Allocations: 9495)
4931
+ Rendered layout layouts/application.html.erb (Duration: 20.8ms | Allocations: 9537)
4932
+ Completed 200 OK in 23ms (Views: 21.5ms | Allocations: 9873)
4933
+ Started GET "/inky/explicit_slim" for 127.0.0.1 at 2021-12-06 11:08:07 -0500
4934
+ Processing by InkyController#explicit_slim as HTML
4935
+ Rendering layout layouts/application.html.erb
4936
+ Rendering inky/explicit_slim.html.inky-slim within layouts/application
4937
+ Rendered inky/explicit_slim.html.inky-slim within layouts/application (Duration: 3.5ms | Allocations: 1737)
4938
+ Rendered layout layouts/application.html.erb (Duration: 3.7ms | Allocations: 1779)
4939
+ Completed 200 OK in 5ms (Views: 4.1ms | Allocations: 2115)
4940
+ Started GET "/inky/explicit_builder" for 127.0.0.1 at 2021-12-06 11:08:07 -0500
4941
+ Processing by InkyController#explicit_builder as HTML
4942
+ Rendering layout layouts/application.html.erb
4943
+ Rendering inky/explicit_builder.html.inky-builder within layouts/application
4944
+ Rendered inky/explicit_builder.html.inky-builder within layouts/application (Duration: 18.1ms | Allocations: 2000)
4945
+ Rendered layout layouts/application.html.erb (Duration: 18.3ms | Allocations: 2042)
4946
+ Completed 200 OK in 20ms (Views: 19.0ms | Allocations: 2378)
4947
+ Started GET "/inky/simple" for 127.0.0.1 at 2021-12-06 11:10:07 -0500
4948
+ Processing by InkyController#simple as HTML
4949
+ Rendering layout layouts/application.html.erb
4950
+ Rendering inky/simple.html.inky within layouts/application
4951
+ Rendered inky/simple.html.inky within layouts/application (Duration: 1.6ms | Allocations: 495)
4952
+ Rendered layout layouts/application.html.erb (Duration: 2.3ms | Allocations: 664)
4953
+ Completed 200 OK in 8ms (Views: 6.2ms | Allocations: 2651)
4954
+ Started GET "/inky/non_inky" for 127.0.0.1 at 2021-12-06 11:10:07 -0500
4955
+ Processing by InkyController#non_inky as HTML
4956
+ Rendering layout layouts/application.html.erb
4957
+ Rendering inky/non_inky.html.erb within layouts/application
4958
+ Rendered inky/non_inky.html.erb within layouts/application (Duration: 0.3ms | Allocations: 95)
4959
+ Rendered layout layouts/application.html.erb (Duration: 0.4ms | Allocations: 138)
4960
+ Completed 200 OK in 1ms (Views: 0.8ms | Allocations: 500)
4961
+ Started GET "/inky/non_inky?partial=inky_partial" for 127.0.0.1 at 2021-12-06 11:10:07 -0500
4962
+ Processing by InkyController#non_inky as HTML
4963
+ Parameters: {"partial"=>"inky_partial"}
4964
+ Rendering layout layouts/application.html.erb
4965
+ Rendering inky/non_inky.html.erb within layouts/application
4966
+ Rendered inky/_inky_partial.html.inky (Duration: 1.4ms | Allocations: 309)
4967
+ Rendered inky/non_inky.html.erb within layouts/application (Duration: 2.2ms | Allocations: 506)
4968
+ Rendered layout layouts/application.html.erb (Duration: 2.4ms | Allocations: 549)
4969
+ Completed 200 OK in 3ms (Views: 3.0ms | Allocations: 765)
4970
+ Started GET "/inky/layout" for 127.0.0.1 at 2021-12-06 11:10:07 -0500
4971
+ Processing by InkyController#layout as HTML
4972
+ Rendering layout layouts/inky_layout.html.inky
4973
+ Rendering inky/layout.html.erb within layouts/inky_layout
4974
+ Rendered inky/layout.html.erb within layouts/inky_layout (Duration: 0.4ms | Allocations: 70)
4975
+ Rendered layout layouts/inky_layout.html.inky (Duration: 1.6ms | Allocations: 439)
4976
+ Completed 200 OK in 4ms (Views: 3.0ms | Allocations: 897)
4977
+ Started GET "/inky/slim" for 127.0.0.1 at 2021-12-06 11:10:07 -0500
4978
+ Processing by InkyController#slim as HTML
4979
+ Rendering layout layouts/application.html.erb
4980
+ Rendering inky/slim.html.inky within layouts/application
4981
+ Rendered inky/slim.html.inky within layouts/application (Duration: 12.4ms | Allocations: 9495)
4982
+ Rendered layout layouts/application.html.erb (Duration: 12.6ms | Allocations: 9537)
4983
+ Completed 200 OK in 13ms (Views: 13.0ms | Allocations: 9873)
4984
+ Started GET "/inky/explicit_slim" for 127.0.0.1 at 2021-12-06 11:10:07 -0500
4985
+ Processing by InkyController#explicit_slim as HTML
4986
+ Rendering layout layouts/application.html.erb
4987
+ Rendering inky/explicit_slim.html.inky-slim within layouts/application
4988
+ Rendered inky/explicit_slim.html.inky-slim within layouts/application (Duration: 3.6ms | Allocations: 1737)
4989
+ Rendered layout layouts/application.html.erb (Duration: 3.8ms | Allocations: 1779)
4990
+ Completed 200 OK in 5ms (Views: 4.2ms | Allocations: 2115)
4991
+ Started GET "/inky/explicit_builder" for 127.0.0.1 at 2021-12-06 11:10:07 -0500
4992
+ Processing by InkyController#explicit_builder as HTML
4993
+ Rendering layout layouts/application.html.erb
4994
+ Rendering inky/explicit_builder.html.inky-builder within layouts/application
4995
+ Rendered inky/explicit_builder.html.inky-builder within layouts/application (Duration: 16.6ms | Allocations: 2002)
4996
+ Rendered layout layouts/application.html.erb (Duration: 17.0ms | Allocations: 2044)
4997
+ Completed 200 OK in 18ms (Views: 17.7ms | Allocations: 2381)
4998
+ Started GET "/inky/simple" for 127.0.0.1 at 2021-12-06 11:12:13 -0500
4999
+ Processing by InkyController#simple as HTML
5000
+ Rendering layout layouts/application.html.erb
5001
+ Rendering inky/simple.html.inky within layouts/application
5002
+ Rendered inky/simple.html.inky within layouts/application (Duration: 1.3ms | Allocations: 495)
5003
+ Rendered layout layouts/application.html.erb (Duration: 1.9ms | Allocations: 664)
5004
+ Completed 200 OK in 7ms (Views: 5.6ms | Allocations: 2652)
5005
+ Started GET "/inky/non_inky" for 127.0.0.1 at 2021-12-06 11:12:13 -0500
5006
+ Processing by InkyController#non_inky as HTML
5007
+ Rendering layout layouts/application.html.erb
5008
+ Rendering inky/non_inky.html.erb within layouts/application
5009
+ Rendered inky/non_inky.html.erb within layouts/application (Duration: 0.3ms | Allocations: 95)
5010
+ Rendered layout layouts/application.html.erb (Duration: 0.5ms | Allocations: 138)
5011
+ Completed 200 OK in 2ms (Views: 0.8ms | Allocations: 500)
5012
+ Started GET "/inky/non_inky?partial=inky_partial" for 127.0.0.1 at 2021-12-06 11:12:13 -0500
5013
+ Processing by InkyController#non_inky as HTML
5014
+ Parameters: {"partial"=>"inky_partial"}
5015
+ Rendering layout layouts/application.html.erb
5016
+ Rendering inky/non_inky.html.erb within layouts/application
5017
+ Rendered inky/_inky_partial.html.inky (Duration: 1.1ms | Allocations: 309)
5018
+ Rendered inky/non_inky.html.erb within layouts/application (Duration: 1.6ms | Allocations: 506)
5019
+ Rendered layout layouts/application.html.erb (Duration: 1.7ms | Allocations: 549)
5020
+ Completed 200 OK in 2ms (Views: 2.0ms | Allocations: 765)
5021
+ Started GET "/inky/layout" for 127.0.0.1 at 2021-12-06 11:12:13 -0500
5022
+ Processing by InkyController#layout as HTML
5023
+ Rendering layout layouts/inky_layout.html.inky
5024
+ Rendering inky/layout.html.erb within layouts/inky_layout
5025
+ Rendered inky/layout.html.erb within layouts/inky_layout (Duration: 0.3ms | Allocations: 70)
5026
+ Rendered layout layouts/inky_layout.html.inky (Duration: 1.1ms | Allocations: 439)
5027
+ Completed 200 OK in 2ms (Views: 1.8ms | Allocations: 897)
5028
+ Started GET "/inky/slim" for 127.0.0.1 at 2021-12-06 11:12:13 -0500
5029
+ Processing by InkyController#slim as HTML
5030
+ Rendering layout layouts/application.html.erb
5031
+ Rendering inky/slim.html.inky within layouts/application
5032
+ Rendered inky/slim.html.inky within layouts/application (Duration: 18.1ms | Allocations: 9495)
5033
+ Rendered layout layouts/application.html.erb (Duration: 18.3ms | Allocations: 9537)
5034
+ Completed 200 OK in 19ms (Views: 18.7ms | Allocations: 9874)
5035
+ Started GET "/inky/explicit_slim" for 127.0.0.1 at 2021-12-06 11:12:13 -0500
5036
+ Processing by InkyController#explicit_slim as HTML
5037
+ Rendering layout layouts/application.html.erb
5038
+ Rendering inky/explicit_slim.html.inky-slim within layouts/application
5039
+ Rendered inky/explicit_slim.html.inky-slim within layouts/application (Duration: 2.8ms | Allocations: 1740)
5040
+ Rendered layout layouts/application.html.erb (Duration: 2.9ms | Allocations: 1782)
5041
+ Completed 200 OK in 4ms (Views: 3.4ms | Allocations: 2118)
5042
+ Started GET "/inky/explicit_builder" for 127.0.0.1 at 2021-12-06 11:12:13 -0500
5043
+ Processing by InkyController#explicit_builder as HTML
5044
+ Rendering layout layouts/application.html.erb
5045
+ Rendering inky/explicit_builder.html.inky-builder within layouts/application
5046
+ Rendered inky/explicit_builder.html.inky-builder within layouts/application (Duration: 7.5ms | Allocations: 2000)
5047
+ Rendered layout layouts/application.html.erb (Duration: 7.7ms | Allocations: 2042)
5048
+ Completed 200 OK in 9ms (Views: 8.1ms | Allocations: 2378)
5049
+ Started GET "/inky/simple" for 127.0.0.1 at 2021-12-06 11:17:43 -0500
5050
+ Processing by InkyController#simple as HTML
5051
+ Rendering layout layouts/application.html.erb
5052
+ Rendering inky/simple.html.inky within layouts/application
5053
+ Rendered inky/simple.html.inky within layouts/application (Duration: 2.2ms | Allocations: 495)
5054
+ Rendered layout layouts/application.html.erb (Duration: 3.2ms | Allocations: 664)
5055
+ Completed 200 OK in 13ms (Views: 8.8ms | Allocations: 2652)
5056
+ Started GET "/inky/non_inky" for 127.0.0.1 at 2021-12-06 11:17:43 -0500
5057
+ Processing by InkyController#non_inky as HTML
5058
+ Rendering layout layouts/application.html.erb
5059
+ Rendering inky/non_inky.html.erb within layouts/application
5060
+ Rendered inky/non_inky.html.erb within layouts/application (Duration: 0.6ms | Allocations: 95)
5061
+ Rendered layout layouts/application.html.erb (Duration: 0.9ms | Allocations: 138)
5062
+ Completed 200 OK in 2ms (Views: 1.4ms | Allocations: 500)
5063
+ Started GET "/inky/non_inky?partial=inky_partial" for 127.0.0.1 at 2021-12-06 11:17:43 -0500
5064
+ Processing by InkyController#non_inky as HTML
5065
+ Parameters: {"partial"=>"inky_partial"}
5066
+ Rendering layout layouts/application.html.erb
5067
+ Rendering inky/non_inky.html.erb within layouts/application
5068
+ Rendered inky/_inky_partial.html.inky (Duration: 1.5ms | Allocations: 309)
5069
+ Rendered inky/non_inky.html.erb within layouts/application (Duration: 2.1ms | Allocations: 506)
5070
+ Rendered layout layouts/application.html.erb (Duration: 2.2ms | Allocations: 549)
5071
+ Completed 200 OK in 3ms (Views: 2.6ms | Allocations: 765)
5072
+ Started GET "/inky/layout" for 127.0.0.1 at 2021-12-06 11:17:43 -0500
5073
+ Processing by InkyController#layout as HTML
5074
+ Rendering layout layouts/inky_layout.html.inky
5075
+ Rendering inky/layout.html.erb within layouts/inky_layout
5076
+ Rendered inky/layout.html.erb within layouts/inky_layout (Duration: 0.6ms | Allocations: 70)
5077
+ Rendered layout layouts/inky_layout.html.inky (Duration: 2.9ms | Allocations: 439)
5078
+ Completed 200 OK in 5ms (Views: 3.9ms | Allocations: 897)
5079
+ Started GET "/inky/slim" for 127.0.0.1 at 2021-12-06 11:17:43 -0500
5080
+ Processing by InkyController#slim as HTML
5081
+ Rendering layout layouts/application.html.erb
5082
+ Rendering inky/slim.html.inky within layouts/application
5083
+ Rendered inky/slim.html.inky within layouts/application (Duration: 13.8ms | Allocations: 9572)
5084
+ Rendered layout layouts/application.html.erb (Duration: 14.1ms | Allocations: 9614)
5085
+ Completed 200 OK in 15ms (Views: 14.6ms | Allocations: 9950)
5086
+ Started GET "/inky/explicit_slim" for 127.0.0.1 at 2021-12-06 11:17:43 -0500
5087
+ Processing by InkyController#explicit_slim as HTML
5088
+ Rendering layout layouts/application.html.erb
5089
+ Rendering inky/explicit_slim.html.inky-slim within layouts/application
5090
+ Rendered inky/explicit_slim.html.inky-slim within layouts/application (Duration: 3.0ms | Allocations: 1737)
5091
+ Rendered layout layouts/application.html.erb (Duration: 3.1ms | Allocations: 1779)
5092
+ Completed 200 OK in 4ms (Views: 3.6ms | Allocations: 2115)
5093
+ Started GET "/inky/explicit_builder" for 127.0.0.1 at 2021-12-06 11:17:43 -0500
5094
+ Processing by InkyController#explicit_builder as HTML
5095
+ Rendering layout layouts/application.html.erb
5096
+ Rendering inky/explicit_builder.html.inky-builder within layouts/application
5097
+ Rendered inky/explicit_builder.html.inky-builder within layouts/application (Duration: 14.3ms | Allocations: 2002)
5098
+ Rendered layout layouts/application.html.erb (Duration: 14.6ms | Allocations: 2044)
5099
+ Completed 200 OK in 16ms (Views: 15.0ms | Allocations: 2382)
5100
+ Started GET "/inky/simple" for 127.0.0.1 at 2021-12-06 11:24:48 -0500
5101
+ Processing by InkyController#simple as HTML
5102
+ Rendering layout layouts/application.html.erb
5103
+ Rendering inky/simple.html.inky within layouts/application
5104
+ Rendered inky/simple.html.inky within layouts/application (Duration: 1.2ms | Allocations: 498)
5105
+ Rendered layout layouts/application.html.erb (Duration: 1.7ms | Allocations: 667)
5106
+ Completed 200 OK in 7ms (Views: 4.9ms | Allocations: 2655)
5107
+ Started GET "/inky/non_inky" for 127.0.0.1 at 2021-12-06 11:24:48 -0500
5108
+ Processing by InkyController#non_inky as HTML
5109
+ Rendering layout layouts/application.html.erb
5110
+ Rendering inky/non_inky.html.erb within layouts/application
5111
+ Rendered inky/non_inky.html.erb within layouts/application (Duration: 0.4ms | Allocations: 95)
5112
+ Rendered layout layouts/application.html.erb (Duration: 0.6ms | Allocations: 138)
5113
+ Completed 200 OK in 2ms (Views: 1.0ms | Allocations: 500)
5114
+ Started GET "/inky/non_inky?partial=inky_partial" for 127.0.0.1 at 2021-12-06 11:24:48 -0500
5115
+ Processing by InkyController#non_inky as HTML
5116
+ Parameters: {"partial"=>"inky_partial"}
5117
+ Rendering layout layouts/application.html.erb
5118
+ Rendering inky/non_inky.html.erb within layouts/application
5119
+ Rendered inky/_inky_partial.html.inky (Duration: 1.1ms | Allocations: 309)
5120
+ Rendered inky/non_inky.html.erb within layouts/application (Duration: 1.8ms | Allocations: 506)
5121
+ Rendered layout layouts/application.html.erb (Duration: 2.0ms | Allocations: 549)
5122
+ Completed 200 OK in 3ms (Views: 2.4ms | Allocations: 765)
5123
+ Started GET "/inky/layout" for 127.0.0.1 at 2021-12-06 11:24:48 -0500
5124
+ Processing by InkyController#layout as HTML
5125
+ Rendering layout layouts/inky_layout.html.inky
5126
+ Rendering inky/layout.html.erb within layouts/inky_layout
5127
+ Rendered inky/layout.html.erb within layouts/inky_layout (Duration: 0.3ms | Allocations: 70)
5128
+ Rendered layout layouts/inky_layout.html.inky (Duration: 1.2ms | Allocations: 480)
5129
+ Completed 200 OK in 3ms (Views: 2.0ms | Allocations: 938)
5130
+ Started GET "/inky/slim" for 127.0.0.1 at 2021-12-06 11:24:48 -0500
5131
+ Processing by InkyController#slim as HTML
5132
+ Rendering layout layouts/application.html.erb
5133
+ Rendering inky/slim.html.inky within layouts/application
5134
+ Rendered inky/slim.html.inky within layouts/application (Duration: 11.9ms | Allocations: 9580)
5135
+ Rendered layout layouts/application.html.erb (Duration: 12.2ms | Allocations: 9622)
5136
+ Completed 200 OK in 14ms (Views: 12.7ms | Allocations: 9959)
5137
+ Started GET "/inky/explicit_slim" for 127.0.0.1 at 2021-12-06 11:24:48 -0500
5138
+ Processing by InkyController#explicit_slim as HTML
5139
+ Rendering layout layouts/application.html.erb
5140
+ Rendering inky/explicit_slim.html.inky-slim within layouts/application
5141
+ Rendered inky/explicit_slim.html.inky-slim within layouts/application (Duration: 3.1ms | Allocations: 1740)
5142
+ Rendered layout layouts/application.html.erb (Duration: 3.3ms | Allocations: 1782)
5143
+ Completed 200 OK in 4ms (Views: 3.7ms | Allocations: 2118)
5144
+ Started GET "/inky/explicit_builder" for 127.0.0.1 at 2021-12-06 11:24:48 -0500
5145
+ Processing by InkyController#explicit_builder as HTML
5146
+ Rendering layout layouts/application.html.erb
5147
+ Rendering inky/explicit_builder.html.inky-builder within layouts/application
5148
+ Rendered inky/explicit_builder.html.inky-builder within layouts/application (Duration: 12.3ms | Allocations: 2002)
5149
+ Rendered layout layouts/application.html.erb (Duration: 12.5ms | Allocations: 2044)
5150
+ Completed 200 OK in 14ms (Views: 13.0ms | Allocations: 2380)
5151
+ Started GET "/inky/simple" for 127.0.0.1 at 2021-12-06 11:27:25 -0500
5152
+ Processing by InkyController#simple as HTML
5153
+ Rendering layout layouts/application.html.erb
5154
+ Rendering inky/simple.html.inky within layouts/application
5155
+ Rendered inky/simple.html.inky within layouts/application (Duration: 1.3ms | Allocations: 498)
5156
+ Rendered layout layouts/application.html.erb (Duration: 1.8ms | Allocations: 667)
5157
+ Completed 200 OK in 8ms (Views: 6.3ms | Allocations: 2655)
5158
+ Started GET "/inky/non_inky" for 127.0.0.1 at 2021-12-06 11:27:25 -0500
5159
+ Processing by InkyController#non_inky as HTML
5160
+ Rendering layout layouts/application.html.erb
5161
+ Rendering inky/non_inky.html.erb within layouts/application
5162
+ Rendered inky/non_inky.html.erb within layouts/application (Duration: 0.3ms | Allocations: 95)
5163
+ Rendered layout layouts/application.html.erb (Duration: 0.4ms | Allocations: 138)
5164
+ Completed 200 OK in 1ms (Views: 0.8ms | Allocations: 500)
5165
+ Started GET "/inky/non_inky?partial=inky_partial" for 127.0.0.1 at 2021-12-06 11:27:25 -0500
5166
+ Processing by InkyController#non_inky as HTML
5167
+ Parameters: {"partial"=>"inky_partial"}
5168
+ Rendering layout layouts/application.html.erb
5169
+ Rendering inky/non_inky.html.erb within layouts/application
5170
+ Rendered inky/_inky_partial.html.inky (Duration: 0.8ms | Allocations: 309)
5171
+ Rendered inky/non_inky.html.erb within layouts/application (Duration: 1.3ms | Allocations: 506)
5172
+ Rendered layout layouts/application.html.erb (Duration: 1.4ms | Allocations: 549)
5173
+ Completed 200 OK in 2ms (Views: 1.7ms | Allocations: 765)
5174
+ Started GET "/inky/layout" for 127.0.0.1 at 2021-12-06 11:27:25 -0500
5175
+ Processing by InkyController#layout as HTML
5176
+ Rendering layout layouts/inky_layout.html.inky
5177
+ Rendering inky/layout.html.erb within layouts/inky_layout
5178
+ Rendered inky/layout.html.erb within layouts/inky_layout (Duration: 0.3ms | Allocations: 70)
5179
+ Rendered layout layouts/inky_layout.html.inky (Duration: 1.4ms | Allocations: 480)
5180
+ Completed 200 OK in 3ms (Views: 2.4ms | Allocations: 938)
5181
+ Started GET "/inky/slim" for 127.0.0.1 at 2021-12-06 11:27:25 -0500
5182
+ Processing by InkyController#slim as HTML
5183
+ Rendering layout layouts/application.html.erb
5184
+ Rendering inky/slim.html.inky within layouts/application
5185
+ Rendered inky/slim.html.inky within layouts/application (Duration: 10.0ms | Allocations: 9577)
5186
+ Rendered layout layouts/application.html.erb (Duration: 10.2ms | Allocations: 9619)
5187
+ Completed 200 OK in 11ms (Views: 10.7ms | Allocations: 9955)
5188
+ Started GET "/inky/explicit_slim" for 127.0.0.1 at 2021-12-06 11:27:25 -0500
5189
+ Processing by InkyController#explicit_slim as HTML
5190
+ Rendering layout layouts/application.html.erb
5191
+ Rendering inky/explicit_slim.html.inky-slim within layouts/application
5192
+ Rendered inky/explicit_slim.html.inky-slim within layouts/application (Duration: 3.0ms | Allocations: 1740)
5193
+ Rendered layout layouts/application.html.erb (Duration: 3.2ms | Allocations: 1782)
5194
+ Completed 200 OK in 5ms (Views: 3.8ms | Allocations: 2118)
5195
+ Started GET "/inky/explicit_builder" for 127.0.0.1 at 2021-12-06 11:27:25 -0500
5196
+ Processing by InkyController#explicit_builder as HTML
5197
+ Rendering layout layouts/application.html.erb
5198
+ Rendering inky/explicit_builder.html.inky-builder within layouts/application
5199
+ Rendered inky/explicit_builder.html.inky-builder within layouts/application (Duration: 13.2ms | Allocations: 2004)
5200
+ Rendered layout layouts/application.html.erb (Duration: 13.4ms | Allocations: 2046)
5201
+ Completed 200 OK in 14ms (Views: 13.9ms | Allocations: 2383)
5202
+ Started GET "/inky/simple" for 127.0.0.1 at 2021-12-06 12:40:53 -0500
5203
+ Processing by InkyController#simple as HTML
5204
+ Rendering layout layouts/application.html.erb
5205
+ Rendering inky/simple.html.inky within layouts/application
5206
+ Rendered inky/simple.html.inky within layouts/application (Duration: 4.2ms | Allocations: 497)
5207
+ Rendered layout layouts/application.html.erb (Duration: 5.5ms | Allocations: 666)
5208
+ Completed 200 OK in 14ms (Views: 11.0ms | Allocations: 2653)
5209
+ Started GET "/inky/non_inky" for 127.0.0.1 at 2021-12-06 12:40:53 -0500
5210
+ Processing by InkyController#non_inky as HTML
5211
+ Rendering layout layouts/application.html.erb
5212
+ Rendering inky/non_inky.html.erb within layouts/application
5213
+ Rendered inky/non_inky.html.erb within layouts/application (Duration: 0.9ms | Allocations: 95)
5214
+ Rendered layout layouts/application.html.erb (Duration: 1.1ms | Allocations: 138)
5215
+ Completed 200 OK in 2ms (Views: 1.6ms | Allocations: 500)
5216
+ Started GET "/inky/non_inky?partial=inky_partial" for 127.0.0.1 at 2021-12-06 12:40:53 -0500
5217
+ Processing by InkyController#non_inky as HTML
5218
+ Parameters: {"partial"=>"inky_partial"}
5219
+ Rendering layout layouts/application.html.erb
5220
+ Rendering inky/non_inky.html.erb within layouts/application
5221
+ Rendered inky/_inky_partial.html.inky (Duration: 1.9ms | Allocations: 311)
5222
+ Rendered inky/non_inky.html.erb within layouts/application (Duration: 2.5ms | Allocations: 508)
5223
+ Rendered layout layouts/application.html.erb (Duration: 2.7ms | Allocations: 551)
5224
+ Completed 200 OK in 3ms (Views: 3.1ms | Allocations: 767)
5225
+ Started GET "/inky/layout" for 127.0.0.1 at 2021-12-06 12:40:53 -0500
5226
+ Processing by InkyController#layout as HTML
5227
+ Rendering layout layouts/inky_layout.html.inky
5228
+ Rendering inky/layout.html.erb within layouts/inky_layout
5229
+ Rendered inky/layout.html.erb within layouts/inky_layout (Duration: 0.6ms | Allocations: 70)
5230
+ Rendered layout layouts/inky_layout.html.inky (Duration: 2.4ms | Allocations: 441)
5231
+ Completed 200 OK in 4ms (Views: 3.1ms | Allocations: 899)
5232
+ Started GET "/inky/slim" for 127.0.0.1 at 2021-12-06 12:40:53 -0500
5233
+ Processing by InkyController#slim as HTML
5234
+ Rendering layout layouts/application.html.erb
5235
+ Rendering inky/slim.html.inky within layouts/application
5236
+ Rendered inky/slim.html.inky within layouts/application (Duration: 19.9ms | Allocations: 9578)
5237
+ Rendered layout layouts/application.html.erb (Duration: 20.2ms | Allocations: 9620)
5238
+ Completed 200 OK in 21ms (Views: 20.6ms | Allocations: 9957)
5239
+ Started GET "/inky/explicit_slim" for 127.0.0.1 at 2021-12-06 12:40:53 -0500
5240
+ Processing by InkyController#explicit_slim as HTML
5241
+ Rendering layout layouts/application.html.erb
5242
+ Rendering inky/explicit_slim.html.inky-slim within layouts/application
5243
+ Rendered inky/explicit_slim.html.inky-slim within layouts/application (Duration: 3.6ms | Allocations: 1752)
5244
+ Rendered layout layouts/application.html.erb (Duration: 3.7ms | Allocations: 1794)
5245
+ Completed 200 OK in 5ms (Views: 4.2ms | Allocations: 2130)
5246
+ Started GET "/inky/explicit_builder" for 127.0.0.1 at 2021-12-06 12:40:53 -0500
5247
+ Processing by InkyController#explicit_builder as HTML
5248
+ Rendering layout layouts/application.html.erb
5249
+ Rendering inky/explicit_builder.html.inky-builder within layouts/application
5250
+ Rendered inky/explicit_builder.html.inky-builder within layouts/application (Duration: 15.9ms | Allocations: 2001)
5251
+ Rendered layout layouts/application.html.erb (Duration: 16.1ms | Allocations: 2043)
5252
+ Completed 200 OK in 17ms (Views: 16.6ms | Allocations: 2379)
5253
+ Started GET "/inky/simple" for 127.0.0.1 at 2021-12-06 12:59:54 -0500
5254
+ Processing by InkyController#simple as HTML
5255
+ Rendering layout layouts/application.html.erb
5256
+ Rendering inky/simple.html.inky within layouts/application
5257
+ Rendered inky/simple.html.inky within layouts/application (Duration: 1.7ms | Allocations: 497)
5258
+ Rendered layout layouts/application.html.erb (Duration: 3.1ms | Allocations: 666)
5259
+ Completed 200 OK in 12ms (Views: 8.2ms | Allocations: 2654)
5260
+ Started GET "/inky/non_inky" for 127.0.0.1 at 2021-12-06 12:59:54 -0500
5261
+ Processing by InkyController#non_inky as HTML
5262
+ Rendering layout layouts/application.html.erb
5263
+ Rendering inky/non_inky.html.erb within layouts/application
5264
+ Rendered inky/non_inky.html.erb within layouts/application (Duration: 0.8ms | Allocations: 95)
5265
+ Rendered layout layouts/application.html.erb (Duration: 1.0ms | Allocations: 138)
5266
+ Completed 200 OK in 2ms (Views: 1.6ms | Allocations: 500)
5267
+ Started GET "/inky/non_inky?partial=inky_partial" for 127.0.0.1 at 2021-12-06 12:59:54 -0500
5268
+ Processing by InkyController#non_inky as HTML
5269
+ Parameters: {"partial"=>"inky_partial"}
5270
+ Rendering layout layouts/application.html.erb
5271
+ Rendering inky/non_inky.html.erb within layouts/application
5272
+ Rendered inky/_inky_partial.html.inky (Duration: 2.2ms | Allocations: 311)
5273
+ Rendered inky/non_inky.html.erb within layouts/application (Duration: 2.9ms | Allocations: 508)
5274
+ Rendered layout layouts/application.html.erb (Duration: 3.1ms | Allocations: 551)
5275
+ Completed 200 OK in 4ms (Views: 3.8ms | Allocations: 767)
5276
+ Started GET "/inky/layout" for 127.0.0.1 at 2021-12-06 12:59:54 -0500
5277
+ Processing by InkyController#layout as HTML
5278
+ Rendering layout layouts/inky_layout.html.inky
5279
+ Rendering inky/layout.html.erb within layouts/inky_layout
5280
+ Rendered inky/layout.html.erb within layouts/inky_layout (Duration: 0.8ms | Allocations: 70)
5281
+ Rendered layout layouts/inky_layout.html.inky (Duration: 3.2ms | Allocations: 441)
5282
+ Completed 200 OK in 5ms (Views: 4.7ms | Allocations: 899)
5283
+ Started GET "/inky/slim" for 127.0.0.1 at 2021-12-06 12:59:54 -0500
5284
+ Processing by InkyController#slim as HTML
5285
+ Rendering layout layouts/application.html.erb
5286
+ Rendering inky/slim.html.inky within layouts/application
5287
+ Rendered inky/slim.html.inky within layouts/application (Duration: 11.1ms | Allocations: 9576)
5288
+ Rendered layout layouts/application.html.erb (Duration: 11.3ms | Allocations: 9618)
5289
+ Completed 200 OK in 12ms (Views: 11.6ms | Allocations: 9954)
5290
+ Started GET "/inky/explicit_slim" for 127.0.0.1 at 2021-12-06 12:59:54 -0500
5291
+ Processing by InkyController#explicit_slim as HTML
5292
+ Rendering layout layouts/application.html.erb
5293
+ Rendering inky/explicit_slim.html.inky-slim within layouts/application
5294
+ Rendered inky/explicit_slim.html.inky-slim within layouts/application (Duration: 3.3ms | Allocations: 1754)
5295
+ Rendered layout layouts/application.html.erb (Duration: 3.5ms | Allocations: 1796)
5296
+ Completed 200 OK in 4ms (Views: 3.8ms | Allocations: 2133)
5297
+ Started GET "/inky/explicit_builder" for 127.0.0.1 at 2021-12-06 12:59:54 -0500
5298
+ Processing by InkyController#explicit_builder as HTML
5299
+ Rendering layout layouts/application.html.erb
5300
+ Rendering inky/explicit_builder.html.inky-builder within layouts/application
5301
+ Rendered inky/explicit_builder.html.inky-builder within layouts/application (Duration: 12.9ms | Allocations: 2001)
5302
+ Rendered layout layouts/application.html.erb (Duration: 13.1ms | Allocations: 2043)
5303
+ Completed 200 OK in 14ms (Views: 13.5ms | Allocations: 2379)
5304
+ Started GET "/inky/simple" for 127.0.0.1 at 2021-12-06 13:06:30 -0500
5305
+ Processing by InkyController#simple as HTML
5306
+ Rendering layout layouts/application.html.erb
5307
+ Rendering inky/simple.html.inky within layouts/application
5308
+ Rendered inky/simple.html.inky within layouts/application (Duration: 2.3ms | Allocations: 496)
5309
+ Rendered layout layouts/application.html.erb (Duration: 3.3ms | Allocations: 665)
5310
+ Completed 200 OK in 17ms (Views: 8.7ms | Allocations: 2653)
5311
+ Started GET "/inky/non_inky" for 127.0.0.1 at 2021-12-06 13:06:30 -0500
5312
+ Processing by InkyController#non_inky as HTML
5313
+ Rendering layout layouts/application.html.erb
5314
+ Rendering inky/non_inky.html.erb within layouts/application
5315
+ Rendered inky/non_inky.html.erb within layouts/application (Duration: 0.6ms | Allocations: 95)
5316
+ Rendered layout layouts/application.html.erb (Duration: 0.8ms | Allocations: 138)
5317
+ Completed 200 OK in 2ms (Views: 1.1ms | Allocations: 500)
5318
+ Started GET "/inky/non_inky?partial=inky_partial" for 127.0.0.1 at 2021-12-06 13:06:30 -0500
5319
+ Processing by InkyController#non_inky as HTML
5320
+ Parameters: {"partial"=>"inky_partial"}
5321
+ Rendering layout layouts/application.html.erb
5322
+ Rendering inky/non_inky.html.erb within layouts/application
5323
+ Rendered inky/_inky_partial.html.inky (Duration: 1.2ms | Allocations: 311)
5324
+ Rendered inky/non_inky.html.erb within layouts/application (Duration: 1.8ms | Allocations: 508)
5325
+ Rendered layout layouts/application.html.erb (Duration: 1.9ms | Allocations: 551)
5326
+ Completed 200 OK in 3ms (Views: 2.4ms | Allocations: 767)
5327
+ Started GET "/inky/layout" for 127.0.0.1 at 2021-12-06 13:06:30 -0500
5328
+ Processing by InkyController#layout as HTML
5329
+ Rendering layout layouts/inky_layout.html.inky
5330
+ Rendering inky/layout.html.erb within layouts/inky_layout
5331
+ Rendered inky/layout.html.erb within layouts/inky_layout (Duration: 0.5ms | Allocations: 70)
5332
+ Rendered layout layouts/inky_layout.html.inky (Duration: 2.0ms | Allocations: 441)
5333
+ Completed 200 OK in 3ms (Views: 2.8ms | Allocations: 899)
5334
+ Started GET "/inky/slim" for 127.0.0.1 at 2021-12-06 13:06:30 -0500
5335
+ Processing by InkyController#slim as HTML
5336
+ Rendering layout layouts/application.html.erb
5337
+ Rendering inky/slim.html.inky within layouts/application
5338
+ Rendered inky/slim.html.inky within layouts/application (Duration: 11.4ms | Allocations: 9574)
5339
+ Rendered layout layouts/application.html.erb (Duration: 11.6ms | Allocations: 9616)
5340
+ Completed 200 OK in 12ms (Views: 12.0ms | Allocations: 9952)
5341
+ Started GET "/inky/explicit_slim" for 127.0.0.1 at 2021-12-06 13:06:30 -0500
5342
+ Processing by InkyController#explicit_slim as HTML
5343
+ Rendering layout layouts/application.html.erb
5344
+ Rendering inky/explicit_slim.html.inky-slim within layouts/application
5345
+ Rendered inky/explicit_slim.html.inky-slim within layouts/application (Duration: 3.5ms | Allocations: 1739)
5346
+ Rendered layout layouts/application.html.erb (Duration: 3.7ms | Allocations: 1781)
5347
+ Completed 200 OK in 5ms (Views: 4.0ms | Allocations: 2117)
5348
+ Started GET "/inky/explicit_builder" for 127.0.0.1 at 2021-12-06 13:06:30 -0500
5349
+ Processing by InkyController#explicit_builder as HTML
5350
+ Rendering layout layouts/application.html.erb
5351
+ Rendering inky/explicit_builder.html.inky-builder within layouts/application
5352
+ Rendered inky/explicit_builder.html.inky-builder within layouts/application (Duration: 16.2ms | Allocations: 2001)
5353
+ Rendered layout layouts/application.html.erb (Duration: 16.4ms | Allocations: 2043)
5354
+ Completed 200 OK in 18ms (Views: 16.8ms | Allocations: 2379)
5355
+ Started GET "/inky/simple" for 127.0.0.1 at 2021-12-06 13:14:57 -0500
5356
+ Processing by InkyController#simple as HTML
5357
+ Rendering layout layouts/application.html.erb
5358
+ Rendering inky/simple.html.inky within layouts/application
5359
+ Rendered inky/simple.html.inky within layouts/application (Duration: 3.1ms | Allocations: 498)
5360
+ Rendered layout layouts/application.html.erb (Duration: 4.2ms | Allocations: 667)
5361
+ Completed 200 OK in 20ms (Views: 10.6ms | Allocations: 2657)
5362
+ Started GET "/inky/non_inky" for 127.0.0.1 at 2021-12-06 13:14:57 -0500
5363
+ Processing by InkyController#non_inky as HTML
5364
+ Rendering layout layouts/application.html.erb
5365
+ Rendering inky/non_inky.html.erb within layouts/application
5366
+ Rendered inky/non_inky.html.erb within layouts/application (Duration: 0.4ms | Allocations: 95)
5367
+ Rendered layout layouts/application.html.erb (Duration: 0.6ms | Allocations: 138)
5368
+ Completed 200 OK in 3ms (Views: 1.1ms | Allocations: 500)
5369
+ Started GET "/inky/non_inky?partial=inky_partial" for 127.0.0.1 at 2021-12-06 13:14:57 -0500
5370
+ Processing by InkyController#non_inky as HTML
5371
+ Parameters: {"partial"=>"inky_partial"}
5372
+ Rendering layout layouts/application.html.erb
5373
+ Rendering inky/non_inky.html.erb within layouts/application
5374
+ Rendered inky/_inky_partial.html.inky (Duration: 6.0ms | Allocations: 312)
5375
+ Rendered inky/non_inky.html.erb within layouts/application (Duration: 6.6ms | Allocations: 509)
5376
+ Rendered layout layouts/application.html.erb (Duration: 6.7ms | Allocations: 552)
5377
+ Completed 200 OK in 7ms (Views: 7.0ms | Allocations: 768)
5378
+ Started GET "/inky/layout" for 127.0.0.1 at 2021-12-06 13:14:57 -0500
5379
+ Processing by InkyController#layout as HTML
5380
+ Rendering layout layouts/inky_layout.html.inky
5381
+ Rendering inky/layout.html.erb within layouts/inky_layout
5382
+ Rendered inky/layout.html.erb within layouts/inky_layout (Duration: 0.3ms | Allocations: 70)
5383
+ Rendered layout layouts/inky_layout.html.inky (Duration: 1.3ms | Allocations: 442)
5384
+ Completed 200 OK in 3ms (Views: 2.0ms | Allocations: 900)
5385
+ Started GET "/inky/slim" for 127.0.0.1 at 2021-12-06 13:14:57 -0500
5386
+ Processing by InkyController#slim as HTML
5387
+ Rendering layout layouts/application.html.erb
5388
+ Rendering inky/slim.html.inky within layouts/application
5389
+ Rendered inky/slim.html.inky within layouts/application (Duration: 13.2ms | Allocations: 9576)
5390
+ Rendered layout layouts/application.html.erb (Duration: 13.4ms | Allocations: 9618)
5391
+ Completed 200 OK in 14ms (Views: 13.8ms | Allocations: 9954)
5392
+ Started GET "/inky/explicit_slim" for 127.0.0.1 at 2021-12-06 13:14:57 -0500
5393
+ Processing by InkyController#explicit_slim as HTML
5394
+ Rendering layout layouts/application.html.erb
5395
+ Rendering inky/explicit_slim.html.inky-slim within layouts/application
5396
+ Rendered inky/explicit_slim.html.inky-slim within layouts/application (Duration: 3.0ms | Allocations: 1740)
5397
+ Rendered layout layouts/application.html.erb (Duration: 3.3ms | Allocations: 1782)
5398
+ Completed 200 OK in 5ms (Views: 4.2ms | Allocations: 2118)
5399
+ Started GET "/inky/explicit_builder" for 127.0.0.1 at 2021-12-06 13:14:58 -0500
5400
+ Processing by InkyController#explicit_builder as HTML
5401
+ Rendering layout layouts/application.html.erb
5402
+ Rendering inky/explicit_builder.html.inky-builder within layouts/application
5403
+ Rendered inky/explicit_builder.html.inky-builder within layouts/application (Duration: 13.1ms | Allocations: 2002)
5404
+ Rendered layout layouts/application.html.erb (Duration: 13.6ms | Allocations: 2044)
5405
+ Completed 200 OK in 15ms (Views: 14.1ms | Allocations: 2380)