preserve 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: ac09bc7bb243e6a19585afb9a6c9f91d84bebc18
4
- data.tar.gz: 030f19ee58810f1870009bd2221daccfd5b03a25
2
+ SHA256:
3
+ metadata.gz: 37adea48cd8f19263a85b28690b1f5fc5cc1e6c3392c4eb08fcce876f5e6d9de
4
+ data.tar.gz: 5122ed886c0e557dd6143ab77d1202687d71618e31212ddd69dd09f658bb8444
5
5
  SHA512:
6
- metadata.gz: f5a7403a8855b2f15e53010e995a018457add9da87c3643ae081afff7f7360f5b5c8a50d46ac5a8c61dd5bb97a44b2fe910c718a1225a39a545296ff07341b51
7
- data.tar.gz: bcd43a0e6e5ed9486bf8e473d21a8ea56b338a2f0550f0943a9e59c91a5dc1647529c02361b2215874077daf7d356f45cf635a26f6f5cd0b9468ded345ddb751
6
+ metadata.gz: 6f751a5c93fa76c88e91e6b43e4c780bccda2e07c0c3ce02b8f480040e3b353bfe89ce8297ecf439573a88c252a8e7d8e77973080a73cd3823eeb772ada080c0
7
+ data.tar.gz: a5ccc80e42c0be35167baad9f4ced8dfdb8d437b41ea26c0cdd9a2a74ffdfeaf4c1c720846c6597c3cbea9a7a4a9f34a74546071fa1a56973080e8c2a51b35b1
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # Preserve
1
+ # Preserve [![Gem version](https://img.shields.io/gem/v/preserve.svg)](https://rubygems.org/gems/preserve) [![Build status](https://img.shields.io/travis/pienkowb/preserve.svg)](https://travis-ci.org/pienkowb/preserve)
2
2
 
3
3
  Preserve is a Rails plugin which stores selected parameters in a session to make them available in subsequent requests.
4
4
 
data/lib/preserve.rb CHANGED
@@ -18,11 +18,11 @@ module Preserve
18
18
 
19
19
  parameters.each do |name|
20
20
  key = [prefix, controller_name, name].compact.join('_')
21
- _preserve_filter(options, &Preserve.filter(name, key))
21
+ _set_preserve_filter(options, &Preserve.filter(name, key))
22
22
  end
23
23
  end
24
24
 
25
- def _preserve_filter(*args, &block)
25
+ def _set_preserve_filter(*args, &block)
26
26
  if respond_to?(:before_action)
27
27
  before_action(*args, &block)
28
28
  else
@@ -1,3 +1,3 @@
1
1
  module Preserve
2
- VERSION = '0.1.0'
2
+ VERSION = '0.1.1'
3
3
  end
@@ -29,4 +29,3 @@ module Dummy
29
29
  config.active_record.raise_in_transactional_callbacks = true
30
30
  end
31
31
  end
32
-
@@ -2738,3 +2738,1523 @@ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2738
2738
  Started GET "/parameters" for 127.0.0.1 at 2016-02-12 18:15:36 +0100
2739
2739
  Processing by ParametersController#index as HTML
2740
2740
  Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2741
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 19:55:55 +0100
2742
+ Processing by ParametersController#index as HTML
2743
+ Parameters: {"per_page"=>"20"}
2744
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 19:55:56 +0100
2745
+ Completed 200 OK in 299ms (Views: 128.8ms | ActiveRecord: 0.0ms)
2746
+ Processing by ParametersController#index as HTML
2747
+ Parameters: {"per_page"=>"20"}
2748
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 19:55:56 +0100
2749
+ Processing by ParametersController#index as HTML
2750
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2751
+ Completed 200 OK in 177ms (Views: 150.8ms | ActiveRecord: 0.0ms)
2752
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 19:55:57 +0100
2753
+ Processing by ParametersController#index as HTML
2754
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2755
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 19:55:57 +0100
2756
+ Processing by ParametersController#index as HTML
2757
+ Parameters: {"per_page"=>"20"}
2758
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2759
+ Started GET "/parameters?per_page=10" for 127.0.0.1 at 2016-02-12 19:55:57 +0100
2760
+ Processing by ParametersController#index as HTML
2761
+ Parameters: {"per_page"=>"10"}
2762
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2763
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2016-02-12 19:55:57 +0100
2764
+ Processing by ParametersController#index as HTML
2765
+ Parameters: {"per_page"=>"20", "page"=>"5"}
2766
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2767
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 19:55:57 +0100
2768
+ Processing by ParametersController#index as HTML
2769
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2770
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 19:55:57 +0100
2771
+ Processing by ParametersController#create as HTML
2772
+ Parameters: {"per_page"=>"20"}
2773
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2774
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 19:55:57 +0100
2775
+ Processing by ParametersController#create as HTML
2776
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2777
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2016-02-12 19:55:57 +0100
2778
+ Processing by ParametersController#index as HTML
2779
+ Parameters: {"order"=>"created_at"}
2780
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2781
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2016-02-12 19:55:57 +0100
2782
+ Processing by ParametersController#index as HTML
2783
+ Parameters: {"locale"=>"en"}
2784
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2785
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 19:55:57 +0100
2786
+ Processing by ParametersController#index as HTML
2787
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2788
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 19:55:57 +0100
2789
+ Processing by ParametersController#index as HTML
2790
+ Parameters: {"per_page"=>"20"}
2791
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2792
+ Started GET "/parameters?per_page=10" for 127.0.0.1 at 2016-02-12 19:55:57 +0100
2793
+ Processing by ParametersController#index as HTML
2794
+ Parameters: {"per_page"=>"10"}
2795
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2796
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2016-02-12 19:55:57 +0100
2797
+ Processing by ParametersController#index as HTML
2798
+ Parameters: {"per_page"=>"20", "page"=>"5"}
2799
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2800
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 19:55:57 +0100
2801
+ Processing by ParametersController#index as HTML
2802
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2803
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 19:55:57 +0100
2804
+ Processing by ParametersController#create as HTML
2805
+ Parameters: {"per_page"=>"20"}
2806
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2807
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 19:55:57 +0100
2808
+ Processing by ParametersController#create as HTML
2809
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2810
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2016-02-12 19:55:57 +0100
2811
+ Processing by ParametersController#index as HTML
2812
+ Parameters: {"order"=>"created_at"}
2813
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2814
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2016-02-12 19:55:57 +0100
2815
+ Processing by ParametersController#index as HTML
2816
+ Parameters: {"locale"=>"en"}
2817
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2818
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 19:55:57 +0100
2819
+ Processing by ParametersController#index as HTML
2820
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2821
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 19:56:00 +0100
2822
+ Processing by ParametersController#index as HTML
2823
+ Parameters: {"per_page"=>"20"}
2824
+ Completed 200 OK in 106ms (Views: 49.3ms | ActiveRecord: 0.0ms)
2825
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 19:56:01 +0100
2826
+ Processing by ParametersController#index as HTML
2827
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2828
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 19:56:01 +0100
2829
+ Processing by ParametersController#index as HTML
2830
+ Parameters: {"per_page"=>"20"}
2831
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2832
+ Started GET "/parameters?per_page=10" for 127.0.0.1 at 2016-02-12 19:56:01 +0100
2833
+ Processing by ParametersController#index as HTML
2834
+ Parameters: {"per_page"=>"10"}
2835
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2836
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2016-02-12 19:56:01 +0100
2837
+ Processing by ParametersController#index as HTML
2838
+ Parameters: {"per_page"=>"20", "page"=>"5"}
2839
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2840
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 19:56:01 +0100
2841
+ Processing by ParametersController#index as HTML
2842
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2843
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 19:56:01 +0100
2844
+ Processing by ParametersController#create as HTML
2845
+ Parameters: {"per_page"=>"20"}
2846
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2847
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 19:56:01 +0100
2848
+ Processing by ParametersController#create as HTML
2849
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2850
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2016-02-12 19:56:01 +0100
2851
+ Processing by ParametersController#index as HTML
2852
+ Parameters: {"order"=>"created_at"}
2853
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2854
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2016-02-12 19:56:01 +0100
2855
+ Processing by ParametersController#index as HTML
2856
+ Parameters: {"locale"=>"en"}
2857
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2858
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 19:56:01 +0100
2859
+ Processing by ParametersController#index as HTML
2860
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2861
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 19:56:11 +0100
2862
+ Processing by ParametersController#index as HTML
2863
+ Parameters: {"per_page"=>"20"}
2864
+ Completed 200 OK in 62ms (Views: 10.9ms | ActiveRecord: 0.0ms)
2865
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 19:56:12 +0100
2866
+ Processing by ParametersController#index as HTML
2867
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2868
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 19:56:12 +0100
2869
+ Processing by ParametersController#index as HTML
2870
+ Parameters: {"per_page"=>"20"}
2871
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2872
+ Started GET "/parameters?per_page=10" for 127.0.0.1 at 2016-02-12 19:56:12 +0100
2873
+ Processing by ParametersController#index as HTML
2874
+ Parameters: {"per_page"=>"10"}
2875
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2876
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2016-02-12 19:56:12 +0100
2877
+ Processing by ParametersController#index as HTML
2878
+ Parameters: {"per_page"=>"20", "page"=>"5"}
2879
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2880
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 19:56:12 +0100
2881
+ Processing by ParametersController#index as HTML
2882
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2883
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 19:56:12 +0100
2884
+ Processing by ParametersController#create as HTML
2885
+ Parameters: {"per_page"=>"20"}
2886
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2887
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 19:56:12 +0100
2888
+ Processing by ParametersController#create as HTML
2889
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2890
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2016-02-12 19:56:12 +0100
2891
+ Processing by ParametersController#index as HTML
2892
+ Parameters: {"order"=>"created_at"}
2893
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2894
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2016-02-12 19:56:12 +0100
2895
+ Processing by ParametersController#index as HTML
2896
+ Parameters: {"locale"=>"en"}
2897
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2898
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 19:56:12 +0100
2899
+ Processing by ParametersController#index as HTML
2900
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2901
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 19:56:24 +0100
2902
+ Processing by ParametersController#index as HTML
2903
+ Parameters: {"per_page"=>"20"}
2904
+ Completed 200 OK in 42ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2905
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 19:56:24 +0100
2906
+ Processing by ParametersController#index as HTML
2907
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2908
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 19:56:24 +0100
2909
+ Processing by ParametersController#index as HTML
2910
+ Parameters: {"per_page"=>"20"}
2911
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2912
+ Started GET "/parameters?per_page=10" for 127.0.0.1 at 2016-02-12 19:56:24 +0100
2913
+ Processing by ParametersController#index as HTML
2914
+ Parameters: {"per_page"=>"10"}
2915
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2916
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2016-02-12 19:56:24 +0100
2917
+ Processing by ParametersController#index as HTML
2918
+ Parameters: {"per_page"=>"20", "page"=>"5"}
2919
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2920
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 19:56:24 +0100
2921
+ Processing by ParametersController#index as HTML
2922
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2923
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 19:56:24 +0100
2924
+ Processing by ParametersController#create as HTML
2925
+ Parameters: {"per_page"=>"20"}
2926
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2927
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 19:56:24 +0100
2928
+ Processing by ParametersController#create as HTML
2929
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2930
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2016-02-12 19:56:24 +0100
2931
+ Processing by ParametersController#index as HTML
2932
+ Parameters: {"order"=>"created_at"}
2933
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2934
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2016-02-12 19:56:24 +0100
2935
+ Processing by ParametersController#index as HTML
2936
+ Parameters: {"locale"=>"en"}
2937
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2938
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 19:56:24 +0100
2939
+ Processing by ParametersController#index as HTML
2940
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2941
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 20:48:26 +0100
2942
+ Processing by ParametersController#index as HTML
2943
+ Parameters: {"per_page"=>"20"}
2944
+ Completed 200 OK in 68ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2945
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 20:48:27 +0100
2946
+ Processing by ParametersController#index as HTML
2947
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2948
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 20:48:27 +0100
2949
+ Processing by ParametersController#index as HTML
2950
+ Parameters: {"per_page"=>"20"}
2951
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2952
+ Started GET "/parameters?per_page=10" for 127.0.0.1 at 2016-02-12 20:48:27 +0100
2953
+ Processing by ParametersController#index as HTML
2954
+ Parameters: {"per_page"=>"10"}
2955
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2956
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2016-02-12 20:48:27 +0100
2957
+ Processing by ParametersController#index as HTML
2958
+ Parameters: {"per_page"=>"20", "page"=>"5"}
2959
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2960
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 20:48:27 +0100
2961
+ Processing by ParametersController#index as HTML
2962
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2963
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 20:48:27 +0100
2964
+ Processing by ParametersController#create as HTML
2965
+ Parameters: {"per_page"=>"20"}
2966
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2967
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 20:48:27 +0100
2968
+ Processing by ParametersController#create as HTML
2969
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2970
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2016-02-12 20:48:27 +0100
2971
+ Processing by ParametersController#index as HTML
2972
+ Parameters: {"order"=>"created_at"}
2973
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2974
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2016-02-12 20:48:27 +0100
2975
+ Processing by ParametersController#index as HTML
2976
+ Parameters: {"locale"=>"en"}
2977
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2978
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 20:48:27 +0100
2979
+ Processing by ParametersController#index as HTML
2980
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2981
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 20:48:40 +0100
2982
+ Processing by ParametersController#index as HTML
2983
+ Parameters: {"per_page"=>"20"}
2984
+ Completed 200 OK in 26ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2985
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 20:48:40 +0100
2986
+ Processing by ParametersController#index as HTML
2987
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2988
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 20:48:40 +0100
2989
+ Processing by ParametersController#index as HTML
2990
+ Parameters: {"per_page"=>"20"}
2991
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2992
+ Started GET "/parameters?per_page=10" for 127.0.0.1 at 2016-02-12 20:48:40 +0100
2993
+ Processing by ParametersController#index as HTML
2994
+ Parameters: {"per_page"=>"10"}
2995
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2996
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2016-02-12 20:48:40 +0100
2997
+ Processing by ParametersController#index as HTML
2998
+ Parameters: {"per_page"=>"20", "page"=>"5"}
2999
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
3000
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 20:48:40 +0100
3001
+ Processing by ParametersController#index as HTML
3002
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3003
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 20:48:40 +0100
3004
+ Processing by ParametersController#create as HTML
3005
+ Parameters: {"per_page"=>"20"}
3006
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3007
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 20:48:40 +0100
3008
+ Processing by ParametersController#create as HTML
3009
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3010
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2016-02-12 20:48:40 +0100
3011
+ Processing by ParametersController#index as HTML
3012
+ Parameters: {"order"=>"created_at"}
3013
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3014
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2016-02-12 20:48:40 +0100
3015
+ Processing by ParametersController#index as HTML
3016
+ Parameters: {"locale"=>"en"}
3017
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
3018
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 20:48:40 +0100
3019
+ Processing by ParametersController#index as HTML
3020
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3021
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 20:48:53 +0100
3022
+ Processing by ParametersController#index as HTML
3023
+ Parameters: {"per_page"=>"20"}
3024
+ Completed 200 OK in 8ms (Views: 0.3ms | ActiveRecord: 0.0ms)
3025
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 20:48:53 +0100
3026
+ Processing by ParametersController#index as HTML
3027
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3028
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 20:48:53 +0100
3029
+ Processing by ParametersController#index as HTML
3030
+ Parameters: {"per_page"=>"20"}
3031
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3032
+ Started GET "/parameters?per_page=10" for 127.0.0.1 at 2016-02-12 20:48:53 +0100
3033
+ Processing by ParametersController#index as HTML
3034
+ Parameters: {"per_page"=>"10"}
3035
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3036
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2016-02-12 20:48:53 +0100
3037
+ Processing by ParametersController#index as HTML
3038
+ Parameters: {"per_page"=>"20", "page"=>"5"}
3039
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3040
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 20:48:53 +0100
3041
+ Processing by ParametersController#index as HTML
3042
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3043
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 20:48:53 +0100
3044
+ Processing by ParametersController#create as HTML
3045
+ Parameters: {"per_page"=>"20"}
3046
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3047
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 20:48:53 +0100
3048
+ Processing by ParametersController#create as HTML
3049
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3050
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2016-02-12 20:48:53 +0100
3051
+ Processing by ParametersController#index as HTML
3052
+ Parameters: {"order"=>"created_at"}
3053
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3054
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2016-02-12 20:48:53 +0100
3055
+ Processing by ParametersController#index as HTML
3056
+ Parameters: {"locale"=>"en"}
3057
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3058
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 20:48:53 +0100
3059
+ Processing by ParametersController#index as HTML
3060
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3061
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 20:49:05 +0100
3062
+ Processing by ParametersController#index as HTML
3063
+ Parameters: {"per_page"=>"20"}
3064
+ Completed 200 OK in 38ms (Views: 0.2ms | ActiveRecord: 0.0ms)
3065
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 20:49:05 +0100
3066
+ Processing by ParametersController#index as HTML
3067
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3068
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 20:49:05 +0100
3069
+ Processing by ParametersController#index as HTML
3070
+ Parameters: {"per_page"=>"20"}
3071
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3072
+ Started GET "/parameters?per_page=10" for 127.0.0.1 at 2016-02-12 20:49:05 +0100
3073
+ Processing by ParametersController#index as HTML
3074
+ Parameters: {"per_page"=>"10"}
3075
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3076
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2016-02-12 20:49:05 +0100
3077
+ Processing by ParametersController#index as HTML
3078
+ Parameters: {"per_page"=>"20", "page"=>"5"}
3079
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3080
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 20:49:05 +0100
3081
+ Processing by ParametersController#index as HTML
3082
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3083
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 20:49:05 +0100
3084
+ Processing by ParametersController#create as HTML
3085
+ Parameters: {"per_page"=>"20"}
3086
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3087
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 20:49:05 +0100
3088
+ Processing by ParametersController#create as HTML
3089
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3090
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2016-02-12 20:49:05 +0100
3091
+ Processing by ParametersController#index as HTML
3092
+ Parameters: {"order"=>"created_at"}
3093
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3094
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2016-02-12 20:49:05 +0100
3095
+ Processing by ParametersController#index as HTML
3096
+ Parameters: {"locale"=>"en"}
3097
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3098
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 20:49:05 +0100
3099
+ Processing by ParametersController#index as HTML
3100
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3101
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 20:49:20 +0100
3102
+ Processing by ParametersController#index as HTML
3103
+ Parameters: {"per_page"=>"20"}
3104
+ Completed 200 OK in 20ms (Views: 0.2ms | ActiveRecord: 0.0ms)
3105
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 20:49:20 +0100
3106
+ Processing by ParametersController#index as HTML
3107
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3108
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 20:49:20 +0100
3109
+ Processing by ParametersController#index as HTML
3110
+ Parameters: {"per_page"=>"20"}
3111
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
3112
+ Started GET "/parameters?per_page=10" for 127.0.0.1 at 2016-02-12 20:49:20 +0100
3113
+ Processing by ParametersController#index as HTML
3114
+ Parameters: {"per_page"=>"10"}
3115
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
3116
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2016-02-12 20:49:20 +0100
3117
+ Processing by ParametersController#index as HTML
3118
+ Parameters: {"per_page"=>"20", "page"=>"5"}
3119
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3120
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 20:49:20 +0100
3121
+ Processing by ParametersController#index as HTML
3122
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3123
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 20:49:20 +0100
3124
+ Processing by ParametersController#create as HTML
3125
+ Parameters: {"per_page"=>"20"}
3126
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3127
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 20:49:20 +0100
3128
+ Processing by ParametersController#create as HTML
3129
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3130
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2016-02-12 20:49:20 +0100
3131
+ Processing by ParametersController#index as HTML
3132
+ Parameters: {"order"=>"created_at"}
3133
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3134
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2016-02-12 20:49:20 +0100
3135
+ Processing by ParametersController#index as HTML
3136
+ Parameters: {"locale"=>"en"}
3137
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3138
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 20:49:20 +0100
3139
+ Processing by ParametersController#index as HTML
3140
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3141
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 21:00:01 +0100
3142
+ Processing by ParametersController#index as HTML
3143
+ Parameters: {"per_page"=>"20"}
3144
+ Completed 200 OK in 28ms (Views: 10.8ms | ActiveRecord: 0.0ms)
3145
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 21:00:01 +0100
3146
+ Processing by ParametersController#index as HTML
3147
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3148
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 21:00:01 +0100
3149
+ Processing by ParametersController#index as HTML
3150
+ Parameters: {"per_page"=>"20"}
3151
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3152
+ Started GET "/parameters?per_page=10" for 127.0.0.1 at 2016-02-12 21:00:01 +0100
3153
+ Processing by ParametersController#index as HTML
3154
+ Parameters: {"per_page"=>"10"}
3155
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3156
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2016-02-12 21:00:01 +0100
3157
+ Processing by ParametersController#index as HTML
3158
+ Parameters: {"per_page"=>"20", "page"=>"5"}
3159
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
3160
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 21:00:01 +0100
3161
+ Processing by ParametersController#index as HTML
3162
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3163
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 21:00:01 +0100
3164
+ Processing by ParametersController#create as HTML
3165
+ Parameters: {"per_page"=>"20"}
3166
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
3167
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 21:00:01 +0100
3168
+ Processing by ParametersController#create as HTML
3169
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3170
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2016-02-12 21:00:01 +0100
3171
+ Processing by ParametersController#index as HTML
3172
+ Parameters: {"order"=>"created_at"}
3173
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3174
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2016-02-12 21:00:01 +0100
3175
+ Processing by ParametersController#index as HTML
3176
+ Parameters: {"locale"=>"en"}
3177
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
3178
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 21:00:01 +0100
3179
+ Processing by ParametersController#index as HTML
3180
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3181
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 21:00:14 +0100
3182
+ Processing by ParametersController#index as HTML
3183
+ Parameters: {"per_page"=>"20"}
3184
+ Completed 200 OK in 26ms (Views: 0.3ms | ActiveRecord: 0.0ms)
3185
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 21:00:15 +0100
3186
+ Processing by ParametersController#index as HTML
3187
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3188
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 21:00:15 +0100
3189
+ Processing by ParametersController#index as HTML
3190
+ Parameters: {"per_page"=>"20"}
3191
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
3192
+ Started GET "/parameters?per_page=10" for 127.0.0.1 at 2016-02-12 21:00:15 +0100
3193
+ Processing by ParametersController#index as HTML
3194
+ Parameters: {"per_page"=>"10"}
3195
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3196
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2016-02-12 21:00:15 +0100
3197
+ Processing by ParametersController#index as HTML
3198
+ Parameters: {"per_page"=>"20", "page"=>"5"}
3199
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
3200
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 21:00:15 +0100
3201
+ Processing by ParametersController#index as HTML
3202
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3203
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 21:00:15 +0100
3204
+ Processing by ParametersController#create as HTML
3205
+ Parameters: {"per_page"=>"20"}
3206
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
3207
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 21:00:15 +0100
3208
+ Processing by ParametersController#create as HTML
3209
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3210
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2016-02-12 21:00:15 +0100
3211
+ Processing by ParametersController#index as HTML
3212
+ Parameters: {"order"=>"created_at"}
3213
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3214
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2016-02-12 21:00:15 +0100
3215
+ Processing by ParametersController#index as HTML
3216
+ Parameters: {"locale"=>"en"}
3217
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3218
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 21:00:15 +0100
3219
+ Processing by ParametersController#index as HTML
3220
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3221
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 21:00:27 +0100
3222
+ Processing by ParametersController#index as HTML
3223
+ Parameters: {"per_page"=>"20"}
3224
+ Completed 200 OK in 13ms (Views: 0.4ms | ActiveRecord: 0.0ms)
3225
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 21:00:28 +0100
3226
+ Processing by ParametersController#index as HTML
3227
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
3228
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 21:00:28 +0100
3229
+ Processing by ParametersController#index as HTML
3230
+ Parameters: {"per_page"=>"20"}
3231
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3232
+ Started GET "/parameters?per_page=10" for 127.0.0.1 at 2016-02-12 21:00:28 +0100
3233
+ Processing by ParametersController#index as HTML
3234
+ Parameters: {"per_page"=>"10"}
3235
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3236
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2016-02-12 21:00:28 +0100
3237
+ Processing by ParametersController#index as HTML
3238
+ Parameters: {"per_page"=>"20", "page"=>"5"}
3239
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3240
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 21:00:28 +0100
3241
+ Processing by ParametersController#index as HTML
3242
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3243
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 21:00:28 +0100
3244
+ Processing by ParametersController#create as HTML
3245
+ Parameters: {"per_page"=>"20"}
3246
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3247
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 21:00:28 +0100
3248
+ Processing by ParametersController#create as HTML
3249
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3250
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2016-02-12 21:00:28 +0100
3251
+ Processing by ParametersController#index as HTML
3252
+ Parameters: {"order"=>"created_at"}
3253
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3254
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2016-02-12 21:00:28 +0100
3255
+ Processing by ParametersController#index as HTML
3256
+ Parameters: {"locale"=>"en"}
3257
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3258
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 21:00:28 +0100
3259
+ Processing by ParametersController#index as HTML
3260
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3261
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 21:00:42 +0100
3262
+ Processing by ParametersController#index as HTML
3263
+ Parameters: {"per_page"=>"20"}
3264
+ Completed 200 OK in 18ms (Views: 9.7ms | ActiveRecord: 0.0ms)
3265
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 21:00:42 +0100
3266
+ Processing by ParametersController#index as HTML
3267
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3268
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 21:00:42 +0100
3269
+ Processing by ParametersController#index as HTML
3270
+ Parameters: {"per_page"=>"20"}
3271
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
3272
+ Started GET "/parameters?per_page=10" for 127.0.0.1 at 2016-02-12 21:00:42 +0100
3273
+ Processing by ParametersController#index as HTML
3274
+ Parameters: {"per_page"=>"10"}
3275
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
3276
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2016-02-12 21:00:42 +0100
3277
+ Processing by ParametersController#index as HTML
3278
+ Parameters: {"per_page"=>"20", "page"=>"5"}
3279
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
3280
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 21:00:42 +0100
3281
+ Processing by ParametersController#index as HTML
3282
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
3283
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 21:00:42 +0100
3284
+ Processing by ParametersController#create as HTML
3285
+ Parameters: {"per_page"=>"20"}
3286
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
3287
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 21:00:42 +0100
3288
+ Processing by ParametersController#create as HTML
3289
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3290
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2016-02-12 21:00:42 +0100
3291
+ Processing by ParametersController#index as HTML
3292
+ Parameters: {"order"=>"created_at"}
3293
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
3294
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2016-02-12 21:00:42 +0100
3295
+ Processing by ParametersController#index as HTML
3296
+ Parameters: {"locale"=>"en"}
3297
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
3298
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 21:00:42 +0100
3299
+ Processing by ParametersController#index as HTML
3300
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
3301
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 21:13:11 +0100
3302
+ Processing by ParametersController#index as HTML
3303
+ Parameters: {"per_page"=>"20"}
3304
+ Completed 200 OK in 10ms (Views: 0.2ms | ActiveRecord: 0.0ms)
3305
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 21:13:12 +0100
3306
+ Processing by ParametersController#index as HTML
3307
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
3308
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 21:13:12 +0100
3309
+ Processing by ParametersController#index as HTML
3310
+ Parameters: {"per_page"=>"20"}
3311
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
3312
+ Started GET "/parameters?per_page=10" for 127.0.0.1 at 2016-02-12 21:13:12 +0100
3313
+ Processing by ParametersController#index as HTML
3314
+ Parameters: {"per_page"=>"10"}
3315
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3316
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2016-02-12 21:13:12 +0100
3317
+ Processing by ParametersController#index as HTML
3318
+ Parameters: {"per_page"=>"20", "page"=>"5"}
3319
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
3320
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 21:13:12 +0100
3321
+ Processing by ParametersController#index as HTML
3322
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3323
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 21:13:12 +0100
3324
+ Processing by ParametersController#create as HTML
3325
+ Parameters: {"per_page"=>"20"}
3326
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3327
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 21:13:12 +0100
3328
+ Processing by ParametersController#create as HTML
3329
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3330
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2016-02-12 21:13:12 +0100
3331
+ Processing by ParametersController#index as HTML
3332
+ Parameters: {"order"=>"created_at"}
3333
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
3334
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2016-02-12 21:13:12 +0100
3335
+ Processing by ParametersController#index as HTML
3336
+ Parameters: {"locale"=>"en"}
3337
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3338
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 21:13:12 +0100
3339
+ Processing by ParametersController#index as HTML
3340
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3341
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 21:13:24 +0100
3342
+ Processing by ParametersController#index as HTML
3343
+ Parameters: {"per_page"=>"20"}
3344
+ Completed 200 OK in 15ms (Views: 0.2ms | ActiveRecord: 0.0ms)
3345
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 21:13:24 +0100
3346
+ Processing by ParametersController#index as HTML
3347
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3348
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 21:13:24 +0100
3349
+ Processing by ParametersController#index as HTML
3350
+ Parameters: {"per_page"=>"20"}
3351
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
3352
+ Started GET "/parameters?per_page=10" for 127.0.0.1 at 2016-02-12 21:13:24 +0100
3353
+ Processing by ParametersController#index as HTML
3354
+ Parameters: {"per_page"=>"10"}
3355
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3356
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2016-02-12 21:13:24 +0100
3357
+ Processing by ParametersController#index as HTML
3358
+ Parameters: {"per_page"=>"20", "page"=>"5"}
3359
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3360
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 21:13:24 +0100
3361
+ Processing by ParametersController#index as HTML
3362
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3363
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 21:13:24 +0100
3364
+ Processing by ParametersController#create as HTML
3365
+ Parameters: {"per_page"=>"20"}
3366
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3367
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 21:13:24 +0100
3368
+ Processing by ParametersController#create as HTML
3369
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3370
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2016-02-12 21:13:24 +0100
3371
+ Processing by ParametersController#index as HTML
3372
+ Parameters: {"order"=>"created_at"}
3373
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3374
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2016-02-12 21:13:24 +0100
3375
+ Processing by ParametersController#index as HTML
3376
+ Parameters: {"locale"=>"en"}
3377
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3378
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 21:13:24 +0100
3379
+ Processing by ParametersController#index as HTML
3380
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3381
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 21:13:40 +0100
3382
+ Processing by ParametersController#index as HTML
3383
+ Parameters: {"per_page"=>"20"}
3384
+ Completed 200 OK in 8ms (Views: 0.2ms | ActiveRecord: 0.0ms)
3385
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 21:13:40 +0100
3386
+ Processing by ParametersController#index as HTML
3387
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3388
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 21:13:40 +0100
3389
+ Processing by ParametersController#index as HTML
3390
+ Parameters: {"per_page"=>"20"}
3391
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3392
+ Started GET "/parameters?per_page=10" for 127.0.0.1 at 2016-02-12 21:13:40 +0100
3393
+ Processing by ParametersController#index as HTML
3394
+ Parameters: {"per_page"=>"10"}
3395
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3396
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2016-02-12 21:13:40 +0100
3397
+ Processing by ParametersController#index as HTML
3398
+ Parameters: {"per_page"=>"20", "page"=>"5"}
3399
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
3400
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 21:13:40 +0100
3401
+ Processing by ParametersController#index as HTML
3402
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
3403
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 21:13:40 +0100
3404
+ Processing by ParametersController#create as HTML
3405
+ Parameters: {"per_page"=>"20"}
3406
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3407
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 21:13:40 +0100
3408
+ Processing by ParametersController#create as HTML
3409
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3410
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2016-02-12 21:13:40 +0100
3411
+ Processing by ParametersController#index as HTML
3412
+ Parameters: {"order"=>"created_at"}
3413
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3414
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2016-02-12 21:13:40 +0100
3415
+ Processing by ParametersController#index as HTML
3416
+ Parameters: {"locale"=>"en"}
3417
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
3418
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 21:13:40 +0100
3419
+ Processing by ParametersController#index as HTML
3420
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
3421
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 21:13:52 +0100
3422
+ Processing by ParametersController#index as HTML
3423
+ Parameters: {"per_page"=>"20"}
3424
+ Completed 200 OK in 35ms (Views: 0.2ms | ActiveRecord: 0.0ms)
3425
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 21:13:52 +0100
3426
+ Processing by ParametersController#index as HTML
3427
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3428
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 21:13:52 +0100
3429
+ Processing by ParametersController#index as HTML
3430
+ Parameters: {"per_page"=>"20"}
3431
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3432
+ Started GET "/parameters?per_page=10" for 127.0.0.1 at 2016-02-12 21:13:52 +0100
3433
+ Processing by ParametersController#index as HTML
3434
+ Parameters: {"per_page"=>"10"}
3435
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3436
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2016-02-12 21:13:52 +0100
3437
+ Processing by ParametersController#index as HTML
3438
+ Parameters: {"per_page"=>"20", "page"=>"5"}
3439
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3440
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 21:13:52 +0100
3441
+ Processing by ParametersController#index as HTML
3442
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3443
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 21:13:52 +0100
3444
+ Processing by ParametersController#create as HTML
3445
+ Parameters: {"per_page"=>"20"}
3446
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3447
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 21:13:52 +0100
3448
+ Processing by ParametersController#create as HTML
3449
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3450
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2016-02-12 21:13:52 +0100
3451
+ Processing by ParametersController#index as HTML
3452
+ Parameters: {"order"=>"created_at"}
3453
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
3454
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2016-02-12 21:13:52 +0100
3455
+ Processing by ParametersController#index as HTML
3456
+ Parameters: {"locale"=>"en"}
3457
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3458
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 21:13:52 +0100
3459
+ Processing by ParametersController#index as HTML
3460
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3461
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 21:16:57 +0100
3462
+ Processing by ParametersController#index as HTML
3463
+ Parameters: {"per_page"=>"20"}
3464
+ Completed 200 OK in 49ms (Views: 0.2ms | ActiveRecord: 0.0ms)
3465
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 21:16:58 +0100
3466
+ Processing by ParametersController#index as HTML
3467
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3468
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 21:16:58 +0100
3469
+ Processing by ParametersController#index as HTML
3470
+ Parameters: {"per_page"=>"20"}
3471
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3472
+ Started GET "/parameters?per_page=10" for 127.0.0.1 at 2016-02-12 21:16:58 +0100
3473
+ Processing by ParametersController#index as HTML
3474
+ Parameters: {"per_page"=>"10"}
3475
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3476
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2016-02-12 21:16:58 +0100
3477
+ Processing by ParametersController#index as HTML
3478
+ Parameters: {"per_page"=>"20", "page"=>"5"}
3479
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3480
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 21:16:58 +0100
3481
+ Processing by ParametersController#index as HTML
3482
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3483
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 21:16:58 +0100
3484
+ Processing by ParametersController#create as HTML
3485
+ Parameters: {"per_page"=>"20"}
3486
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3487
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 21:16:58 +0100
3488
+ Processing by ParametersController#create as HTML
3489
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3490
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2016-02-12 21:16:58 +0100
3491
+ Processing by ParametersController#index as HTML
3492
+ Parameters: {"order"=>"created_at"}
3493
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3494
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2016-02-12 21:16:58 +0100
3495
+ Processing by ParametersController#index as HTML
3496
+ Parameters: {"locale"=>"en"}
3497
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3498
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 21:16:58 +0100
3499
+ Processing by ParametersController#index as HTML
3500
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3501
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 21:18:05 +0100
3502
+ Processing by ParametersController#index as HTML
3503
+ Parameters: {"per_page"=>"20"}
3504
+ Completed 200 OK in 37ms (Views: 28.3ms | ActiveRecord: 0.0ms)
3505
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 21:18:05 +0100
3506
+ Processing by ParametersController#index as HTML
3507
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3508
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 21:18:06 +0100
3509
+ Processing by ParametersController#index as HTML
3510
+ Parameters: {"per_page"=>"20"}
3511
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
3512
+ Started GET "/parameters?per_page=10" for 127.0.0.1 at 2016-02-12 21:18:06 +0100
3513
+ Processing by ParametersController#index as HTML
3514
+ Parameters: {"per_page"=>"10"}
3515
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3516
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2016-02-12 21:18:06 +0100
3517
+ Processing by ParametersController#index as HTML
3518
+ Parameters: {"per_page"=>"20", "page"=>"5"}
3519
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
3520
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 21:18:06 +0100
3521
+ Processing by ParametersController#index as HTML
3522
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3523
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 21:18:06 +0100
3524
+ Processing by ParametersController#create as HTML
3525
+ Parameters: {"per_page"=>"20"}
3526
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3527
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 21:18:06 +0100
3528
+ Processing by ParametersController#create as HTML
3529
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3530
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2016-02-12 21:18:06 +0100
3531
+ Processing by ParametersController#index as HTML
3532
+ Parameters: {"order"=>"created_at"}
3533
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3534
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2016-02-12 21:18:06 +0100
3535
+ Processing by ParametersController#index as HTML
3536
+ Parameters: {"locale"=>"en"}
3537
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3538
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 21:18:06 +0100
3539
+ Processing by ParametersController#index as HTML
3540
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3541
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 21:18:27 +0100
3542
+ Processing by ParametersController#index as HTML
3543
+ Parameters: {"per_page"=>"20"}
3544
+ Completed 200 OK in 15ms (Views: 0.2ms | ActiveRecord: 0.0ms)
3545
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 21:18:27 +0100
3546
+ Processing by ParametersController#index as HTML
3547
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3548
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 21:18:27 +0100
3549
+ Processing by ParametersController#index as HTML
3550
+ Parameters: {"per_page"=>"20"}
3551
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
3552
+ Started GET "/parameters?per_page=10" for 127.0.0.1 at 2016-02-12 21:18:27 +0100
3553
+ Processing by ParametersController#index as HTML
3554
+ Parameters: {"per_page"=>"10"}
3555
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3556
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2016-02-12 21:18:27 +0100
3557
+ Processing by ParametersController#index as HTML
3558
+ Parameters: {"per_page"=>"20", "page"=>"5"}
3559
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
3560
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 21:18:27 +0100
3561
+ Processing by ParametersController#index as HTML
3562
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3563
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 21:18:27 +0100
3564
+ Processing by ParametersController#create as HTML
3565
+ Parameters: {"per_page"=>"20"}
3566
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
3567
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 21:18:27 +0100
3568
+ Processing by ParametersController#create as HTML
3569
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3570
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2016-02-12 21:18:27 +0100
3571
+ Processing by ParametersController#index as HTML
3572
+ Parameters: {"order"=>"created_at"}
3573
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3574
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2016-02-12 21:18:27 +0100
3575
+ Processing by ParametersController#index as HTML
3576
+ Parameters: {"locale"=>"en"}
3577
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3578
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 21:18:27 +0100
3579
+ Processing by ParametersController#index as HTML
3580
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3581
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 21:18:39 +0100
3582
+ Processing by ParametersController#index as HTML
3583
+ Parameters: {"per_page"=>"20"}
3584
+ Completed 200 OK in 12ms (Views: 0.3ms | ActiveRecord: 0.0ms)
3585
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 21:18:40 +0100
3586
+ Processing by ParametersController#index as HTML
3587
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
3588
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 21:18:40 +0100
3589
+ Processing by ParametersController#index as HTML
3590
+ Parameters: {"per_page"=>"20"}
3591
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3592
+ Started GET "/parameters?per_page=10" for 127.0.0.1 at 2016-02-12 21:18:40 +0100
3593
+ Processing by ParametersController#index as HTML
3594
+ Parameters: {"per_page"=>"10"}
3595
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3596
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2016-02-12 21:18:40 +0100
3597
+ Processing by ParametersController#index as HTML
3598
+ Parameters: {"per_page"=>"20", "page"=>"5"}
3599
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3600
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 21:18:40 +0100
3601
+ Processing by ParametersController#index as HTML
3602
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3603
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 21:18:40 +0100
3604
+ Processing by ParametersController#create as HTML
3605
+ Parameters: {"per_page"=>"20"}
3606
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3607
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 21:18:40 +0100
3608
+ Processing by ParametersController#create as HTML
3609
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3610
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2016-02-12 21:18:40 +0100
3611
+ Processing by ParametersController#index as HTML
3612
+ Parameters: {"order"=>"created_at"}
3613
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3614
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2016-02-12 21:18:40 +0100
3615
+ Processing by ParametersController#index as HTML
3616
+ Parameters: {"locale"=>"en"}
3617
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3618
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 21:18:40 +0100
3619
+ Processing by ParametersController#index as HTML
3620
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3621
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 21:18:50 +0100
3622
+ Processing by ParametersController#index as HTML
3623
+ Parameters: {"per_page"=>"20"}
3624
+ Completed 200 OK in 24ms (Views: 0.2ms | ActiveRecord: 0.0ms)
3625
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 21:18:50 +0100
3626
+ Processing by ParametersController#index as HTML
3627
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3628
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 21:18:50 +0100
3629
+ Processing by ParametersController#index as HTML
3630
+ Parameters: {"per_page"=>"20"}
3631
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3632
+ Started GET "/parameters?per_page=10" for 127.0.0.1 at 2016-02-12 21:18:50 +0100
3633
+ Processing by ParametersController#index as HTML
3634
+ Parameters: {"per_page"=>"10"}
3635
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3636
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2016-02-12 21:18:50 +0100
3637
+ Processing by ParametersController#index as HTML
3638
+ Parameters: {"per_page"=>"20", "page"=>"5"}
3639
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3640
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 21:18:50 +0100
3641
+ Processing by ParametersController#index as HTML
3642
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
3643
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 21:18:50 +0100
3644
+ Processing by ParametersController#create as HTML
3645
+ Parameters: {"per_page"=>"20"}
3646
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3647
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 21:18:50 +0100
3648
+ Processing by ParametersController#create as HTML
3649
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3650
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2016-02-12 21:18:50 +0100
3651
+ Processing by ParametersController#index as HTML
3652
+ Parameters: {"order"=>"created_at"}
3653
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3654
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2016-02-12 21:18:50 +0100
3655
+ Processing by ParametersController#index as HTML
3656
+ Parameters: {"locale"=>"en"}
3657
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3658
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 21:18:50 +0100
3659
+ Processing by ParametersController#index as HTML
3660
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
3661
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 21:19:05 +0100
3662
+ Processing by ParametersController#index as HTML
3663
+ Parameters: {"per_page"=>"20"}
3664
+ Completed 200 OK in 23ms (Views: 0.2ms | ActiveRecord: 0.0ms)
3665
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 21:19:05 +0100
3666
+ Processing by ParametersController#index as HTML
3667
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3668
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 21:19:05 +0100
3669
+ Processing by ParametersController#index as HTML
3670
+ Parameters: {"per_page"=>"20"}
3671
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3672
+ Started GET "/parameters?per_page=10" for 127.0.0.1 at 2016-02-12 21:19:05 +0100
3673
+ Processing by ParametersController#index as HTML
3674
+ Parameters: {"per_page"=>"10"}
3675
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3676
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2016-02-12 21:19:05 +0100
3677
+ Processing by ParametersController#index as HTML
3678
+ Parameters: {"per_page"=>"20", "page"=>"5"}
3679
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3680
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 21:19:05 +0100
3681
+ Processing by ParametersController#index as HTML
3682
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3683
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 21:19:05 +0100
3684
+ Processing by ParametersController#create as HTML
3685
+ Parameters: {"per_page"=>"20"}
3686
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3687
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 21:19:05 +0100
3688
+ Processing by ParametersController#create as HTML
3689
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3690
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2016-02-12 21:19:05 +0100
3691
+ Processing by ParametersController#index as HTML
3692
+ Parameters: {"order"=>"created_at"}
3693
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3694
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2016-02-12 21:19:05 +0100
3695
+ Processing by ParametersController#index as HTML
3696
+ Parameters: {"locale"=>"en"}
3697
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3698
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 21:19:05 +0100
3699
+ Processing by ParametersController#index as HTML
3700
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3701
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 21:28:13 +0100
3702
+ Processing by ParametersController#index as HTML
3703
+ Parameters: {"per_page"=>"20"}
3704
+ Completed 200 OK in 40ms (Views: 9.5ms | ActiveRecord: 0.0ms)
3705
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 21:28:14 +0100
3706
+ Processing by ParametersController#index as HTML
3707
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3708
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 21:28:14 +0100
3709
+ Processing by ParametersController#index as HTML
3710
+ Parameters: {"per_page"=>"20"}
3711
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
3712
+ Started GET "/parameters?per_page=10" for 127.0.0.1 at 2016-02-12 21:28:14 +0100
3713
+ Processing by ParametersController#index as HTML
3714
+ Parameters: {"per_page"=>"10"}
3715
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3716
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2016-02-12 21:28:14 +0100
3717
+ Processing by ParametersController#index as HTML
3718
+ Parameters: {"per_page"=>"20", "page"=>"5"}
3719
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
3720
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 21:28:14 +0100
3721
+ Processing by ParametersController#index as HTML
3722
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3723
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 21:28:14 +0100
3724
+ Processing by ParametersController#create as HTML
3725
+ Parameters: {"per_page"=>"20"}
3726
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
3727
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 21:28:14 +0100
3728
+ Processing by ParametersController#create as HTML
3729
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3730
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2016-02-12 21:28:14 +0100
3731
+ Processing by ParametersController#index as HTML
3732
+ Parameters: {"order"=>"created_at"}
3733
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
3734
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2016-02-12 21:28:14 +0100
3735
+ Processing by ParametersController#index as HTML
3736
+ Parameters: {"locale"=>"en"}
3737
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3738
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 21:28:14 +0100
3739
+ Processing by ParametersController#index as HTML
3740
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3741
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 21:28:31 +0100
3742
+ Processing by ParametersController#index as HTML
3743
+ Parameters: {"per_page"=>"20"}
3744
+ Completed 200 OK in 26ms (Views: 0.2ms | ActiveRecord: 0.0ms)
3745
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 21:28:31 +0100
3746
+ Processing by ParametersController#index as HTML
3747
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3748
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 21:28:31 +0100
3749
+ Processing by ParametersController#index as HTML
3750
+ Parameters: {"per_page"=>"20"}
3751
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
3752
+ Started GET "/parameters?per_page=10" for 127.0.0.1 at 2016-02-12 21:28:31 +0100
3753
+ Processing by ParametersController#index as HTML
3754
+ Parameters: {"per_page"=>"10"}
3755
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3756
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2016-02-12 21:28:31 +0100
3757
+ Processing by ParametersController#index as HTML
3758
+ Parameters: {"per_page"=>"20", "page"=>"5"}
3759
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
3760
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 21:28:31 +0100
3761
+ Processing by ParametersController#index as HTML
3762
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3763
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 21:28:31 +0100
3764
+ Processing by ParametersController#create as HTML
3765
+ Parameters: {"per_page"=>"20"}
3766
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
3767
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 21:28:31 +0100
3768
+ Processing by ParametersController#create as HTML
3769
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3770
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2016-02-12 21:28:31 +0100
3771
+ Processing by ParametersController#index as HTML
3772
+ Parameters: {"order"=>"created_at"}
3773
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
3774
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2016-02-12 21:28:31 +0100
3775
+ Processing by ParametersController#index as HTML
3776
+ Parameters: {"locale"=>"en"}
3777
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3778
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 21:28:31 +0100
3779
+ Processing by ParametersController#index as HTML
3780
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
3781
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 21:28:46 +0100
3782
+ Processing by ParametersController#index as HTML
3783
+ Parameters: {"per_page"=>"20"}
3784
+ Completed 200 OK in 44ms (Views: 35.6ms | ActiveRecord: 0.0ms)
3785
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 21:28:46 +0100
3786
+ Processing by ParametersController#index as HTML
3787
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
3788
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 21:28:46 +0100
3789
+ Processing by ParametersController#index as HTML
3790
+ Parameters: {"per_page"=>"20"}
3791
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3792
+ Started GET "/parameters?per_page=10" for 127.0.0.1 at 2016-02-12 21:28:46 +0100
3793
+ Processing by ParametersController#index as HTML
3794
+ Parameters: {"per_page"=>"10"}
3795
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3796
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2016-02-12 21:28:46 +0100
3797
+ Processing by ParametersController#index as HTML
3798
+ Parameters: {"per_page"=>"20", "page"=>"5"}
3799
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
3800
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 21:28:46 +0100
3801
+ Processing by ParametersController#index as HTML
3802
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3803
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 21:28:46 +0100
3804
+ Processing by ParametersController#create as HTML
3805
+ Parameters: {"per_page"=>"20"}
3806
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3807
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 21:28:46 +0100
3808
+ Processing by ParametersController#create as HTML
3809
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3810
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2016-02-12 21:28:46 +0100
3811
+ Processing by ParametersController#index as HTML
3812
+ Parameters: {"order"=>"created_at"}
3813
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
3814
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2016-02-12 21:28:46 +0100
3815
+ Processing by ParametersController#index as HTML
3816
+ Parameters: {"locale"=>"en"}
3817
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3818
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 21:28:46 +0100
3819
+ Processing by ParametersController#index as HTML
3820
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3821
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 21:29:00 +0100
3822
+ Processing by ParametersController#index as HTML
3823
+ Parameters: {"per_page"=>"20"}
3824
+ Completed 200 OK in 9ms (Views: 0.2ms | ActiveRecord: 0.0ms)
3825
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 21:29:00 +0100
3826
+ Processing by ParametersController#index as HTML
3827
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3828
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 21:29:00 +0100
3829
+ Processing by ParametersController#index as HTML
3830
+ Parameters: {"per_page"=>"20"}
3831
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3832
+ Started GET "/parameters?per_page=10" for 127.0.0.1 at 2016-02-12 21:29:00 +0100
3833
+ Processing by ParametersController#index as HTML
3834
+ Parameters: {"per_page"=>"10"}
3835
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3836
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2016-02-12 21:29:00 +0100
3837
+ Processing by ParametersController#index as HTML
3838
+ Parameters: {"per_page"=>"20", "page"=>"5"}
3839
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3840
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 21:29:00 +0100
3841
+ Processing by ParametersController#index as HTML
3842
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3843
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 21:29:00 +0100
3844
+ Processing by ParametersController#create as HTML
3845
+ Parameters: {"per_page"=>"20"}
3846
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3847
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 21:29:00 +0100
3848
+ Processing by ParametersController#create as HTML
3849
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3850
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2016-02-12 21:29:00 +0100
3851
+ Processing by ParametersController#index as HTML
3852
+ Parameters: {"order"=>"created_at"}
3853
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3854
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2016-02-12 21:29:00 +0100
3855
+ Processing by ParametersController#index as HTML
3856
+ Parameters: {"locale"=>"en"}
3857
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3858
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 21:29:00 +0100
3859
+ Processing by ParametersController#index as HTML
3860
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3861
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 21:29:16 +0100
3862
+ Processing by ParametersController#index as HTML
3863
+ Parameters: {"per_page"=>"20"}
3864
+ Completed 200 OK in 56ms (Views: 10.7ms | ActiveRecord: 0.0ms)
3865
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 21:29:16 +0100
3866
+ Processing by ParametersController#index as HTML
3867
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3868
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 21:29:16 +0100
3869
+ Processing by ParametersController#index as HTML
3870
+ Parameters: {"per_page"=>"20"}
3871
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3872
+ Started GET "/parameters?per_page=10" for 127.0.0.1 at 2016-02-12 21:29:16 +0100
3873
+ Processing by ParametersController#index as HTML
3874
+ Parameters: {"per_page"=>"10"}
3875
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3876
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2016-02-12 21:29:16 +0100
3877
+ Processing by ParametersController#index as HTML
3878
+ Parameters: {"per_page"=>"20", "page"=>"5"}
3879
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3880
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 21:29:16 +0100
3881
+ Processing by ParametersController#index as HTML
3882
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3883
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 21:29:16 +0100
3884
+ Processing by ParametersController#create as HTML
3885
+ Parameters: {"per_page"=>"20"}
3886
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3887
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 21:29:16 +0100
3888
+ Processing by ParametersController#create as HTML
3889
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3890
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2016-02-12 21:29:16 +0100
3891
+ Processing by ParametersController#index as HTML
3892
+ Parameters: {"order"=>"created_at"}
3893
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
3894
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2016-02-12 21:29:16 +0100
3895
+ Processing by ParametersController#index as HTML
3896
+ Parameters: {"locale"=>"en"}
3897
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3898
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 21:29:16 +0100
3899
+ Processing by ParametersController#index as HTML
3900
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3901
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-21 00:58:05 +0100
3902
+ Processing by ParametersController#index as HTML
3903
+ Parameters: {"per_page"=>"20"}
3904
+ Completed 200 OK in 24ms (Views: 14.9ms | ActiveRecord: 0.0ms)
3905
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-21 00:58:05 +0100
3906
+ Processing by ParametersController#index as HTML
3907
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3908
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-21 00:58:05 +0100
3909
+ Processing by ParametersController#index as HTML
3910
+ Parameters: {"per_page"=>"20"}
3911
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3912
+ Started GET "/parameters?per_page=10" for 127.0.0.1 at 2016-02-21 00:58:05 +0100
3913
+ Processing by ParametersController#index as HTML
3914
+ Parameters: {"per_page"=>"10"}
3915
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3916
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2016-02-21 00:58:05 +0100
3917
+ Processing by ParametersController#index as HTML
3918
+ Parameters: {"per_page"=>"20", "page"=>"5"}
3919
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3920
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-21 00:58:05 +0100
3921
+ Processing by ParametersController#index as HTML
3922
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3923
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-21 00:58:05 +0100
3924
+ Processing by ParametersController#create as HTML
3925
+ Parameters: {"per_page"=>"20"}
3926
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3927
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-21 00:58:05 +0100
3928
+ Processing by ParametersController#create as HTML
3929
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3930
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2016-02-21 00:58:05 +0100
3931
+ Processing by ParametersController#index as HTML
3932
+ Parameters: {"order"=>"created_at"}
3933
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3934
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2016-02-21 00:58:05 +0100
3935
+ Processing by ParametersController#index as HTML
3936
+ Parameters: {"locale"=>"en"}
3937
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3938
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-21 00:58:05 +0100
3939
+ Processing by ParametersController#index as HTML
3940
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3941
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2018-11-02 15:54:13 +0100
3942
+ Processing by ParametersController#index as HTML
3943
+ Parameters: {"per_page"=>"20"}
3944
+ Completed 200 OK in 63ms (Views: 0.7ms | ActiveRecord: 0.0ms)
3945
+ Started GET "/parameters" for 127.0.0.1 at 2018-11-02 15:54:13 +0100
3946
+ Processing by ParametersController#index as HTML
3947
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
3948
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2018-11-02 15:54:13 +0100
3949
+ Processing by ParametersController#index as HTML
3950
+ Parameters: {"per_page"=>"20"}
3951
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
3952
+ Started GET "/parameters?per_page=10" for 127.0.0.1 at 2018-11-02 15:54:13 +0100
3953
+ Processing by ParametersController#index as HTML
3954
+ Parameters: {"per_page"=>"10"}
3955
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
3956
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2018-11-02 15:54:13 +0100
3957
+ Processing by ParametersController#index as HTML
3958
+ Parameters: {"per_page"=>"20", "page"=>"5"}
3959
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
3960
+ Started GET "/parameters" for 127.0.0.1 at 2018-11-02 15:54:13 +0100
3961
+ Processing by ParametersController#index as HTML
3962
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
3963
+ Started POST "/parameters" for 127.0.0.1 at 2018-11-02 15:54:13 +0100
3964
+ Processing by ParametersController#create as HTML
3965
+ Parameters: {"per_page"=>"20"}
3966
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
3967
+ Started POST "/parameters" for 127.0.0.1 at 2018-11-02 15:54:13 +0100
3968
+ Processing by ParametersController#create as HTML
3969
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3970
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2018-11-02 15:54:13 +0100
3971
+ Processing by ParametersController#index as HTML
3972
+ Parameters: {"order"=>"created_at"}
3973
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
3974
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2018-11-02 15:54:13 +0100
3975
+ Processing by ParametersController#index as HTML
3976
+ Parameters: {"locale"=>"en"}
3977
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
3978
+ Started GET "/parameters" for 127.0.0.1 at 2018-11-02 15:54:13 +0100
3979
+ Processing by ParametersController#index as HTML
3980
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
3981
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2018-11-02 16:05:04 +0100
3982
+ Processing by ParametersController#index as HTML
3983
+ Parameters: {"per_page"=>"20"}
3984
+ Completed 200 OK in 8ms (Views: 0.2ms | ActiveRecord: 0.0ms)
3985
+ Started GET "/parameters" for 127.0.0.1 at 2018-11-02 16:05:04 +0100
3986
+ Processing by ParametersController#index as HTML
3987
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3988
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2018-11-02 16:05:04 +0100
3989
+ Processing by ParametersController#index as HTML
3990
+ Parameters: {"per_page"=>"20"}
3991
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3992
+ Started GET "/parameters?per_page=10" for 127.0.0.1 at 2018-11-02 16:05:04 +0100
3993
+ Processing by ParametersController#index as HTML
3994
+ Parameters: {"per_page"=>"10"}
3995
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
3996
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2018-11-02 16:05:04 +0100
3997
+ Processing by ParametersController#index as HTML
3998
+ Parameters: {"per_page"=>"20", "page"=>"5"}
3999
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
4000
+ Started GET "/parameters" for 127.0.0.1 at 2018-11-02 16:05:04 +0100
4001
+ Processing by ParametersController#index as HTML
4002
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
4003
+ Started POST "/parameters" for 127.0.0.1 at 2018-11-02 16:05:04 +0100
4004
+ Processing by ParametersController#create as HTML
4005
+ Parameters: {"per_page"=>"20"}
4006
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
4007
+ Started POST "/parameters" for 127.0.0.1 at 2018-11-02 16:05:04 +0100
4008
+ Processing by ParametersController#create as HTML
4009
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
4010
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2018-11-02 16:05:04 +0100
4011
+ Processing by ParametersController#index as HTML
4012
+ Parameters: {"order"=>"created_at"}
4013
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
4014
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2018-11-02 16:05:04 +0100
4015
+ Processing by ParametersController#index as HTML
4016
+ Parameters: {"locale"=>"en"}
4017
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
4018
+ Started GET "/parameters" for 127.0.0.1 at 2018-11-02 16:05:04 +0100
4019
+ Processing by ParametersController#index as HTML
4020
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
4021
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2018-11-02 16:10:26 +0100
4022
+ Processing by ParametersController#index as HTML
4023
+ Parameters: {"per_page"=>"20"}
4024
+ Completed 200 OK in 8ms (Views: 0.2ms | ActiveRecord: 0.0ms)
4025
+ Started GET "/parameters" for 127.0.0.1 at 2018-11-02 16:10:26 +0100
4026
+ Processing by ParametersController#index as HTML
4027
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
4028
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2018-11-02 16:10:26 +0100
4029
+ Processing by ParametersController#index as HTML
4030
+ Parameters: {"per_page"=>"20"}
4031
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
4032
+ Started GET "/parameters?per_page=10" for 127.0.0.1 at 2018-11-02 16:10:26 +0100
4033
+ Processing by ParametersController#index as HTML
4034
+ Parameters: {"per_page"=>"10"}
4035
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
4036
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2018-11-02 16:10:26 +0100
4037
+ Processing by ParametersController#index as HTML
4038
+ Parameters: {"per_page"=>"20", "page"=>"5"}
4039
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
4040
+ Started GET "/parameters" for 127.0.0.1 at 2018-11-02 16:10:26 +0100
4041
+ Processing by ParametersController#index as HTML
4042
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
4043
+ Started POST "/parameters" for 127.0.0.1 at 2018-11-02 16:10:26 +0100
4044
+ Processing by ParametersController#create as HTML
4045
+ Parameters: {"per_page"=>"20"}
4046
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
4047
+ Started POST "/parameters" for 127.0.0.1 at 2018-11-02 16:10:26 +0100
4048
+ Processing by ParametersController#create as HTML
4049
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
4050
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2018-11-02 16:10:26 +0100
4051
+ Processing by ParametersController#index as HTML
4052
+ Parameters: {"order"=>"created_at"}
4053
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
4054
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2018-11-02 16:10:26 +0100
4055
+ Processing by ParametersController#index as HTML
4056
+ Parameters: {"locale"=>"en"}
4057
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
4058
+ Started GET "/parameters" for 127.0.0.1 at 2018-11-02 16:10:26 +0100
4059
+ Processing by ParametersController#index as HTML
4060
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
4061
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2018-11-02 16:44:52 +0100
4062
+ Processing by ParametersController#index as HTML
4063
+ Parameters: {"per_page"=>"20"}
4064
+ Completed 200 OK in 10ms (Views: 0.2ms | ActiveRecord: 0.0ms)
4065
+ Started GET "/parameters" for 127.0.0.1 at 2018-11-02 16:44:52 +0100
4066
+ Processing by ParametersController#index as HTML
4067
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
4068
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2018-11-02 16:44:52 +0100
4069
+ Processing by ParametersController#index as HTML
4070
+ Parameters: {"per_page"=>"20"}
4071
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
4072
+ Started GET "/parameters?per_page=10" for 127.0.0.1 at 2018-11-02 16:44:52 +0100
4073
+ Processing by ParametersController#index as HTML
4074
+ Parameters: {"per_page"=>"10"}
4075
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
4076
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2018-11-02 16:44:52 +0100
4077
+ Processing by ParametersController#index as HTML
4078
+ Parameters: {"per_page"=>"20", "page"=>"5"}
4079
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
4080
+ Started GET "/parameters" for 127.0.0.1 at 2018-11-02 16:44:52 +0100
4081
+ Processing by ParametersController#index as HTML
4082
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
4083
+ Started POST "/parameters" for 127.0.0.1 at 2018-11-02 16:44:52 +0100
4084
+ Processing by ParametersController#create as HTML
4085
+ Parameters: {"per_page"=>"20"}
4086
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
4087
+ Started POST "/parameters" for 127.0.0.1 at 2018-11-02 16:44:52 +0100
4088
+ Processing by ParametersController#create as HTML
4089
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
4090
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2018-11-02 16:44:52 +0100
4091
+ Processing by ParametersController#index as HTML
4092
+ Parameters: {"order"=>"created_at"}
4093
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
4094
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2018-11-02 16:44:52 +0100
4095
+ Processing by ParametersController#index as HTML
4096
+ Parameters: {"locale"=>"en"}
4097
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
4098
+ Started GET "/parameters" for 127.0.0.1 at 2018-11-02 16:44:52 +0100
4099
+ Processing by ParametersController#index as HTML
4100
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
4101
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2018-11-02 17:44:20 +0100
4102
+ Processing by ParametersController#index as HTML
4103
+ Parameters: {"per_page"=>"20"}
4104
+ Completed 200 OK in 9ms (Views: 0.1ms | ActiveRecord: 0.0ms)
4105
+ Started GET "/parameters" for 127.0.0.1 at 2018-11-02 17:44:20 +0100
4106
+ Processing by ParametersController#index as HTML
4107
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
4108
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2018-11-02 17:44:20 +0100
4109
+ Processing by ParametersController#index as HTML
4110
+ Parameters: {"per_page"=>"20"}
4111
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
4112
+ Started GET "/parameters?per_page=10" for 127.0.0.1 at 2018-11-02 17:44:20 +0100
4113
+ Processing by ParametersController#index as HTML
4114
+ Parameters: {"per_page"=>"10"}
4115
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
4116
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2018-11-02 17:44:20 +0100
4117
+ Processing by ParametersController#index as HTML
4118
+ Parameters: {"per_page"=>"20", "page"=>"5"}
4119
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
4120
+ Started GET "/parameters" for 127.0.0.1 at 2018-11-02 17:44:20 +0100
4121
+ Processing by ParametersController#index as HTML
4122
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
4123
+ Started POST "/parameters" for 127.0.0.1 at 2018-11-02 17:44:20 +0100
4124
+ Processing by ParametersController#create as HTML
4125
+ Parameters: {"per_page"=>"20"}
4126
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
4127
+ Started POST "/parameters" for 127.0.0.1 at 2018-11-02 17:44:20 +0100
4128
+ Processing by ParametersController#create as HTML
4129
+ Completed 200 OK in 0ms (Views: 0.0ms | ActiveRecord: 0.0ms)
4130
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2018-11-02 17:44:20 +0100
4131
+ Processing by ParametersController#index as HTML
4132
+ Parameters: {"order"=>"created_at"}
4133
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
4134
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2018-11-02 17:44:20 +0100
4135
+ Processing by ParametersController#index as HTML
4136
+ Parameters: {"locale"=>"en"}
4137
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
4138
+ Started GET "/parameters" for 127.0.0.1 at 2018-11-02 17:44:20 +0100
4139
+ Processing by ParametersController#index as HTML
4140
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
4141
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2018-11-02 18:30:56 +0100
4142
+ Processing by ParametersController#index as HTML
4143
+ Parameters: {"per_page"=>"20"}
4144
+ Completed 200 OK in 9ms (Views: 0.3ms | ActiveRecord: 0.0ms)
4145
+ Started GET "/parameters" for 127.0.0.1 at 2018-11-02 18:30:56 +0100
4146
+ Processing by ParametersController#index as HTML
4147
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
4148
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2018-11-02 18:30:56 +0100
4149
+ Processing by ParametersController#index as HTML
4150
+ Parameters: {"per_page"=>"20"}
4151
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
4152
+ Started GET "/parameters?per_page=10" for 127.0.0.1 at 2018-11-02 18:30:56 +0100
4153
+ Processing by ParametersController#index as HTML
4154
+ Parameters: {"per_page"=>"10"}
4155
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
4156
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2018-11-02 18:30:56 +0100
4157
+ Processing by ParametersController#index as HTML
4158
+ Parameters: {"per_page"=>"20", "page"=>"5"}
4159
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
4160
+ Started GET "/parameters" for 127.0.0.1 at 2018-11-02 18:30:56 +0100
4161
+ Processing by ParametersController#index as HTML
4162
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
4163
+ Started POST "/parameters" for 127.0.0.1 at 2018-11-02 18:30:56 +0100
4164
+ Processing by ParametersController#create as HTML
4165
+ Parameters: {"per_page"=>"20"}
4166
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
4167
+ Started POST "/parameters" for 127.0.0.1 at 2018-11-02 18:30:56 +0100
4168
+ Processing by ParametersController#create as HTML
4169
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
4170
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2018-11-02 18:30:56 +0100
4171
+ Processing by ParametersController#index as HTML
4172
+ Parameters: {"order"=>"created_at"}
4173
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
4174
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2018-11-02 18:30:56 +0100
4175
+ Processing by ParametersController#index as HTML
4176
+ Parameters: {"locale"=>"en"}
4177
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
4178
+ Started GET "/parameters" for 127.0.0.1 at 2018-11-02 18:30:56 +0100
4179
+ Processing by ParametersController#index as HTML
4180
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
4181
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2018-11-02 18:32:39 +0100
4182
+ Processing by ParametersController#index as HTML
4183
+ Parameters: {"per_page"=>"20"}
4184
+ Completed 200 OK in 14ms (Views: 0.2ms | ActiveRecord: 0.0ms)
4185
+ Started GET "/parameters" for 127.0.0.1 at 2018-11-02 18:32:39 +0100
4186
+ Processing by ParametersController#index as HTML
4187
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
4188
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2018-11-02 18:32:39 +0100
4189
+ Processing by ParametersController#index as HTML
4190
+ Parameters: {"per_page"=>"20"}
4191
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
4192
+ Started GET "/parameters?per_page=10" for 127.0.0.1 at 2018-11-02 18:32:39 +0100
4193
+ Processing by ParametersController#index as HTML
4194
+ Parameters: {"per_page"=>"10"}
4195
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
4196
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2018-11-02 18:32:39 +0100
4197
+ Processing by ParametersController#index as HTML
4198
+ Parameters: {"per_page"=>"20", "page"=>"5"}
4199
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
4200
+ Started GET "/parameters" for 127.0.0.1 at 2018-11-02 18:32:39 +0100
4201
+ Processing by ParametersController#index as HTML
4202
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
4203
+ Started POST "/parameters" for 127.0.0.1 at 2018-11-02 18:32:39 +0100
4204
+ Processing by ParametersController#create as HTML
4205
+ Parameters: {"per_page"=>"20"}
4206
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
4207
+ Started POST "/parameters" for 127.0.0.1 at 2018-11-02 18:32:39 +0100
4208
+ Processing by ParametersController#create as HTML
4209
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
4210
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2018-11-02 18:32:39 +0100
4211
+ Processing by ParametersController#index as HTML
4212
+ Parameters: {"order"=>"created_at"}
4213
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
4214
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2018-11-02 18:32:39 +0100
4215
+ Processing by ParametersController#index as HTML
4216
+ Parameters: {"locale"=>"en"}
4217
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
4218
+ Started GET "/parameters" for 127.0.0.1 at 2018-11-02 18:32:39 +0100
4219
+ Processing by ParametersController#index as HTML
4220
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
4221
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2018-11-02 18:32:58 +0100
4222
+ Processing by ParametersController#index as HTML
4223
+ Parameters: {"per_page"=>"20"}
4224
+ Completed 200 OK in 9ms (Views: 0.2ms | ActiveRecord: 0.0ms)
4225
+ Started GET "/parameters" for 127.0.0.1 at 2018-11-02 18:32:58 +0100
4226
+ Processing by ParametersController#index as HTML
4227
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
4228
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2018-11-02 18:32:58 +0100
4229
+ Processing by ParametersController#index as HTML
4230
+ Parameters: {"per_page"=>"20"}
4231
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
4232
+ Started GET "/parameters?per_page=10" for 127.0.0.1 at 2018-11-02 18:32:58 +0100
4233
+ Processing by ParametersController#index as HTML
4234
+ Parameters: {"per_page"=>"10"}
4235
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
4236
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2018-11-02 18:32:58 +0100
4237
+ Processing by ParametersController#index as HTML
4238
+ Parameters: {"per_page"=>"20", "page"=>"5"}
4239
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
4240
+ Started GET "/parameters" for 127.0.0.1 at 2018-11-02 18:32:58 +0100
4241
+ Processing by ParametersController#index as HTML
4242
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
4243
+ Started POST "/parameters" for 127.0.0.1 at 2018-11-02 18:32:58 +0100
4244
+ Processing by ParametersController#create as HTML
4245
+ Parameters: {"per_page"=>"20"}
4246
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
4247
+ Started POST "/parameters" for 127.0.0.1 at 2018-11-02 18:32:58 +0100
4248
+ Processing by ParametersController#create as HTML
4249
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
4250
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2018-11-02 18:32:58 +0100
4251
+ Processing by ParametersController#index as HTML
4252
+ Parameters: {"order"=>"created_at"}
4253
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
4254
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2018-11-02 18:32:58 +0100
4255
+ Processing by ParametersController#index as HTML
4256
+ Parameters: {"locale"=>"en"}
4257
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
4258
+ Started GET "/parameters" for 127.0.0.1 at 2018-11-02 18:32:58 +0100
4259
+ Processing by ParametersController#index as HTML
4260
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)