simplificator_infrastructure 0.0.10 → 0.0.11

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: 1bd4767b7c4c8e81fcca372471e5fc9f78aca731
4
- data.tar.gz: 7fd8470edecbb4fb0b798e86dac4b4d652a26a78
3
+ metadata.gz: b7b5c6a6c3a0d05840da2247b10dcada7dadf2ba
4
+ data.tar.gz: f76e29c002daccc34c8d63d901d6ca0fc2bdb870
5
5
  SHA512:
6
- metadata.gz: 54fef1367d17f37351f4eadaff3614575fad63006f17d02567e351ea8a0c2afead0d32800ca936b74d516024cf82e4de2e5f9df5ef295ee0c5fc45abbe252ea8
7
- data.tar.gz: d8a01700bad908057ea48544d51dc2cb1027b4b7c5bb048395c0b37a929326a77e1e0dad31445f5ae26c15adeab2b6b9bc96cf7907f9ce1959ccf3655225a9f4
6
+ metadata.gz: 7c45742778e269d61343ca1d3a040b3528ace9d9ba5d22619c499572ac97b7e781e07fdaa6643277a8348a1c1d0f6c0ef75266068ed4ebbc4e155183f42e435b
7
+ data.tar.gz: 163e5f5ea6188e7bee92979caca746af61d923e5362701742aca9ec5278d5d3eb5b6c94426c79b646d9a2b3b3f3d7256780a38d2839c3ce26af970add8f71bf5
@@ -1,4 +1,4 @@
1
- require 'simplificator_infrastructure/locale_detection'
2
- require 'simplificator_infrastructure/engine'
3
1
  module SimplificatorInfrastructure
4
2
  end
3
+ require 'simplificator_infrastructure/locale_detection'
4
+ require 'simplificator_infrastructure/engine'
@@ -1,3 +1,3 @@
1
1
  module SimplificatorInfrastructure
2
- VERSION = "0.0.10"
2
+ VERSION = "0.0.11"
3
3
  end
@@ -2749,3 +2749,107 @@ Completed 404 Not Found in 2ms (Views: 1.3ms)
2749
2749
  ---------------------------------------------------------------------------------------
2750
2750
  SimplificatorInfrastructure::ErrorSummaryTest: test_locale:_check_params_if_not_in_path
2751
2751
  ---------------------------------------------------------------------------------------
2752
+ -------------------------------------
2753
+ ErrorPreviewsControllerTest: test_404
2754
+ -------------------------------------
2755
+ Started GET "/error_previews/preview?code=404" for 127.0.0.1 at 2015-02-09 13:08:02 +0100
2756
+ Processing by ErrorPreviewsController#preview as HTML
2757
+ Parameters: {"code"=>"404"}
2758
+ Completed 404 Not Found in 0ms
2759
+
2760
+ ActionController::RoutingError (Was asked to raise generate a 404):
2761
+ app/controllers/error_previews_controller.rb:9:in `preview'
2762
+ test/integration/error_previews_controller_test.rb:11:in `block in <class:ErrorPreviewsControllerTest>'
2763
+
2764
+
2765
+ Processing by SimplificatorInfrastructure::ErrorsController#render_error as HTML
2766
+ Parameters: {"code"=>"404"}
2767
+ Rendered /Users/pascal/repositories/simplificator/simplificator_infrastructure/app/views/errors/404.html.erb within layouts/simplificator_infrastructure/errors (6.4ms)
2768
+ Completed 404 Not Found in 30ms (Views: 24.8ms)
2769
+ -------------------------------------
2770
+ ErrorPreviewsControllerTest: test_500
2771
+ -------------------------------------
2772
+ Started GET "/error_previews/preview" for 127.0.0.1 at 2015-02-09 13:08:02 +0100
2773
+ Processing by ErrorPreviewsController#preview as HTML
2774
+ Completed 500 Internal Server Error in 0ms
2775
+
2776
+ RuntimeError (some generic exception):
2777
+ app/controllers/error_previews_controller.rb:8:in `preview'
2778
+ test/integration/error_previews_controller_test.rb:5:in `block in <class:ErrorPreviewsControllerTest>'
2779
+
2780
+
2781
+ Processing by SimplificatorInfrastructure::ErrorsController#render_error as HTML
2782
+ Rendered /Users/pascal/repositories/simplificator/simplificator_infrastructure/app/views/errors/generic_error.html.erb within layouts/simplificator_infrastructure/errors (2.9ms)
2783
+ Completed 500 Internal Server Error in 5ms (Views: 4.2ms)
2784
+ ---------------------------------------------------------------
2785
+ ErrorPreviewsControllerTest: test_renders_html_for_pdf_requests
2786
+ ---------------------------------------------------------------
2787
+ Started GET "/error_previews/preview.pdf?code=404" for 127.0.0.1 at 2015-02-09 13:08:02 +0100
2788
+ Processing by ErrorPreviewsController#preview as PDF
2789
+ Parameters: {"code"=>"404"}
2790
+ Completed 404 Not Found in 0ms
2791
+
2792
+ ActionController::RoutingError (Was asked to raise generate a 404):
2793
+ app/controllers/error_previews_controller.rb:9:in `preview'
2794
+ test/integration/error_previews_controller_test.rb:17:in `block in <class:ErrorPreviewsControllerTest>'
2795
+
2796
+
2797
+ Processing by SimplificatorInfrastructure::ErrorsController#render_error as PDF
2798
+ Parameters: {"code"=>"404"}
2799
+ Rendered /Users/pascal/repositories/simplificator/simplificator_infrastructure/app/views/errors/404.html.erb within layouts/simplificator_infrastructure/errors (0.8ms)
2800
+ Completed 404 Not Found in 8ms (Views: 6.7ms)
2801
+ ---------------------------------------------------------------------------------------
2802
+ SimplificatorInfrastructure::ErrorSummaryTest: test_locale:_check_params_if_not_in_path
2803
+ ---------------------------------------------------------------------------------------
2804
+ ---------------------------------------------------------------------------------------
2805
+ SimplificatorInfrastructure::ErrorSummaryTest: test_locale:_check_params_if_not_in_path
2806
+ ---------------------------------------------------------------------------------------
2807
+ ---------------------------------------------------------------
2808
+ ErrorPreviewsControllerTest: test_renders_html_for_pdf_requests
2809
+ ---------------------------------------------------------------
2810
+ Started GET "/error_previews/preview.pdf?code=404" for 127.0.0.1 at 2015-02-09 13:08:07 +0100
2811
+ Processing by ErrorPreviewsController#preview as PDF
2812
+ Parameters: {"code"=>"404"}
2813
+ Completed 404 Not Found in 0ms
2814
+
2815
+ ActionController::RoutingError (Was asked to raise generate a 404):
2816
+ app/controllers/error_previews_controller.rb:9:in `preview'
2817
+ test/integration/error_previews_controller_test.rb:17:in `block in <class:ErrorPreviewsControllerTest>'
2818
+
2819
+
2820
+ Processing by SimplificatorInfrastructure::ErrorsController#render_error as PDF
2821
+ Parameters: {"code"=>"404"}
2822
+ Rendered /Users/pascal/repositories/simplificator/simplificator_infrastructure/app/views/errors/404.html.erb within layouts/simplificator_infrastructure/errors (8.8ms)
2823
+ Completed 404 Not Found in 21ms (Views: 19.9ms)
2824
+ -------------------------------------
2825
+ ErrorPreviewsControllerTest: test_500
2826
+ -------------------------------------
2827
+ Started GET "/error_previews/preview" for 127.0.0.1 at 2015-02-09 13:08:07 +0100
2828
+ Processing by ErrorPreviewsController#preview as HTML
2829
+ Completed 500 Internal Server Error in 0ms
2830
+
2831
+ RuntimeError (some generic exception):
2832
+ app/controllers/error_previews_controller.rb:8:in `preview'
2833
+ test/integration/error_previews_controller_test.rb:5:in `block in <class:ErrorPreviewsControllerTest>'
2834
+
2835
+
2836
+ Processing by SimplificatorInfrastructure::ErrorsController#render_error as HTML
2837
+ Rendered /Users/pascal/repositories/simplificator/simplificator_infrastructure/app/views/errors/generic_error.html.erb within layouts/simplificator_infrastructure/errors (1.7ms)
2838
+ Completed 500 Internal Server Error in 4ms (Views: 3.0ms)
2839
+ -------------------------------------
2840
+ ErrorPreviewsControllerTest: test_404
2841
+ -------------------------------------
2842
+ Started GET "/error_previews/preview?code=404" for 127.0.0.1 at 2015-02-09 13:08:07 +0100
2843
+ Processing by ErrorPreviewsController#preview as HTML
2844
+ Parameters: {"code"=>"404"}
2845
+ Completed 404 Not Found in 0ms
2846
+
2847
+ ActionController::RoutingError (Was asked to raise generate a 404):
2848
+ app/controllers/error_previews_controller.rb:9:in `preview'
2849
+ test/integration/error_previews_controller_test.rb:11:in `block in <class:ErrorPreviewsControllerTest>'
2850
+
2851
+
2852
+ Processing by SimplificatorInfrastructure::ErrorsController#render_error as HTML
2853
+ Parameters: {"code"=>"404"}
2854
+ Rendered /Users/pascal/repositories/simplificator/simplificator_infrastructure/app/views/errors/404.html.erb within layouts/simplificator_infrastructure/errors (0.7ms)
2855
+ Completed 404 Not Found in 2ms (Views: 1.2ms)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: simplificator_infrastructure
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.10
4
+ version: 0.0.11
5
5
  platform: ruby
6
6
  authors:
7
7
  - Pascal Betz