preserve 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (47) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.md +148 -0
  4. data/Rakefile +33 -0
  5. data/lib/preserve.rb +36 -0
  6. data/lib/preserve/version.rb +3 -0
  7. data/spec/dummy/README.rdoc +28 -0
  8. data/spec/dummy/Rakefile +6 -0
  9. data/spec/dummy/app/assets/javascripts/application.js +13 -0
  10. data/spec/dummy/app/assets/stylesheets/application.css +15 -0
  11. data/spec/dummy/app/controllers/application_controller.rb +4 -0
  12. data/spec/dummy/app/controllers/parameters_controller.rb +18 -0
  13. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  14. data/spec/dummy/app/views/layouts/application.html.erb +14 -0
  15. data/spec/dummy/bin/bundle +3 -0
  16. data/spec/dummy/bin/rails +4 -0
  17. data/spec/dummy/bin/rake +4 -0
  18. data/spec/dummy/bin/setup +29 -0
  19. data/spec/dummy/config.ru +4 -0
  20. data/spec/dummy/config/application.rb +32 -0
  21. data/spec/dummy/config/boot.rb +5 -0
  22. data/spec/dummy/config/database.yml +25 -0
  23. data/spec/dummy/config/environment.rb +5 -0
  24. data/spec/dummy/config/environments/development.rb +41 -0
  25. data/spec/dummy/config/environments/production.rb +79 -0
  26. data/spec/dummy/config/environments/test.rb +42 -0
  27. data/spec/dummy/config/initializers/assets.rb +11 -0
  28. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  29. data/spec/dummy/config/initializers/cookies_serializer.rb +3 -0
  30. data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  31. data/spec/dummy/config/initializers/inflections.rb +16 -0
  32. data/spec/dummy/config/initializers/mime_types.rb +4 -0
  33. data/spec/dummy/config/initializers/session_store.rb +3 -0
  34. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  35. data/spec/dummy/config/locales/en.yml +23 -0
  36. data/spec/dummy/config/routes.rb +3 -0
  37. data/spec/dummy/config/secrets.yml +22 -0
  38. data/spec/dummy/db/test.sqlite3 +0 -0
  39. data/spec/dummy/log/test.log +2740 -0
  40. data/spec/dummy/public/404.html +67 -0
  41. data/spec/dummy/public/422.html +67 -0
  42. data/spec/dummy/public/500.html +66 -0
  43. data/spec/dummy/public/favicon.ico +0 -0
  44. data/spec/preserve_spec.rb +46 -0
  45. data/spec/spec_helper.rb +15 -0
  46. data/spec/support/request_helpers.rb +5 -0
  47. metadata +171 -0
@@ -0,0 +1,5 @@
1
+ # Set up gems listed in the Gemfile.
2
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../../../Gemfile', __FILE__)
3
+
4
+ require 'bundler/setup' if File.exist?(ENV['BUNDLE_GEMFILE'])
5
+ $LOAD_PATH.unshift File.expand_path('../../../../lib', __FILE__)
@@ -0,0 +1,25 @@
1
+ # SQLite version 3.x
2
+ # gem install sqlite3
3
+ #
4
+ # Ensure the SQLite 3 gem is defined in your Gemfile
5
+ # gem 'sqlite3'
6
+ #
7
+ default: &default
8
+ adapter: sqlite3
9
+ pool: 5
10
+ timeout: 5000
11
+
12
+ development:
13
+ <<: *default
14
+ database: db/development.sqlite3
15
+
16
+ # Warning: The database defined as "test" will be erased and
17
+ # re-generated from your development database when you run "rake".
18
+ # Do not set this db to the same as development or production.
19
+ test:
20
+ <<: *default
21
+ database: db/test.sqlite3
22
+
23
+ production:
24
+ <<: *default
25
+ database: db/production.sqlite3
@@ -0,0 +1,5 @@
1
+ # Load the Rails application.
2
+ require File.expand_path('../application', __FILE__)
3
+
4
+ # Initialize the Rails application.
5
+ Rails.application.initialize!
@@ -0,0 +1,41 @@
1
+ Rails.application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb.
3
+
4
+ # In the development environment your application's code is reloaded on
5
+ # every request. This slows down response time but is perfect for development
6
+ # since you don't have to restart the web server when you make code changes.
7
+ config.cache_classes = false
8
+
9
+ # Do not eager load code on boot.
10
+ config.eager_load = false
11
+
12
+ # Show full error reports and disable caching.
13
+ config.consider_all_requests_local = true
14
+ config.action_controller.perform_caching = false
15
+
16
+ # Don't care if the mailer can't send.
17
+ config.action_mailer.raise_delivery_errors = false
18
+
19
+ # Print deprecation notices to the Rails logger.
20
+ config.active_support.deprecation = :log
21
+
22
+ # Raise an error on page load if there are pending migrations.
23
+ config.active_record.migration_error = :page_load
24
+
25
+ # Debug mode disables concatenation and preprocessing of assets.
26
+ # This option may cause significant delays in view rendering with a large
27
+ # number of complex assets.
28
+ config.assets.debug = true
29
+
30
+ # Asset digests allow you to set far-future HTTP expiration dates on all assets,
31
+ # yet still be able to expire them through the digest params.
32
+ config.assets.digest = true
33
+
34
+ # Adds additional error checking when serving assets at runtime.
35
+ # Checks for improperly declared sprockets dependencies.
36
+ # Raises helpful error messages.
37
+ config.assets.raise_runtime_errors = true
38
+
39
+ # Raises error for missing translations
40
+ # config.action_view.raise_on_missing_translations = true
41
+ end
@@ -0,0 +1,79 @@
1
+ Rails.application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb.
3
+
4
+ # Code is not reloaded between requests.
5
+ config.cache_classes = true
6
+
7
+ # Eager load code on boot. This eager loads most of Rails and
8
+ # your application in memory, allowing both threaded web servers
9
+ # and those relying on copy on write to perform better.
10
+ # Rake tasks automatically ignore this option for performance.
11
+ config.eager_load = true
12
+
13
+ # Full error reports are disabled and caching is turned on.
14
+ config.consider_all_requests_local = false
15
+ config.action_controller.perform_caching = true
16
+
17
+ # Enable Rack::Cache to put a simple HTTP cache in front of your application
18
+ # Add `rack-cache` to your Gemfile before enabling this.
19
+ # For large-scale production use, consider using a caching reverse proxy like
20
+ # NGINX, varnish or squid.
21
+ # config.action_dispatch.rack_cache = true
22
+
23
+ # Disable serving static files from the `/public` folder by default since
24
+ # Apache or NGINX already handles this.
25
+ config.serve_static_files = ENV['RAILS_SERVE_STATIC_FILES'].present?
26
+
27
+ # Compress JavaScripts and CSS.
28
+ config.assets.js_compressor = :uglifier
29
+ # config.assets.css_compressor = :sass
30
+
31
+ # Do not fallback to assets pipeline if a precompiled asset is missed.
32
+ config.assets.compile = false
33
+
34
+ # Asset digests allow you to set far-future HTTP expiration dates on all assets,
35
+ # yet still be able to expire them through the digest params.
36
+ config.assets.digest = true
37
+
38
+ # `config.assets.precompile` and `config.assets.version` have moved to config/initializers/assets.rb
39
+
40
+ # Specifies the header that your server uses for sending files.
41
+ # config.action_dispatch.x_sendfile_header = 'X-Sendfile' # for Apache
42
+ # config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for NGINX
43
+
44
+ # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
45
+ # config.force_ssl = true
46
+
47
+ # Use the lowest log level to ensure availability of diagnostic information
48
+ # when problems arise.
49
+ config.log_level = :debug
50
+
51
+ # Prepend all log lines with the following tags.
52
+ # config.log_tags = [ :subdomain, :uuid ]
53
+
54
+ # Use a different logger for distributed setups.
55
+ # config.logger = ActiveSupport::TaggedLogging.new(SyslogLogger.new)
56
+
57
+ # Use a different cache store in production.
58
+ # config.cache_store = :mem_cache_store
59
+
60
+ # Enable serving of images, stylesheets, and JavaScripts from an asset server.
61
+ # config.action_controller.asset_host = 'http://assets.example.com'
62
+
63
+ # Ignore bad email addresses and do not raise email delivery errors.
64
+ # Set this to true and configure the email server for immediate delivery to raise delivery errors.
65
+ # config.action_mailer.raise_delivery_errors = false
66
+
67
+ # Enable locale fallbacks for I18n (makes lookups for any locale fall back to
68
+ # the I18n.default_locale when a translation cannot be found).
69
+ config.i18n.fallbacks = true
70
+
71
+ # Send deprecation notices to registered listeners.
72
+ config.active_support.deprecation = :notify
73
+
74
+ # Use default logging formatter so that PID and timestamp are not suppressed.
75
+ config.log_formatter = ::Logger::Formatter.new
76
+
77
+ # Do not dump schema after migrations.
78
+ config.active_record.dump_schema_after_migration = false
79
+ end
@@ -0,0 +1,42 @@
1
+ Rails.application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb.
3
+
4
+ # The test environment is used exclusively to run your application's
5
+ # test suite. You never need to work with it otherwise. Remember that
6
+ # your test database is "scratch space" for the test suite and is wiped
7
+ # and recreated between test runs. Don't rely on the data there!
8
+ config.cache_classes = true
9
+
10
+ # Do not eager load code on boot. This avoids loading your whole application
11
+ # just for the purpose of running a single test. If you are using a tool that
12
+ # preloads Rails for running tests, you may have to set it to true.
13
+ config.eager_load = false
14
+
15
+ # Configure static file server for tests with Cache-Control for performance.
16
+ config.serve_static_files = true
17
+ config.static_cache_control = 'public, max-age=3600'
18
+
19
+ # Show full error reports and disable caching.
20
+ config.consider_all_requests_local = true
21
+ config.action_controller.perform_caching = false
22
+
23
+ # Raise exceptions instead of rendering exception templates.
24
+ config.action_dispatch.show_exceptions = false
25
+
26
+ # Disable request forgery protection in test environment.
27
+ config.action_controller.allow_forgery_protection = false
28
+
29
+ # Tell Action Mailer not to deliver emails to the real world.
30
+ # The :test delivery method accumulates sent emails in the
31
+ # ActionMailer::Base.deliveries array.
32
+ config.action_mailer.delivery_method = :test
33
+
34
+ # Randomize the order test cases are executed.
35
+ config.active_support.test_order = :random
36
+
37
+ # Print deprecation notices to the stderr.
38
+ config.active_support.deprecation = :stderr
39
+
40
+ # Raises error for missing translations
41
+ # config.action_view.raise_on_missing_translations = true
42
+ end
@@ -0,0 +1,11 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Version of your assets, change this if you want to expire all your assets.
4
+ Rails.application.config.assets.version = '1.0'
5
+
6
+ # Add additional assets to the asset load path
7
+ # Rails.application.config.assets.paths << Emoji.images_path
8
+
9
+ # Precompile additional assets.
10
+ # application.js, application.css, and all non-JS/CSS in app/assets folder are already added.
11
+ # Rails.application.config.assets.precompile += %w( search.js )
@@ -0,0 +1,7 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
4
+ # Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
5
+
6
+ # You can also remove all the silencers if you're trying to debug a problem that might stem from framework code.
7
+ # Rails.backtrace_cleaner.remove_silencers!
@@ -0,0 +1,3 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Rails.application.config.action_dispatch.cookies_serializer = :json
@@ -0,0 +1,4 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Configure sensitive parameters which will be filtered from the log file.
4
+ Rails.application.config.filter_parameters += [:password]
@@ -0,0 +1,16 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new inflection rules using the following format. Inflections
4
+ # are locale specific, and you may define rules for as many different
5
+ # locales as you wish. All of these examples are active by default:
6
+ # ActiveSupport::Inflector.inflections(:en) do |inflect|
7
+ # inflect.plural /^(ox)$/i, '\1en'
8
+ # inflect.singular /^(ox)en/i, '\1'
9
+ # inflect.irregular 'person', 'people'
10
+ # inflect.uncountable %w( fish sheep )
11
+ # end
12
+
13
+ # These inflection rules are supported but not enabled by default:
14
+ # ActiveSupport::Inflector.inflections(:en) do |inflect|
15
+ # inflect.acronym 'RESTful'
16
+ # end
@@ -0,0 +1,4 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new mime types for use in respond_to blocks:
4
+ # Mime::Type.register "text/richtext", :rtf
@@ -0,0 +1,3 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Rails.application.config.session_store :cookie_store, key: '_dummy_session'
@@ -0,0 +1,14 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # This file contains settings for ActionController::ParamsWrapper which
4
+ # is enabled by default.
5
+
6
+ # Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
7
+ ActiveSupport.on_load(:action_controller) do
8
+ wrap_parameters format: [:json] if respond_to?(:wrap_parameters)
9
+ end
10
+
11
+ # To enable root element in JSON for ActiveRecord objects.
12
+ # ActiveSupport.on_load(:active_record) do
13
+ # self.include_root_in_json = true
14
+ # end
@@ -0,0 +1,23 @@
1
+ # Files in the config/locales directory are used for internationalization
2
+ # and are automatically loaded by Rails. If you want to use locales other
3
+ # than English, add the necessary files in this directory.
4
+ #
5
+ # To use the locales, use `I18n.t`:
6
+ #
7
+ # I18n.t 'hello'
8
+ #
9
+ # In views, this is aliased to just `t`:
10
+ #
11
+ # <%= t('hello') %>
12
+ #
13
+ # To use a different locale, set it with `I18n.locale`:
14
+ #
15
+ # I18n.locale = :es
16
+ #
17
+ # This would use the information in config/locales/es.yml.
18
+ #
19
+ # To learn more, please read the Rails Internationalization guide
20
+ # available at http://guides.rubyonrails.org/i18n.html.
21
+
22
+ en:
23
+ hello: "Hello world"
@@ -0,0 +1,3 @@
1
+ Rails.application.routes.draw do
2
+ resources :parameters, only: [:index, :create]
3
+ end
@@ -0,0 +1,22 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key is used for verifying the integrity of signed cookies.
4
+ # If you change this key, all old signed cookies will become invalid!
5
+
6
+ # Make sure the secret is at least 30 characters and all random,
7
+ # no regular words or you'll be exposed to dictionary attacks.
8
+ # You can use `rake secret` to generate a secure secret key.
9
+
10
+ # Make sure the secrets in this file are kept private
11
+ # if you're sharing your code publicly.
12
+
13
+ development:
14
+ secret_key_base: c9703e7cc6ba83ad132acf0a1041412d14d27973d62064b90c3801a776518411c0e056d6550c29fd612f50b43efa62b237b6382bfd22cfc29107043409e7feab
15
+
16
+ test:
17
+ secret_key_base: caea2541efe9e89da7ef811a0a58fc16825d1cba6cbcc09f77a372b26cf2c427c911f0f5b7b3c631719c33f81719315349df8067c6a76c9e56c49b113e71531f
18
+
19
+ # Do not keep production secrets in the repository,
20
+ # instead read values from the environment.
21
+ production:
22
+ secret_key_base: <%= ENV["SECRET_KEY_BASE"] %>
File without changes
@@ -0,0 +1,2740 @@
1
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 13:45:34 +0100
2
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 13:45:34 +0100
3
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2016-02-12 13:45:34 +0100
4
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 13:45:34 +0100
5
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2016-02-12 13:45:34 +0100
6
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2016-02-12 13:45:34 +0100
7
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 13:46:23 +0100
8
+ Processing by ParametersController#index as HTML
9
+ Parameters: {"per_page"=>"20"}
10
+ Completed 200 OK in 9ms (Views: 0.2ms | ActiveRecord: 0.0ms)
11
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 13:46:23 +0100
12
+ Processing by ParametersController#index as HTML
13
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
14
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 13:46:23 +0100
15
+ Processing by ParametersController#index as HTML
16
+ Parameters: {"per_page"=>"20"}
17
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
18
+ Started GET "/parameters?per_page=10" for 127.0.0.1 at 2016-02-12 13:46:23 +0100
19
+ Processing by ParametersController#index as HTML
20
+ Parameters: {"per_page"=>"10"}
21
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
22
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2016-02-12 13:46:23 +0100
23
+ Processing by ParametersController#index as HTML
24
+ Parameters: {"per_page"=>"20", "page"=>"5"}
25
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
26
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 13:46:23 +0100
27
+ Processing by ParametersController#index as HTML
28
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
29
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 13:46:23 +0100
30
+ Processing by ParametersController#create as HTML
31
+ Parameters: {"per_page"=>"20"}
32
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
33
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 13:46:23 +0100
34
+ Processing by ParametersController#create as HTML
35
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
36
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2016-02-12 13:46:23 +0100
37
+ Processing by ParametersController#index as HTML
38
+ Parameters: {"order"=>"created_at"}
39
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
40
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2016-02-12 13:46:23 +0100
41
+ Processing by ParametersController#index as HTML
42
+ Parameters: {"locale"=>"en"}
43
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
44
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 13:46:23 +0100
45
+ Processing by ParametersController#index as HTML
46
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
47
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 13:47:10 +0100
48
+ Processing by ParametersController#index as HTML
49
+ Parameters: {"per_page"=>"20"}
50
+ Completed 200 OK in 29ms (Views: 0.3ms | ActiveRecord: 0.0ms)
51
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 13:47:10 +0100
52
+ Processing by ParametersController#index as HTML
53
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
54
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 13:47:10 +0100
55
+ Processing by ParametersController#index as HTML
56
+ Parameters: {"per_page"=>"20"}
57
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
58
+ Started GET "/parameters?per_page=10" for 127.0.0.1 at 2016-02-12 13:47:10 +0100
59
+ Processing by ParametersController#index as HTML
60
+ Parameters: {"per_page"=>"10"}
61
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
62
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2016-02-12 13:47:10 +0100
63
+ Processing by ParametersController#index as HTML
64
+ Parameters: {"per_page"=>"20", "page"=>"5"}
65
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
66
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 13:47:10 +0100
67
+ Processing by ParametersController#index as HTML
68
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
69
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 13:47:10 +0100
70
+ Processing by ParametersController#create as HTML
71
+ Parameters: {"per_page"=>"20"}
72
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
73
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 13:47:10 +0100
74
+ Processing by ParametersController#create as HTML
75
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
76
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2016-02-12 13:47:10 +0100
77
+ Processing by ParametersController#index as HTML
78
+ Parameters: {"order"=>"created_at"}
79
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
80
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2016-02-12 13:47:10 +0100
81
+ Processing by ParametersController#index as HTML
82
+ Parameters: {"locale"=>"en"}
83
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
84
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 13:47:10 +0100
85
+ Processing by ParametersController#index as HTML
86
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
87
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 13:47:15 +0100
88
+ Processing by ParametersController#index as HTML
89
+ Parameters: {"per_page"=>"20"}
90
+ Completed 200 OK in 7ms (Views: 0.2ms | ActiveRecord: 0.0ms)
91
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 13:47:15 +0100
92
+ Processing by ParametersController#index as HTML
93
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
94
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 13:47:15 +0100
95
+ Processing by ParametersController#index as HTML
96
+ Parameters: {"per_page"=>"20"}
97
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
98
+ Started GET "/parameters?per_page=10" for 127.0.0.1 at 2016-02-12 13:47:15 +0100
99
+ Processing by ParametersController#index as HTML
100
+ Parameters: {"per_page"=>"10"}
101
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
102
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2016-02-12 13:47:15 +0100
103
+ Processing by ParametersController#index as HTML
104
+ Parameters: {"per_page"=>"20", "page"=>"5"}
105
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
106
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 13:47:15 +0100
107
+ Processing by ParametersController#index as HTML
108
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
109
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 13:47:15 +0100
110
+ Processing by ParametersController#create as HTML
111
+ Parameters: {"per_page"=>"20"}
112
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
113
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 13:47:15 +0100
114
+ Processing by ParametersController#create as HTML
115
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
116
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2016-02-12 13:47:15 +0100
117
+ Processing by ParametersController#index as HTML
118
+ Parameters: {"order"=>"created_at"}
119
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
120
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2016-02-12 13:47:15 +0100
121
+ Processing by ParametersController#index as HTML
122
+ Parameters: {"locale"=>"en"}
123
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
124
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 13:47:15 +0100
125
+ Processing by ParametersController#index as HTML
126
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
127
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 13:56:37 +0100
128
+ Processing by ParametersController#index as HTML
129
+ Parameters: {"per_page"=>"20"}
130
+ Completed 200 OK in 10ms (Views: 0.3ms | ActiveRecord: 0.0ms)
131
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 13:56:37 +0100
132
+ Processing by ParametersController#index as HTML
133
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
134
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 13:56:37 +0100
135
+ Processing by ParametersController#index as HTML
136
+ Parameters: {"per_page"=>"20"}
137
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
138
+ Started GET "/parameters?per_page=10" for 127.0.0.1 at 2016-02-12 13:56:37 +0100
139
+ Processing by ParametersController#index as HTML
140
+ Parameters: {"per_page"=>"10"}
141
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
142
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2016-02-12 13:56:37 +0100
143
+ Processing by ParametersController#index as HTML
144
+ Parameters: {"per_page"=>"20", "page"=>"5"}
145
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
146
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 13:56:37 +0100
147
+ Processing by ParametersController#index as HTML
148
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
149
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 13:56:37 +0100
150
+ Processing by ParametersController#create as HTML
151
+ Parameters: {"per_page"=>"20"}
152
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
153
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 13:56:37 +0100
154
+ Processing by ParametersController#create as HTML
155
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
156
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2016-02-12 13:56:37 +0100
157
+ Processing by ParametersController#index as HTML
158
+ Parameters: {"order"=>"created_at"}
159
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
160
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2016-02-12 13:56:37 +0100
161
+ Processing by ParametersController#index as HTML
162
+ Parameters: {"locale"=>"en"}
163
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
164
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 13:56:37 +0100
165
+ Processing by ParametersController#index as HTML
166
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
167
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 13:56:41 +0100
168
+ Processing by ParametersController#index as HTML
169
+ Parameters: {"per_page"=>"20"}
170
+ Completed 200 OK in 7ms (Views: 0.2ms | ActiveRecord: 0.0ms)
171
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 13:56:41 +0100
172
+ Processing by ParametersController#index as HTML
173
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
174
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 13:56:41 +0100
175
+ Processing by ParametersController#index as HTML
176
+ Parameters: {"per_page"=>"20"}
177
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
178
+ Started GET "/parameters?per_page=10" for 127.0.0.1 at 2016-02-12 13:56:41 +0100
179
+ Processing by ParametersController#index as HTML
180
+ Parameters: {"per_page"=>"10"}
181
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
182
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2016-02-12 13:56:41 +0100
183
+ Processing by ParametersController#index as HTML
184
+ Parameters: {"per_page"=>"20", "page"=>"5"}
185
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
186
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 13:56:41 +0100
187
+ Processing by ParametersController#index as HTML
188
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
189
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 13:56:41 +0100
190
+ Processing by ParametersController#create as HTML
191
+ Parameters: {"per_page"=>"20"}
192
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
193
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 13:56:41 +0100
194
+ Processing by ParametersController#create as HTML
195
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
196
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2016-02-12 13:56:41 +0100
197
+ Processing by ParametersController#index as HTML
198
+ Parameters: {"order"=>"created_at"}
199
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
200
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2016-02-12 13:56:41 +0100
201
+ Processing by ParametersController#index as HTML
202
+ Parameters: {"locale"=>"en"}
203
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
204
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 13:56:41 +0100
205
+ Processing by ParametersController#index as HTML
206
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
207
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 14:09:07 +0100
208
+ Processing by ParametersController#index as HTML
209
+ Parameters: {"per_page"=>"20"}
210
+ Completed 200 OK in 23ms (Views: 14.0ms | ActiveRecord: 0.0ms)
211
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 14:09:07 +0100
212
+ Processing by ParametersController#index as HTML
213
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
214
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 14:09:07 +0100
215
+ Processing by ParametersController#index as HTML
216
+ Parameters: {"per_page"=>"20"}
217
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
218
+ Started GET "/parameters?per_page=10" for 127.0.0.1 at 2016-02-12 14:09:07 +0100
219
+ Processing by ParametersController#index as HTML
220
+ Parameters: {"per_page"=>"10"}
221
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
222
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2016-02-12 14:09:07 +0100
223
+ Processing by ParametersController#index as HTML
224
+ Parameters: {"per_page"=>"20", "page"=>"5"}
225
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
226
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 14:09:07 +0100
227
+ Processing by ParametersController#index as HTML
228
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
229
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 14:09:07 +0100
230
+ Processing by ParametersController#create as HTML
231
+ Parameters: {"per_page"=>"20"}
232
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
233
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 14:09:07 +0100
234
+ Processing by ParametersController#create as HTML
235
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
236
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2016-02-12 14:09:07 +0100
237
+ Processing by ParametersController#index as HTML
238
+ Parameters: {"order"=>"created_at"}
239
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
240
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2016-02-12 14:09:07 +0100
241
+ Processing by ParametersController#index as HTML
242
+ Parameters: {"locale"=>"en"}
243
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
244
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 14:09:07 +0100
245
+ Processing by ParametersController#index as HTML
246
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
247
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 14:09:14 +0100
248
+ Processing by ParametersController#index as HTML
249
+ Parameters: {"per_page"=>"20"}
250
+ Completed 200 OK in 9ms (Views: 0.2ms | ActiveRecord: 0.0ms)
251
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 14:09:14 +0100
252
+ Processing by ParametersController#index as HTML
253
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
254
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 14:09:14 +0100
255
+ Processing by ParametersController#index as HTML
256
+ Parameters: {"per_page"=>"20"}
257
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
258
+ Started GET "/parameters?per_page=10" for 127.0.0.1 at 2016-02-12 14:09:14 +0100
259
+ Processing by ParametersController#index as HTML
260
+ Parameters: {"per_page"=>"10"}
261
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
262
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2016-02-12 14:09:14 +0100
263
+ Processing by ParametersController#index as HTML
264
+ Parameters: {"per_page"=>"20", "page"=>"5"}
265
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
266
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 14:09:14 +0100
267
+ Processing by ParametersController#index as HTML
268
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
269
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 14:09:15 +0100
270
+ Processing by ParametersController#create as HTML
271
+ Parameters: {"per_page"=>"20"}
272
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
273
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 14:09:15 +0100
274
+ Processing by ParametersController#create as HTML
275
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
276
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2016-02-12 14:09:15 +0100
277
+ Processing by ParametersController#index as HTML
278
+ Parameters: {"order"=>"created_at"}
279
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
280
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2016-02-12 14:09:15 +0100
281
+ Processing by ParametersController#index as HTML
282
+ Parameters: {"locale"=>"en"}
283
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
284
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 14:09:15 +0100
285
+ Processing by ParametersController#index as HTML
286
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
287
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 14:12:14 +0100
288
+ Processing by ParametersController#index as HTML
289
+ Parameters: {"per_page"=>"20"}
290
+ Completed 200 OK in 18ms (Views: 0.3ms | ActiveRecord: 0.0ms)
291
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 14:12:14 +0100
292
+ Processing by ParametersController#index as HTML
293
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
294
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 14:12:14 +0100
295
+ Processing by ParametersController#index as HTML
296
+ Parameters: {"per_page"=>"20"}
297
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
298
+ Started GET "/parameters?per_page=10" for 127.0.0.1 at 2016-02-12 14:12:14 +0100
299
+ Processing by ParametersController#index as HTML
300
+ Parameters: {"per_page"=>"10"}
301
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
302
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2016-02-12 14:12:14 +0100
303
+ Processing by ParametersController#index as HTML
304
+ Parameters: {"per_page"=>"20", "page"=>"5"}
305
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
306
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 14:12:14 +0100
307
+ Processing by ParametersController#index as HTML
308
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
309
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 14:12:14 +0100
310
+ Processing by ParametersController#create as HTML
311
+ Parameters: {"per_page"=>"20"}
312
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
313
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 14:12:14 +0100
314
+ Processing by ParametersController#create as HTML
315
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
316
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2016-02-12 14:12:14 +0100
317
+ Processing by ParametersController#index as HTML
318
+ Parameters: {"order"=>"created_at"}
319
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
320
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2016-02-12 14:12:14 +0100
321
+ Processing by ParametersController#index as HTML
322
+ Parameters: {"locale"=>"en"}
323
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
324
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 14:12:14 +0100
325
+ Processing by ParametersController#index as HTML
326
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
327
+ Started GET "/parameters?params[per_page]=20" for 127.0.0.1 at 2016-02-12 14:12:55 +0100
328
+ Processing by ParametersController#index as HTML
329
+ Parameters: {"params"=>{"per_page"=>"20"}}
330
+ Completed 200 OK in 19ms (Views: 0.2ms | ActiveRecord: 0.0ms)
331
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 14:12:55 +0100
332
+ Processing by ParametersController#index as HTML
333
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
334
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 14:12:55 +0100
335
+ Processing by ParametersController#index as HTML
336
+ Parameters: {"per_page"=>"20"}
337
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
338
+ Started GET "/parameters?per_page=10" for 127.0.0.1 at 2016-02-12 14:12:55 +0100
339
+ Processing by ParametersController#index as HTML
340
+ Parameters: {"per_page"=>"10"}
341
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
342
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2016-02-12 14:12:55 +0100
343
+ Processing by ParametersController#index as HTML
344
+ Parameters: {"per_page"=>"20", "page"=>"5"}
345
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
346
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 14:12:55 +0100
347
+ Processing by ParametersController#index as HTML
348
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
349
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 14:12:55 +0100
350
+ Processing by ParametersController#create as HTML
351
+ Parameters: {"per_page"=>"20"}
352
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
353
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 14:12:55 +0100
354
+ Processing by ParametersController#create as HTML
355
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
356
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2016-02-12 14:12:55 +0100
357
+ Processing by ParametersController#index as HTML
358
+ Parameters: {"order"=>"created_at"}
359
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
360
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2016-02-12 14:12:55 +0100
361
+ Processing by ParametersController#index as HTML
362
+ Parameters: {"locale"=>"en"}
363
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
364
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 14:12:55 +0100
365
+ Processing by ParametersController#index as HTML
366
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
367
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 14:16:08 +0100
368
+ Processing by ParametersController#index as HTML
369
+ Parameters: {"per_page"=>"20"}
370
+ Completed 200 OK in 10ms (Views: 0.2ms | ActiveRecord: 0.0ms)
371
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 14:16:08 +0100
372
+ Processing by ParametersController#index as HTML
373
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
374
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 14:16:08 +0100
375
+ Processing by ParametersController#index as HTML
376
+ Parameters: {"per_page"=>"20"}
377
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
378
+ Started GET "/parameters?per_page=10" for 127.0.0.1 at 2016-02-12 14:16:08 +0100
379
+ Processing by ParametersController#index as HTML
380
+ Parameters: {"per_page"=>"10"}
381
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
382
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2016-02-12 14:16:08 +0100
383
+ Processing by ParametersController#index as HTML
384
+ Parameters: {"per_page"=>"20", "page"=>"5"}
385
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
386
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 14:16:08 +0100
387
+ Processing by ParametersController#index as HTML
388
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
389
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 14:16:08 +0100
390
+ Processing by ParametersController#create as HTML
391
+ Parameters: {"per_page"=>"20"}
392
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
393
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 14:16:08 +0100
394
+ Processing by ParametersController#create as HTML
395
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
396
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2016-02-12 14:16:08 +0100
397
+ Processing by ParametersController#index as HTML
398
+ Parameters: {"order"=>"created_at"}
399
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
400
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2016-02-12 14:16:08 +0100
401
+ Processing by ParametersController#index as HTML
402
+ Parameters: {"locale"=>"en"}
403
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
404
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 14:16:08 +0100
405
+ Processing by ParametersController#index as HTML
406
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
407
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 14:16:17 +0100
408
+ Processing by ParametersController#index as HTML
409
+ Parameters: {"per_page"=>"20"}
410
+ Completed 200 OK in 9ms (Views: 0.3ms | ActiveRecord: 0.0ms)
411
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 14:16:17 +0100
412
+ Processing by ParametersController#index as HTML
413
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
414
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 14:16:17 +0100
415
+ Processing by ParametersController#index as HTML
416
+ Parameters: {"per_page"=>"20"}
417
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
418
+ Started GET "/parameters?per_page=10" for 127.0.0.1 at 2016-02-12 14:16:17 +0100
419
+ Processing by ParametersController#index as HTML
420
+ Parameters: {"per_page"=>"10"}
421
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
422
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2016-02-12 14:16:17 +0100
423
+ Processing by ParametersController#index as HTML
424
+ Parameters: {"per_page"=>"20", "page"=>"5"}
425
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
426
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 14:16:17 +0100
427
+ Processing by ParametersController#index as HTML
428
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
429
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 14:16:17 +0100
430
+ Processing by ParametersController#create as HTML
431
+ Parameters: {"per_page"=>"20"}
432
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
433
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 14:16:17 +0100
434
+ Processing by ParametersController#create as HTML
435
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
436
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2016-02-12 14:16:17 +0100
437
+ Processing by ParametersController#index as HTML
438
+ Parameters: {"order"=>"created_at"}
439
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
440
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2016-02-12 14:16:17 +0100
441
+ Processing by ParametersController#index as HTML
442
+ Parameters: {"locale"=>"en"}
443
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
444
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 14:16:17 +0100
445
+ Processing by ParametersController#index as HTML
446
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
447
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 14:18:24 +0100
448
+ Processing by ParametersController#index as HTML
449
+ Parameters: {"per_page"=>"20"}
450
+ Completed 200 OK in 18ms (Views: 0.2ms | ActiveRecord: 0.0ms)
451
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 14:18:24 +0100
452
+ Processing by ParametersController#index as HTML
453
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
454
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 14:18:24 +0100
455
+ Processing by ParametersController#index as HTML
456
+ Parameters: {"per_page"=>"20"}
457
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
458
+ Started GET "/parameters?per_page=10" for 127.0.0.1 at 2016-02-12 14:18:24 +0100
459
+ Processing by ParametersController#index as HTML
460
+ Parameters: {"per_page"=>"10"}
461
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
462
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2016-02-12 14:18:24 +0100
463
+ Processing by ParametersController#index as HTML
464
+ Parameters: {"per_page"=>"20", "page"=>"5"}
465
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
466
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 14:18:24 +0100
467
+ Processing by ParametersController#index as HTML
468
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
469
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 14:18:24 +0100
470
+ Processing by ParametersController#create as HTML
471
+ Parameters: {"per_page"=>"20"}
472
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
473
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 14:18:24 +0100
474
+ Processing by ParametersController#create as HTML
475
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
476
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2016-02-12 14:18:24 +0100
477
+ Processing by ParametersController#index as HTML
478
+ Parameters: {"order"=>"created_at"}
479
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
480
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2016-02-12 14:18:24 +0100
481
+ Processing by ParametersController#index as HTML
482
+ Parameters: {"locale"=>"en"}
483
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
484
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 14:18:24 +0100
485
+ Processing by ParametersController#index as HTML
486
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
487
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 14:25:52 +0100
488
+ Processing by ParametersController#index as HTML
489
+ Parameters: {"per_page"=>"20"}
490
+ Completed 200 OK in 46ms (Views: 38.8ms | ActiveRecord: 0.0ms)
491
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 14:25:52 +0100
492
+ Processing by ParametersController#index as HTML
493
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
494
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 14:25:52 +0100
495
+ Processing by ParametersController#index as HTML
496
+ Parameters: {"per_page"=>"20"}
497
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
498
+ Started GET "/parameters?per_page=10" for 127.0.0.1 at 2016-02-12 14:25:52 +0100
499
+ Processing by ParametersController#index as HTML
500
+ Parameters: {"per_page"=>"10"}
501
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
502
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2016-02-12 14:25:52 +0100
503
+ Processing by ParametersController#index as HTML
504
+ Parameters: {"per_page"=>"20", "page"=>"5"}
505
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
506
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 14:25:52 +0100
507
+ Processing by ParametersController#index as HTML
508
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
509
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 14:25:52 +0100
510
+ Processing by ParametersController#create as HTML
511
+ Parameters: {"per_page"=>"20"}
512
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
513
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 14:25:52 +0100
514
+ Processing by ParametersController#create as HTML
515
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
516
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2016-02-12 14:25:52 +0100
517
+ Processing by ParametersController#index as HTML
518
+ Parameters: {"order"=>"created_at"}
519
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
520
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2016-02-12 14:25:52 +0100
521
+ Processing by ParametersController#index as HTML
522
+ Parameters: {"locale"=>"en"}
523
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
524
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 14:25:52 +0100
525
+ Processing by ParametersController#index as HTML
526
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
527
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 14:26:02 +0100
528
+ Processing by ParametersController#index as HTML
529
+ Parameters: {"per_page"=>"20"}
530
+ Completed 200 OK in 7ms (Views: 0.2ms | ActiveRecord: 0.0ms)
531
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 14:26:02 +0100
532
+ Processing by ParametersController#index as HTML
533
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
534
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 14:26:02 +0100
535
+ Processing by ParametersController#index as HTML
536
+ Parameters: {"per_page"=>"20"}
537
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
538
+ Started GET "/parameters?per_page=10" for 127.0.0.1 at 2016-02-12 14:26:02 +0100
539
+ Processing by ParametersController#index as HTML
540
+ Parameters: {"per_page"=>"10"}
541
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
542
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2016-02-12 14:26:02 +0100
543
+ Processing by ParametersController#index as HTML
544
+ Parameters: {"per_page"=>"20", "page"=>"5"}
545
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
546
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 14:26:02 +0100
547
+ Processing by ParametersController#index as HTML
548
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
549
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 14:26:02 +0100
550
+ Processing by ParametersController#create as HTML
551
+ Parameters: {"per_page"=>"20"}
552
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
553
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 14:26:02 +0100
554
+ Processing by ParametersController#create as HTML
555
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
556
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2016-02-12 14:26:02 +0100
557
+ Processing by ParametersController#index as HTML
558
+ Parameters: {"order"=>"created_at"}
559
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
560
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2016-02-12 14:26:02 +0100
561
+ Processing by ParametersController#index as HTML
562
+ Parameters: {"locale"=>"en"}
563
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
564
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 14:26:02 +0100
565
+ Processing by ParametersController#index as HTML
566
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
567
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 14:40:46 +0100
568
+ Processing by ParametersController#index as HTML
569
+ Parameters: {"per_page"=>"20"}
570
+ Completed 200 OK in 9ms (Views: 0.2ms | ActiveRecord: 0.0ms)
571
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 14:40:46 +0100
572
+ Processing by ParametersController#index as HTML
573
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
574
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 14:40:46 +0100
575
+ Processing by ParametersController#index as HTML
576
+ Parameters: {"per_page"=>"20"}
577
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
578
+ Started GET "/parameters?per_page=10" for 127.0.0.1 at 2016-02-12 14:40:46 +0100
579
+ Processing by ParametersController#index as HTML
580
+ Parameters: {"per_page"=>"10"}
581
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
582
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2016-02-12 14:40:46 +0100
583
+ Processing by ParametersController#index as HTML
584
+ Parameters: {"per_page"=>"20", "page"=>"5"}
585
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
586
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 14:40:46 +0100
587
+ Processing by ParametersController#index as HTML
588
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
589
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 14:40:46 +0100
590
+ Processing by ParametersController#create as HTML
591
+ Parameters: {"per_page"=>"20"}
592
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
593
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 14:40:46 +0100
594
+ Processing by ParametersController#create as HTML
595
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
596
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2016-02-12 14:40:46 +0100
597
+ Processing by ParametersController#index as HTML
598
+ Parameters: {"order"=>"created_at"}
599
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
600
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2016-02-12 14:40:46 +0100
601
+ Processing by ParametersController#index as HTML
602
+ Parameters: {"locale"=>"en"}
603
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
604
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 14:40:46 +0100
605
+ Processing by ParametersController#index as HTML
606
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
607
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 14:42:31 +0100
608
+ Processing by ParametersController#index as HTML
609
+ Parameters: {"per_page"=>"20"}
610
+ Completed 200 OK in 23ms (Views: 0.2ms | ActiveRecord: 0.0ms)
611
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 14:42:31 +0100
612
+ Processing by ParametersController#index as HTML
613
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
614
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 14:42:31 +0100
615
+ Processing by ParametersController#index as HTML
616
+ Parameters: {"per_page"=>"20"}
617
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
618
+ Started GET "/parameters?per_page=10" for 127.0.0.1 at 2016-02-12 14:42:31 +0100
619
+ Processing by ParametersController#index as HTML
620
+ Parameters: {"per_page"=>"10"}
621
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
622
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2016-02-12 14:42:31 +0100
623
+ Processing by ParametersController#index as HTML
624
+ Parameters: {"per_page"=>"20", "page"=>"5"}
625
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
626
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 14:42:31 +0100
627
+ Processing by ParametersController#index as HTML
628
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
629
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 14:42:31 +0100
630
+ Processing by ParametersController#create as HTML
631
+ Parameters: {"per_page"=>"20"}
632
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
633
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 14:42:31 +0100
634
+ Processing by ParametersController#create as HTML
635
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
636
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2016-02-12 14:42:31 +0100
637
+ Processing by ParametersController#index as HTML
638
+ Parameters: {"order"=>"created_at"}
639
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
640
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2016-02-12 14:42:31 +0100
641
+ Processing by ParametersController#index as HTML
642
+ Parameters: {"locale"=>"en"}
643
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
644
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 14:42:31 +0100
645
+ Processing by ParametersController#index as HTML
646
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
647
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 14:43:36 +0100
648
+ Processing by ParametersController#index as HTML
649
+ Parameters: {"per_page"=>"20"}
650
+ Completed 200 OK in 18ms (Views: 0.2ms | ActiveRecord: 0.0ms)
651
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 14:43:36 +0100
652
+ Processing by ParametersController#index as HTML
653
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
654
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 14:43:36 +0100
655
+ Processing by ParametersController#index as HTML
656
+ Parameters: {"per_page"=>"20"}
657
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
658
+ Started GET "/parameters?per_page=10" for 127.0.0.1 at 2016-02-12 14:43:36 +0100
659
+ Processing by ParametersController#index as HTML
660
+ Parameters: {"per_page"=>"10"}
661
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
662
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2016-02-12 14:43:36 +0100
663
+ Processing by ParametersController#index as HTML
664
+ Parameters: {"per_page"=>"20", "page"=>"5"}
665
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
666
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 14:43:36 +0100
667
+ Processing by ParametersController#index as HTML
668
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
669
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 14:43:36 +0100
670
+ Processing by ParametersController#create as HTML
671
+ Parameters: {"per_page"=>"20"}
672
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
673
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 14:43:36 +0100
674
+ Processing by ParametersController#create as HTML
675
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
676
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2016-02-12 14:43:36 +0100
677
+ Processing by ParametersController#index as HTML
678
+ Parameters: {"order"=>"created_at"}
679
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
680
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2016-02-12 14:43:36 +0100
681
+ Processing by ParametersController#index as HTML
682
+ Parameters: {"locale"=>"en"}
683
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
684
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 14:43:36 +0100
685
+ Processing by ParametersController#index as HTML
686
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
687
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 14:43:39 +0100
688
+ Processing by ParametersController#index as HTML
689
+ Parameters: {"per_page"=>"20"}
690
+ Completed 200 OK in 7ms (Views: 0.2ms | ActiveRecord: 0.0ms)
691
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 14:43:39 +0100
692
+ Processing by ParametersController#index as HTML
693
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
694
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 14:43:39 +0100
695
+ Processing by ParametersController#index as HTML
696
+ Parameters: {"per_page"=>"20"}
697
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
698
+ Started GET "/parameters?per_page=10" for 127.0.0.1 at 2016-02-12 14:43:39 +0100
699
+ Processing by ParametersController#index as HTML
700
+ Parameters: {"per_page"=>"10"}
701
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
702
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2016-02-12 14:43:39 +0100
703
+ Processing by ParametersController#index as HTML
704
+ Parameters: {"per_page"=>"20", "page"=>"5"}
705
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
706
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 14:43:39 +0100
707
+ Processing by ParametersController#index as HTML
708
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
709
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 14:43:39 +0100
710
+ Processing by ParametersController#create as HTML
711
+ Parameters: {"per_page"=>"20"}
712
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
713
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 14:43:39 +0100
714
+ Processing by ParametersController#create as HTML
715
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
716
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2016-02-12 14:43:39 +0100
717
+ Processing by ParametersController#index as HTML
718
+ Parameters: {"order"=>"created_at"}
719
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
720
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2016-02-12 14:43:39 +0100
721
+ Processing by ParametersController#index as HTML
722
+ Parameters: {"locale"=>"en"}
723
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
724
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 14:43:39 +0100
725
+ Processing by ParametersController#index as HTML
726
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
727
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 14:55:09 +0100
728
+ Processing by ParametersController#index as HTML
729
+ Parameters: {"per_page"=>"20"}
730
+ Completed 200 OK in 24ms (Views: 16.5ms | ActiveRecord: 0.0ms)
731
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 14:55:10 +0100
732
+ Processing by ParametersController#index as HTML
733
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
734
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 14:55:10 +0100
735
+ Processing by ParametersController#index as HTML
736
+ Parameters: {"per_page"=>"20"}
737
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
738
+ Started GET "/parameters?per_page=10" for 127.0.0.1 at 2016-02-12 14:55:10 +0100
739
+ Processing by ParametersController#index as HTML
740
+ Parameters: {"per_page"=>"10"}
741
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
742
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2016-02-12 14:55:10 +0100
743
+ Processing by ParametersController#index as HTML
744
+ Parameters: {"per_page"=>"20", "page"=>"5"}
745
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
746
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 14:55:10 +0100
747
+ Processing by ParametersController#index as HTML
748
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
749
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 14:55:10 +0100
750
+ Processing by ParametersController#create as HTML
751
+ Parameters: {"per_page"=>"20"}
752
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
753
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 14:55:10 +0100
754
+ Processing by ParametersController#create as HTML
755
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
756
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2016-02-12 14:55:10 +0100
757
+ Processing by ParametersController#index as HTML
758
+ Parameters: {"order"=>"created_at"}
759
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
760
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2016-02-12 14:55:10 +0100
761
+ Processing by ParametersController#index as HTML
762
+ Parameters: {"locale"=>"en"}
763
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
764
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 14:55:10 +0100
765
+ Processing by ParametersController#index as HTML
766
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
767
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 15:00:40 +0100
768
+ Processing by ParametersController#index as HTML
769
+ Parameters: {"per_page"=>"20"}
770
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
771
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 15:00:40 +0100
772
+ Processing by ParametersController#index as HTML
773
+ Parameters: {"per_page"=>"20"}
774
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
775
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2016-02-12 15:00:40 +0100
776
+ Processing by ParametersController#index as HTML
777
+ Parameters: {"per_page"=>"20", "page"=>"5"}
778
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
779
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 15:00:40 +0100
780
+ Processing by ParametersController#create as HTML
781
+ Parameters: {"per_page"=>"20"}
782
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
783
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2016-02-12 15:00:40 +0100
784
+ Processing by ParametersController#index as HTML
785
+ Parameters: {"order"=>"created_at"}
786
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
787
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2016-02-12 15:00:40 +0100
788
+ Processing by ParametersController#index as HTML
789
+ Parameters: {"locale"=>"en"}
790
+ Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
791
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 15:01:07 +0100
792
+ Processing by ParametersController#index as HTML
793
+ Parameters: {"per_page"=>"20"}
794
+ Completed 200 OK in 18ms (Views: 0.3ms | ActiveRecord: 0.0ms)
795
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 15:01:07 +0100
796
+ Processing by ParametersController#index as HTML
797
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
798
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 15:01:07 +0100
799
+ Processing by ParametersController#index as HTML
800
+ Parameters: {"per_page"=>"20"}
801
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
802
+ Started GET "/parameters?per_page=10" for 127.0.0.1 at 2016-02-12 15:01:07 +0100
803
+ Processing by ParametersController#index as HTML
804
+ Parameters: {"per_page"=>"10"}
805
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
806
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2016-02-12 15:01:07 +0100
807
+ Processing by ParametersController#index as HTML
808
+ Parameters: {"per_page"=>"20", "page"=>"5"}
809
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
810
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 15:01:07 +0100
811
+ Processing by ParametersController#index as HTML
812
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
813
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 15:01:07 +0100
814
+ Processing by ParametersController#create as HTML
815
+ Parameters: {"per_page"=>"20"}
816
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
817
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 15:01:07 +0100
818
+ Processing by ParametersController#create as HTML
819
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
820
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2016-02-12 15:01:08 +0100
821
+ Processing by ParametersController#index as HTML
822
+ Parameters: {"order"=>"created_at"}
823
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
824
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2016-02-12 15:01:08 +0100
825
+ Processing by ParametersController#index as HTML
826
+ Parameters: {"locale"=>"en"}
827
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
828
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 15:01:08 +0100
829
+ Processing by ParametersController#index as HTML
830
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
831
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 15:01:21 +0100
832
+ Processing by ParametersController#index as HTML
833
+ Parameters: {"per_page"=>"20"}
834
+ Completed 200 OK in 19ms (Views: 0.2ms | ActiveRecord: 0.0ms)
835
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 15:01:21 +0100
836
+ Processing by ParametersController#index as HTML
837
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
838
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 15:01:21 +0100
839
+ Processing by ParametersController#index as HTML
840
+ Parameters: {"per_page"=>"20"}
841
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
842
+ Started GET "/parameters?per_page=10" for 127.0.0.1 at 2016-02-12 15:01:21 +0100
843
+ Processing by ParametersController#index as HTML
844
+ Parameters: {"per_page"=>"10"}
845
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
846
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2016-02-12 15:01:21 +0100
847
+ Processing by ParametersController#index as HTML
848
+ Parameters: {"per_page"=>"20", "page"=>"5"}
849
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
850
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 15:01:21 +0100
851
+ Processing by ParametersController#index as HTML
852
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
853
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 15:01:21 +0100
854
+ Processing by ParametersController#create as HTML
855
+ Parameters: {"per_page"=>"20"}
856
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
857
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 15:01:21 +0100
858
+ Processing by ParametersController#create as HTML
859
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
860
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2016-02-12 15:01:21 +0100
861
+ Processing by ParametersController#index as HTML
862
+ Parameters: {"order"=>"created_at"}
863
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
864
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2016-02-12 15:01:21 +0100
865
+ Processing by ParametersController#index as HTML
866
+ Parameters: {"locale"=>"en"}
867
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
868
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 15:01:21 +0100
869
+ Processing by ParametersController#index as HTML
870
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
871
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 15:01:45 +0100
872
+ Processing by ParametersController#index as HTML
873
+ Parameters: {"per_page"=>"20"}
874
+ Completed 200 OK in 7ms (Views: 0.2ms | ActiveRecord: 0.0ms)
875
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 15:01:45 +0100
876
+ Processing by ParametersController#index as HTML
877
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
878
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 15:01:45 +0100
879
+ Processing by ParametersController#index as HTML
880
+ Parameters: {"per_page"=>"20"}
881
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
882
+ Started GET "/parameters?per_page=10" for 127.0.0.1 at 2016-02-12 15:01:45 +0100
883
+ Processing by ParametersController#index as HTML
884
+ Parameters: {"per_page"=>"10"}
885
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
886
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2016-02-12 15:01:45 +0100
887
+ Processing by ParametersController#index as HTML
888
+ Parameters: {"per_page"=>"20", "page"=>"5"}
889
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
890
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 15:01:45 +0100
891
+ Processing by ParametersController#index as HTML
892
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
893
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 15:01:45 +0100
894
+ Processing by ParametersController#create as HTML
895
+ Parameters: {"per_page"=>"20"}
896
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
897
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 15:01:45 +0100
898
+ Processing by ParametersController#create as HTML
899
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
900
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2016-02-12 15:01:45 +0100
901
+ Processing by ParametersController#index as HTML
902
+ Parameters: {"order"=>"created_at"}
903
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
904
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2016-02-12 15:01:45 +0100
905
+ Processing by ParametersController#index as HTML
906
+ Parameters: {"locale"=>"en"}
907
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
908
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 15:01:45 +0100
909
+ Processing by ParametersController#index as HTML
910
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
911
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 15:02:17 +0100
912
+ Processing by ParametersController#index as HTML
913
+ Parameters: {"per_page"=>"20"}
914
+ Completed 200 OK in 7ms (Views: 0.2ms | ActiveRecord: 0.0ms)
915
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 15:02:17 +0100
916
+ Processing by ParametersController#index as HTML
917
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
918
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 15:02:17 +0100
919
+ Processing by ParametersController#index as HTML
920
+ Parameters: {"per_page"=>"20"}
921
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
922
+ Started GET "/parameters?per_page=10" for 127.0.0.1 at 2016-02-12 15:02:17 +0100
923
+ Processing by ParametersController#index as HTML
924
+ Parameters: {"per_page"=>"10"}
925
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
926
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2016-02-12 15:02:18 +0100
927
+ Processing by ParametersController#index as HTML
928
+ Parameters: {"per_page"=>"20", "page"=>"5"}
929
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
930
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 15:02:18 +0100
931
+ Processing by ParametersController#index as HTML
932
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
933
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 15:02:18 +0100
934
+ Processing by ParametersController#create as HTML
935
+ Parameters: {"per_page"=>"20"}
936
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
937
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 15:02:18 +0100
938
+ Processing by ParametersController#create as HTML
939
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
940
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2016-02-12 15:02:18 +0100
941
+ Processing by ParametersController#index as HTML
942
+ Parameters: {"order"=>"created_at"}
943
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
944
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2016-02-12 15:02:18 +0100
945
+ Processing by ParametersController#index as HTML
946
+ Parameters: {"locale"=>"en"}
947
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
948
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 15:02:18 +0100
949
+ Processing by ParametersController#index as HTML
950
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
951
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 15:12:06 +0100
952
+ Processing by ParametersController#index as HTML
953
+ Parameters: {"per_page"=>"20"}
954
+ Completed 200 OK in 41ms (Views: 0.2ms | ActiveRecord: 0.0ms)
955
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 15:12:06 +0100
956
+ Processing by ParametersController#index as HTML
957
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
958
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 15:12:06 +0100
959
+ Processing by ParametersController#index as HTML
960
+ Parameters: {"per_page"=>"20"}
961
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
962
+ Started GET "/parameters?per_page=10" for 127.0.0.1 at 2016-02-12 15:12:06 +0100
963
+ Processing by ParametersController#index as HTML
964
+ Parameters: {"per_page"=>"10"}
965
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
966
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2016-02-12 15:12:06 +0100
967
+ Processing by ParametersController#index as HTML
968
+ Parameters: {"per_page"=>"20", "page"=>"5"}
969
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
970
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 15:12:06 +0100
971
+ Processing by ParametersController#index as HTML
972
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
973
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 15:12:06 +0100
974
+ Processing by ParametersController#create as HTML
975
+ Parameters: {"per_page"=>"20"}
976
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
977
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 15:12:06 +0100
978
+ Processing by ParametersController#create as HTML
979
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
980
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2016-02-12 15:12:06 +0100
981
+ Processing by ParametersController#index as HTML
982
+ Parameters: {"order"=>"created_at"}
983
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
984
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2016-02-12 15:12:06 +0100
985
+ Processing by ParametersController#index as HTML
986
+ Parameters: {"locale"=>"en"}
987
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
988
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 15:12:06 +0100
989
+ Processing by ParametersController#index as HTML
990
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
991
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 15:17:46 +0100
992
+ Processing by ParametersController#index as HTML
993
+ Parameters: {"per_page"=>"20"}
994
+ Completed 200 OK in 30ms (Views: 0.3ms | ActiveRecord: 0.0ms)
995
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 15:17:46 +0100
996
+ Processing by ParametersController#index as HTML
997
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
998
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 15:17:47 +0100
999
+ Processing by ParametersController#index as HTML
1000
+ Parameters: {"per_page"=>"20"}
1001
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1002
+ Started GET "/parameters?per_page=10" for 127.0.0.1 at 2016-02-12 15:17:47 +0100
1003
+ Processing by ParametersController#index as HTML
1004
+ Parameters: {"per_page"=>"10"}
1005
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1006
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2016-02-12 15:17:47 +0100
1007
+ Processing by ParametersController#index as HTML
1008
+ Parameters: {"per_page"=>"20", "page"=>"5"}
1009
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1010
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 15:17:47 +0100
1011
+ Processing by ParametersController#index as HTML
1012
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1013
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 15:17:47 +0100
1014
+ Processing by ParametersController#create as HTML
1015
+ Parameters: {"per_page"=>"20"}
1016
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1017
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 15:17:47 +0100
1018
+ Processing by ParametersController#create as HTML
1019
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1020
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2016-02-12 15:17:47 +0100
1021
+ Processing by ParametersController#index as HTML
1022
+ Parameters: {"order"=>"created_at"}
1023
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1024
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2016-02-12 15:17:47 +0100
1025
+ Processing by ParametersController#index as HTML
1026
+ Parameters: {"locale"=>"en"}
1027
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1028
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 15:17:47 +0100
1029
+ Processing by ParametersController#index as HTML
1030
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1031
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 15:22:20 +0100
1032
+ Processing by ParametersController#index as HTML
1033
+ Parameters: {"per_page"=>"20"}
1034
+ Completed 200 OK in 33ms (Views: 15.5ms | ActiveRecord: 0.0ms)
1035
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 15:22:20 +0100
1036
+ Processing by ParametersController#index as HTML
1037
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1038
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 15:22:20 +0100
1039
+ Processing by ParametersController#index as HTML
1040
+ Parameters: {"per_page"=>"20"}
1041
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1042
+ Started GET "/parameters?per_page=10" for 127.0.0.1 at 2016-02-12 15:22:20 +0100
1043
+ Processing by ParametersController#index as HTML
1044
+ Parameters: {"per_page"=>"10"}
1045
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1046
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2016-02-12 15:22:20 +0100
1047
+ Processing by ParametersController#index as HTML
1048
+ Parameters: {"per_page"=>"20", "page"=>"5"}
1049
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1050
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 15:22:20 +0100
1051
+ Processing by ParametersController#index as HTML
1052
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1053
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 15:22:20 +0100
1054
+ Processing by ParametersController#create as HTML
1055
+ Parameters: {"per_page"=>"20"}
1056
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1057
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 15:22:20 +0100
1058
+ Processing by ParametersController#create as HTML
1059
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1060
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2016-02-12 15:22:20 +0100
1061
+ Processing by ParametersController#index as HTML
1062
+ Parameters: {"order"=>"created_at"}
1063
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1064
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2016-02-12 15:22:20 +0100
1065
+ Processing by ParametersController#index as HTML
1066
+ Parameters: {"locale"=>"en"}
1067
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1068
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 15:22:20 +0100
1069
+ Processing by ParametersController#index as HTML
1070
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1071
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 15:22:45 +0100
1072
+ Processing by ParametersController#index as HTML
1073
+ Parameters: {"per_page"=>"20"}
1074
+ Completed 200 OK in 18ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1075
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 15:22:45 +0100
1076
+ Processing by ParametersController#index as HTML
1077
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1078
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 15:22:45 +0100
1079
+ Processing by ParametersController#index as HTML
1080
+ Parameters: {"per_page"=>"20"}
1081
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1082
+ Started GET "/parameters?per_page=10" for 127.0.0.1 at 2016-02-12 15:22:45 +0100
1083
+ Processing by ParametersController#index as HTML
1084
+ Parameters: {"per_page"=>"10"}
1085
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1086
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2016-02-12 15:22:45 +0100
1087
+ Processing by ParametersController#index as HTML
1088
+ Parameters: {"per_page"=>"20", "page"=>"5"}
1089
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1090
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 15:22:45 +0100
1091
+ Processing by ParametersController#index as HTML
1092
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1093
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 15:22:45 +0100
1094
+ Processing by ParametersController#create as HTML
1095
+ Parameters: {"per_page"=>"20"}
1096
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1097
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 15:22:45 +0100
1098
+ Processing by ParametersController#create as HTML
1099
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1100
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2016-02-12 15:22:45 +0100
1101
+ Processing by ParametersController#index as HTML
1102
+ Parameters: {"order"=>"created_at"}
1103
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1104
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2016-02-12 15:22:45 +0100
1105
+ Processing by ParametersController#index as HTML
1106
+ Parameters: {"locale"=>"en"}
1107
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1108
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 15:22:45 +0100
1109
+ Processing by ParametersController#index as HTML
1110
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1111
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 15:22:49 +0100
1112
+ Processing by ParametersController#index as HTML
1113
+ Parameters: {"per_page"=>"20"}
1114
+ Completed 200 OK in 7ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1115
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 15:22:49 +0100
1116
+ Processing by ParametersController#index as HTML
1117
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1118
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 15:22:49 +0100
1119
+ Processing by ParametersController#index as HTML
1120
+ Parameters: {"per_page"=>"20"}
1121
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1122
+ Started GET "/parameters?per_page=10" for 127.0.0.1 at 2016-02-12 15:22:49 +0100
1123
+ Processing by ParametersController#index as HTML
1124
+ Parameters: {"per_page"=>"10"}
1125
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1126
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2016-02-12 15:22:49 +0100
1127
+ Processing by ParametersController#index as HTML
1128
+ Parameters: {"per_page"=>"20", "page"=>"5"}
1129
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1130
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 15:22:49 +0100
1131
+ Processing by ParametersController#index as HTML
1132
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1133
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 15:22:49 +0100
1134
+ Processing by ParametersController#create as HTML
1135
+ Parameters: {"per_page"=>"20"}
1136
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1137
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 15:22:49 +0100
1138
+ Processing by ParametersController#create as HTML
1139
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1140
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2016-02-12 15:22:49 +0100
1141
+ Processing by ParametersController#index as HTML
1142
+ Parameters: {"order"=>"created_at"}
1143
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1144
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2016-02-12 15:22:49 +0100
1145
+ Processing by ParametersController#index as HTML
1146
+ Parameters: {"locale"=>"en"}
1147
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1148
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 15:22:49 +0100
1149
+ Processing by ParametersController#index as HTML
1150
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1151
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 15:23:34 +0100
1152
+ Processing by ParametersController#index as HTML
1153
+ Parameters: {"per_page"=>"20"}
1154
+ Completed 200 OK in 7ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1155
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 15:23:34 +0100
1156
+ Processing by ParametersController#index as HTML
1157
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1158
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 15:23:34 +0100
1159
+ Processing by ParametersController#index as HTML
1160
+ Parameters: {"per_page"=>"20"}
1161
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1162
+ Started GET "/parameters?per_page=10" for 127.0.0.1 at 2016-02-12 15:23:34 +0100
1163
+ Processing by ParametersController#index as HTML
1164
+ Parameters: {"per_page"=>"10"}
1165
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1166
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2016-02-12 15:23:34 +0100
1167
+ Processing by ParametersController#index as HTML
1168
+ Parameters: {"per_page"=>"20", "page"=>"5"}
1169
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1170
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 15:23:34 +0100
1171
+ Processing by ParametersController#index as HTML
1172
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1173
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 15:23:34 +0100
1174
+ Processing by ParametersController#create as HTML
1175
+ Parameters: {"per_page"=>"20"}
1176
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1177
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 15:23:34 +0100
1178
+ Processing by ParametersController#create as HTML
1179
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1180
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2016-02-12 15:23:34 +0100
1181
+ Processing by ParametersController#index as HTML
1182
+ Parameters: {"order"=>"created_at"}
1183
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1184
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2016-02-12 15:23:34 +0100
1185
+ Processing by ParametersController#index as HTML
1186
+ Parameters: {"locale"=>"en"}
1187
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1188
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 15:23:34 +0100
1189
+ Processing by ParametersController#index as HTML
1190
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1191
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 15:27:45 +0100
1192
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 15:27:45 +0100
1193
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2016-02-12 15:27:45 +0100
1194
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 15:27:45 +0100
1195
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2016-02-12 15:27:45 +0100
1196
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2016-02-12 15:27:45 +0100
1197
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 15:28:09 +0100
1198
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 15:28:09 +0100
1199
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2016-02-12 15:28:09 +0100
1200
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 15:28:09 +0100
1201
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2016-02-12 15:28:09 +0100
1202
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2016-02-12 15:28:09 +0100
1203
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 15:28:18 +0100
1204
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 15:28:18 +0100
1205
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2016-02-12 15:28:18 +0100
1206
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 15:28:18 +0100
1207
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2016-02-12 15:28:18 +0100
1208
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2016-02-12 15:28:18 +0100
1209
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 15:28:54 +0100
1210
+ Processing by ParametersController#index as HTML
1211
+ Parameters: {"per_page"=>"20"}
1212
+ Completed 200 OK in 36ms (Views: 16.4ms | ActiveRecord: 0.0ms)
1213
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 15:28:54 +0100
1214
+ Processing by ParametersController#index as HTML
1215
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1216
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 15:28:54 +0100
1217
+ Processing by ParametersController#index as HTML
1218
+ Parameters: {"per_page"=>"20"}
1219
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1220
+ Started GET "/parameters?per_page=10" for 127.0.0.1 at 2016-02-12 15:28:54 +0100
1221
+ Processing by ParametersController#index as HTML
1222
+ Parameters: {"per_page"=>"10"}
1223
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1224
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2016-02-12 15:28:54 +0100
1225
+ Processing by ParametersController#index as HTML
1226
+ Parameters: {"per_page"=>"20", "page"=>"5"}
1227
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1228
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 15:28:54 +0100
1229
+ Processing by ParametersController#index as HTML
1230
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1231
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 15:28:54 +0100
1232
+ Processing by ParametersController#create as HTML
1233
+ Parameters: {"per_page"=>"20"}
1234
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1235
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 15:28:54 +0100
1236
+ Processing by ParametersController#create as HTML
1237
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1238
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2016-02-12 15:28:54 +0100
1239
+ Processing by ParametersController#index as HTML
1240
+ Parameters: {"order"=>"created_at"}
1241
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1242
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2016-02-12 15:28:54 +0100
1243
+ Processing by ParametersController#index as HTML
1244
+ Parameters: {"locale"=>"en"}
1245
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1246
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 15:28:54 +0100
1247
+ Processing by ParametersController#index as HTML
1248
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1249
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 15:29:05 +0100
1250
+ Processing by ParametersController#index as HTML
1251
+ Parameters: {"per_page"=>"20"}
1252
+ Completed 200 OK in 23ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1253
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 15:29:05 +0100
1254
+ Processing by ParametersController#index as HTML
1255
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1256
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 15:29:05 +0100
1257
+ Processing by ParametersController#index as HTML
1258
+ Parameters: {"per_page"=>"20"}
1259
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1260
+ Started GET "/parameters?per_page=10" for 127.0.0.1 at 2016-02-12 15:29:05 +0100
1261
+ Processing by ParametersController#index as HTML
1262
+ Parameters: {"per_page"=>"10"}
1263
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1264
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2016-02-12 15:29:05 +0100
1265
+ Processing by ParametersController#index as HTML
1266
+ Parameters: {"per_page"=>"20", "page"=>"5"}
1267
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1268
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 15:29:05 +0100
1269
+ Processing by ParametersController#index as HTML
1270
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1271
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 15:29:05 +0100
1272
+ Processing by ParametersController#create as HTML
1273
+ Parameters: {"per_page"=>"20"}
1274
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1275
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 15:29:05 +0100
1276
+ Processing by ParametersController#create as HTML
1277
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1278
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2016-02-12 15:29:05 +0100
1279
+ Processing by ParametersController#index as HTML
1280
+ Parameters: {"order"=>"created_at"}
1281
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1282
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2016-02-12 15:29:05 +0100
1283
+ Processing by ParametersController#index as HTML
1284
+ Parameters: {"locale"=>"en"}
1285
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1286
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 15:29:05 +0100
1287
+ Processing by ParametersController#index as HTML
1288
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1289
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 15:33:03 +0100
1290
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 15:33:04 +0100
1291
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2016-02-12 15:33:04 +0100
1292
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 15:33:04 +0100
1293
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2016-02-12 15:33:04 +0100
1294
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2016-02-12 15:33:04 +0100
1295
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 15:33:24 +0100
1296
+ Processing by ParametersController#index as HTML
1297
+ Parameters: {"per_page"=>"20"}
1298
+ Completed 200 OK in 68ms (Views: 27.9ms | ActiveRecord: 0.0ms)
1299
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 15:33:24 +0100
1300
+ Processing by ParametersController#index as HTML
1301
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1302
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 15:33:24 +0100
1303
+ Processing by ParametersController#index as HTML
1304
+ Parameters: {"per_page"=>"20"}
1305
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1306
+ Started GET "/parameters?per_page=10" for 127.0.0.1 at 2016-02-12 15:33:24 +0100
1307
+ Processing by ParametersController#index as HTML
1308
+ Parameters: {"per_page"=>"10"}
1309
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1310
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2016-02-12 15:33:24 +0100
1311
+ Processing by ParametersController#index as HTML
1312
+ Parameters: {"per_page"=>"20", "page"=>"5"}
1313
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1314
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 15:33:24 +0100
1315
+ Processing by ParametersController#index as HTML
1316
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1317
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 15:33:24 +0100
1318
+ Processing by ParametersController#create as HTML
1319
+ Parameters: {"per_page"=>"20"}
1320
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1321
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 15:33:24 +0100
1322
+ Processing by ParametersController#create as HTML
1323
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1324
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2016-02-12 15:33:24 +0100
1325
+ Processing by ParametersController#index as HTML
1326
+ Parameters: {"order"=>"created_at"}
1327
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1328
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2016-02-12 15:33:24 +0100
1329
+ Processing by ParametersController#index as HTML
1330
+ Parameters: {"locale"=>"en"}
1331
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1332
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 15:33:24 +0100
1333
+ Processing by ParametersController#index as HTML
1334
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1335
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 15:34:02 +0100
1336
+ Processing by ParametersController#index as HTML
1337
+ Parameters: {"per_page"=>"20"}
1338
+ Completed 200 OK in 38ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1339
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 15:34:02 +0100
1340
+ Processing by ParametersController#index as HTML
1341
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1342
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 15:34:03 +0100
1343
+ Processing by ParametersController#index as HTML
1344
+ Parameters: {"per_page"=>"20"}
1345
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1346
+ Started GET "/parameters?per_page=10" for 127.0.0.1 at 2016-02-12 15:34:03 +0100
1347
+ Processing by ParametersController#index as HTML
1348
+ Parameters: {"per_page"=>"10"}
1349
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1350
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2016-02-12 15:34:03 +0100
1351
+ Processing by ParametersController#index as HTML
1352
+ Parameters: {"per_page"=>"20", "page"=>"5"}
1353
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1354
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 15:34:03 +0100
1355
+ Processing by ParametersController#index as HTML
1356
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1357
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 15:34:03 +0100
1358
+ Processing by ParametersController#create as HTML
1359
+ Parameters: {"per_page"=>"20"}
1360
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1361
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 15:34:03 +0100
1362
+ Processing by ParametersController#create as HTML
1363
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1364
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2016-02-12 15:34:03 +0100
1365
+ Processing by ParametersController#index as HTML
1366
+ Parameters: {"order"=>"created_at"}
1367
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1368
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2016-02-12 15:34:03 +0100
1369
+ Processing by ParametersController#index as HTML
1370
+ Parameters: {"locale"=>"en"}
1371
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1372
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 15:34:03 +0100
1373
+ Processing by ParametersController#index as HTML
1374
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1375
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 15:46:07 +0100
1376
+ Processing by ParametersController#index as HTML
1377
+ Parameters: {"per_page"=>"20"}
1378
+ Completed 200 OK in 23ms (Views: 14.4ms | ActiveRecord: 0.0ms)
1379
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 15:46:07 +0100
1380
+ Processing by ParametersController#index as HTML
1381
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1382
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 15:46:07 +0100
1383
+ Processing by ParametersController#index as HTML
1384
+ Parameters: {"per_page"=>"20"}
1385
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1386
+ Started GET "/parameters?per_page=10" for 127.0.0.1 at 2016-02-12 15:46:07 +0100
1387
+ Processing by ParametersController#index as HTML
1388
+ Parameters: {"per_page"=>"10"}
1389
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1390
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2016-02-12 15:46:07 +0100
1391
+ Processing by ParametersController#index as HTML
1392
+ Parameters: {"per_page"=>"20", "page"=>"5"}
1393
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1394
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 15:46:07 +0100
1395
+ Processing by ParametersController#index as HTML
1396
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1397
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 15:46:07 +0100
1398
+ Processing by ParametersController#create as HTML
1399
+ Parameters: {"per_page"=>"20"}
1400
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1401
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 15:46:07 +0100
1402
+ Processing by ParametersController#create as HTML
1403
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1404
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2016-02-12 15:46:07 +0100
1405
+ Processing by ParametersController#index as HTML
1406
+ Parameters: {"order"=>"created_at"}
1407
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1408
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2016-02-12 15:46:07 +0100
1409
+ Processing by ParametersController#index as HTML
1410
+ Parameters: {"locale"=>"en"}
1411
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1412
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 15:46:07 +0100
1413
+ Processing by ParametersController#index as HTML
1414
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1415
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 15:47:12 +0100
1416
+ Processing by ParametersController#index as HTML
1417
+ Parameters: {"per_page"=>"20"}
1418
+ Completed 200 OK in 19ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1419
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 15:47:12 +0100
1420
+ Processing by ParametersController#index as HTML
1421
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1422
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 15:47:12 +0100
1423
+ Processing by ParametersController#index as HTML
1424
+ Parameters: {"per_page"=>"20"}
1425
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1426
+ Started GET "/parameters?per_page=10" for 127.0.0.1 at 2016-02-12 15:47:12 +0100
1427
+ Processing by ParametersController#index as HTML
1428
+ Parameters: {"per_page"=>"10"}
1429
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1430
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2016-02-12 15:47:12 +0100
1431
+ Processing by ParametersController#index as HTML
1432
+ Parameters: {"per_page"=>"20", "page"=>"5"}
1433
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1434
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 15:47:12 +0100
1435
+ Processing by ParametersController#index as HTML
1436
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1437
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 15:47:12 +0100
1438
+ Processing by ParametersController#create as HTML
1439
+ Parameters: {"per_page"=>"20"}
1440
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1441
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 15:47:12 +0100
1442
+ Processing by ParametersController#create as HTML
1443
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1444
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2016-02-12 15:47:12 +0100
1445
+ Processing by ParametersController#index as HTML
1446
+ Parameters: {"order"=>"created_at"}
1447
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1448
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2016-02-12 15:47:12 +0100
1449
+ Processing by ParametersController#index as HTML
1450
+ Parameters: {"locale"=>"en"}
1451
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1452
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 15:47:12 +0100
1453
+ Processing by ParametersController#index as HTML
1454
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1455
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 15:47:20 +0100
1456
+ Processing by ParametersController#index as HTML
1457
+ Parameters: {"per_page"=>"20"}
1458
+ Completed 200 OK in 18ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1459
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 15:47:20 +0100
1460
+ Processing by ParametersController#index as HTML
1461
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1462
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 15:47:20 +0100
1463
+ Processing by ParametersController#index as HTML
1464
+ Parameters: {"per_page"=>"20"}
1465
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1466
+ Started GET "/parameters?per_page=10" for 127.0.0.1 at 2016-02-12 15:47:20 +0100
1467
+ Processing by ParametersController#index as HTML
1468
+ Parameters: {"per_page"=>"10"}
1469
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1470
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2016-02-12 15:47:20 +0100
1471
+ Processing by ParametersController#index as HTML
1472
+ Parameters: {"per_page"=>"20", "page"=>"5"}
1473
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1474
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 15:47:20 +0100
1475
+ Processing by ParametersController#index as HTML
1476
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1477
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 15:47:20 +0100
1478
+ Processing by ParametersController#create as HTML
1479
+ Parameters: {"per_page"=>"20"}
1480
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1481
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 15:47:20 +0100
1482
+ Processing by ParametersController#create as HTML
1483
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1484
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2016-02-12 15:47:20 +0100
1485
+ Processing by ParametersController#index as HTML
1486
+ Parameters: {"order"=>"created_at"}
1487
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1488
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2016-02-12 15:47:20 +0100
1489
+ Processing by ParametersController#index as HTML
1490
+ Parameters: {"locale"=>"en"}
1491
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1492
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 15:47:20 +0100
1493
+ Processing by ParametersController#index as HTML
1494
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1495
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 15:47:37 +0100
1496
+ Processing by ParametersController#index as HTML
1497
+ Parameters: {"per_page"=>"20"}
1498
+ Completed 200 OK in 41ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1499
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 15:47:37 +0100
1500
+ Processing by ParametersController#index as HTML
1501
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1502
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 15:47:37 +0100
1503
+ Processing by ParametersController#index as HTML
1504
+ Parameters: {"per_page"=>"20"}
1505
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1506
+ Started GET "/parameters?per_page=10" for 127.0.0.1 at 2016-02-12 15:47:37 +0100
1507
+ Processing by ParametersController#index as HTML
1508
+ Parameters: {"per_page"=>"10"}
1509
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1510
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2016-02-12 15:47:37 +0100
1511
+ Processing by ParametersController#index as HTML
1512
+ Parameters: {"per_page"=>"20", "page"=>"5"}
1513
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1514
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 15:47:37 +0100
1515
+ Processing by ParametersController#index as HTML
1516
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1517
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 15:47:37 +0100
1518
+ Processing by ParametersController#create as HTML
1519
+ Parameters: {"per_page"=>"20"}
1520
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1521
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 15:47:37 +0100
1522
+ Processing by ParametersController#create as HTML
1523
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1524
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2016-02-12 15:47:37 +0100
1525
+ Processing by ParametersController#index as HTML
1526
+ Parameters: {"order"=>"created_at"}
1527
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1528
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2016-02-12 15:47:37 +0100
1529
+ Processing by ParametersController#index as HTML
1530
+ Parameters: {"locale"=>"en"}
1531
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1532
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 15:47:37 +0100
1533
+ Processing by ParametersController#index as HTML
1534
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1535
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 15:53:20 +0100
1536
+ Processing by ParametersController#index as HTML
1537
+ Parameters: {"per_page"=>"20"}
1538
+ Completed 200 OK in 78ms (Views: 15.9ms | ActiveRecord: 0.0ms)
1539
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 15:53:20 +0100
1540
+ Processing by ParametersController#index as HTML
1541
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1542
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 15:53:20 +0100
1543
+ Processing by ParametersController#index as HTML
1544
+ Parameters: {"per_page"=>"20"}
1545
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1546
+ Started GET "/parameters?per_page=10" for 127.0.0.1 at 2016-02-12 15:53:20 +0100
1547
+ Processing by ParametersController#index as HTML
1548
+ Parameters: {"per_page"=>"10"}
1549
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1550
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2016-02-12 15:53:20 +0100
1551
+ Processing by ParametersController#index as HTML
1552
+ Parameters: {"per_page"=>"20", "page"=>"5"}
1553
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1554
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 15:53:20 +0100
1555
+ Processing by ParametersController#index as HTML
1556
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1557
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 15:53:20 +0100
1558
+ Processing by ParametersController#create as HTML
1559
+ Parameters: {"per_page"=>"20"}
1560
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1561
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 15:53:20 +0100
1562
+ Processing by ParametersController#create as HTML
1563
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1564
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2016-02-12 15:53:20 +0100
1565
+ Processing by ParametersController#index as HTML
1566
+ Parameters: {"order"=>"created_at"}
1567
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1568
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2016-02-12 15:53:20 +0100
1569
+ Processing by ParametersController#index as HTML
1570
+ Parameters: {"locale"=>"en"}
1571
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1572
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 15:53:20 +0100
1573
+ Processing by ParametersController#index as HTML
1574
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1575
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 15:54:45 +0100
1576
+ Processing by ParametersController#index as HTML
1577
+ Parameters: {"per_page"=>"20"}
1578
+ Completed 200 OK in 19ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1579
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 15:54:45 +0100
1580
+ Processing by ParametersController#index as HTML
1581
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1582
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 15:54:45 +0100
1583
+ Processing by ParametersController#index as HTML
1584
+ Parameters: {"per_page"=>"20"}
1585
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1586
+ Started GET "/parameters?per_page=10" for 127.0.0.1 at 2016-02-12 15:54:45 +0100
1587
+ Processing by ParametersController#index as HTML
1588
+ Parameters: {"per_page"=>"10"}
1589
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1590
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2016-02-12 15:54:45 +0100
1591
+ Processing by ParametersController#index as HTML
1592
+ Parameters: {"per_page"=>"20", "page"=>"5"}
1593
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1594
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 15:54:45 +0100
1595
+ Processing by ParametersController#index as HTML
1596
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1597
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 15:54:45 +0100
1598
+ Processing by ParametersController#create as HTML
1599
+ Parameters: {"per_page"=>"20"}
1600
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1601
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 15:54:45 +0100
1602
+ Processing by ParametersController#create as HTML
1603
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1604
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2016-02-12 15:54:45 +0100
1605
+ Processing by ParametersController#index as HTML
1606
+ Parameters: {"order"=>"created_at"}
1607
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1608
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2016-02-12 15:54:45 +0100
1609
+ Processing by ParametersController#index as HTML
1610
+ Parameters: {"locale"=>"en"}
1611
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1612
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 15:54:45 +0100
1613
+ Processing by ParametersController#index as HTML
1614
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1615
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 15:55:48 +0100
1616
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 15:55:49 +0100
1617
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2016-02-12 15:55:49 +0100
1618
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 15:55:49 +0100
1619
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2016-02-12 15:55:49 +0100
1620
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2016-02-12 15:55:49 +0100
1621
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 16:02:36 +0100
1622
+ Processing by ParametersController#index as HTML
1623
+ Parameters: {"per_page"=>"20"}
1624
+ Completed 200 OK in 74ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1625
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 16:02:37 +0100
1626
+ Processing by ParametersController#index as HTML
1627
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1628
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 16:02:37 +0100
1629
+ Processing by ParametersController#index as HTML
1630
+ Parameters: {"per_page"=>"20"}
1631
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1632
+ Started GET "/parameters?per_page=10" for 127.0.0.1 at 2016-02-12 16:02:37 +0100
1633
+ Processing by ParametersController#index as HTML
1634
+ Parameters: {"per_page"=>"10"}
1635
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1636
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2016-02-12 16:02:37 +0100
1637
+ Processing by ParametersController#index as HTML
1638
+ Parameters: {"per_page"=>"20", "page"=>"5"}
1639
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1640
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 16:02:37 +0100
1641
+ Processing by ParametersController#index as HTML
1642
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1643
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 16:02:37 +0100
1644
+ Processing by ParametersController#create as HTML
1645
+ Parameters: {"per_page"=>"20"}
1646
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1647
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 16:02:37 +0100
1648
+ Processing by ParametersController#create as HTML
1649
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1650
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2016-02-12 16:02:37 +0100
1651
+ Processing by ParametersController#index as HTML
1652
+ Parameters: {"order"=>"created_at"}
1653
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1654
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2016-02-12 16:02:37 +0100
1655
+ Processing by ParametersController#index as HTML
1656
+ Parameters: {"locale"=>"en"}
1657
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1658
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 16:02:37 +0100
1659
+ Processing by ParametersController#index as HTML
1660
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1661
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 16:20:02 +0100
1662
+ Processing by ParametersController#index as HTML
1663
+ Parameters: {"per_page"=>"20"}
1664
+ Completed 200 OK in 7ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1665
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 16:20:02 +0100
1666
+ Processing by ParametersController#index as HTML
1667
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1668
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 16:20:02 +0100
1669
+ Processing by ParametersController#index as HTML
1670
+ Parameters: {"per_page"=>"20"}
1671
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1672
+ Started GET "/parameters?per_page=10" for 127.0.0.1 at 2016-02-12 16:20:02 +0100
1673
+ Processing by ParametersController#index as HTML
1674
+ Parameters: {"per_page"=>"10"}
1675
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1676
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2016-02-12 16:20:02 +0100
1677
+ Processing by ParametersController#index as HTML
1678
+ Parameters: {"per_page"=>"20", "page"=>"5"}
1679
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1680
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 16:20:02 +0100
1681
+ Processing by ParametersController#index as HTML
1682
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1683
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 16:20:02 +0100
1684
+ Processing by ParametersController#create as HTML
1685
+ Parameters: {"per_page"=>"20"}
1686
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1687
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 16:20:02 +0100
1688
+ Processing by ParametersController#create as HTML
1689
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1690
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2016-02-12 16:20:02 +0100
1691
+ Processing by ParametersController#index as HTML
1692
+ Parameters: {"order"=>"created_at"}
1693
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1694
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2016-02-12 16:20:02 +0100
1695
+ Processing by ParametersController#index as HTML
1696
+ Parameters: {"locale"=>"en"}
1697
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1698
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 16:20:02 +0100
1699
+ Processing by ParametersController#index as HTML
1700
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1701
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 16:26:44 +0100
1702
+ Processing by ParametersController#index as HTML
1703
+ Parameters: {"per_page"=>"20"}
1704
+ Completed 200 OK in 29ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1705
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 16:26:44 +0100
1706
+ Processing by ParametersController#index as HTML
1707
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1708
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 16:26:44 +0100
1709
+ Processing by ParametersController#index as HTML
1710
+ Parameters: {"per_page"=>"20"}
1711
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1712
+ Started GET "/parameters?per_page=10" for 127.0.0.1 at 2016-02-12 16:26:44 +0100
1713
+ Processing by ParametersController#index as HTML
1714
+ Parameters: {"per_page"=>"10"}
1715
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1716
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2016-02-12 16:26:44 +0100
1717
+ Processing by ParametersController#index as HTML
1718
+ Parameters: {"per_page"=>"20", "page"=>"5"}
1719
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1720
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 16:26:44 +0100
1721
+ Processing by ParametersController#index as HTML
1722
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1723
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 16:26:44 +0100
1724
+ Processing by ParametersController#create as HTML
1725
+ Parameters: {"per_page"=>"20"}
1726
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1727
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 16:26:44 +0100
1728
+ Processing by ParametersController#create as HTML
1729
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1730
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2016-02-12 16:26:44 +0100
1731
+ Processing by ParametersController#index as HTML
1732
+ Parameters: {"order"=>"created_at"}
1733
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1734
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2016-02-12 16:26:44 +0100
1735
+ Processing by ParametersController#index as HTML
1736
+ Parameters: {"locale"=>"en"}
1737
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1738
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 16:26:44 +0100
1739
+ Processing by ParametersController#index as HTML
1740
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1741
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 16:49:57 +0100
1742
+ Processing by ParametersController#index as HTML
1743
+ Parameters: {"per_page"=>"20"}
1744
+ Completed 200 OK in 9ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1745
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 16:49:57 +0100
1746
+ Processing by ParametersController#index as HTML
1747
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1748
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 16:49:57 +0100
1749
+ Processing by ParametersController#index as HTML
1750
+ Parameters: {"per_page"=>"20"}
1751
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1752
+ Started GET "/parameters?per_page=10" for 127.0.0.1 at 2016-02-12 16:49:57 +0100
1753
+ Processing by ParametersController#index as HTML
1754
+ Parameters: {"per_page"=>"10"}
1755
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1756
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2016-02-12 16:49:57 +0100
1757
+ Processing by ParametersController#index as HTML
1758
+ Parameters: {"per_page"=>"20", "page"=>"5"}
1759
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1760
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 16:49:57 +0100
1761
+ Processing by ParametersController#index as HTML
1762
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1763
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 16:49:57 +0100
1764
+ Processing by ParametersController#create as HTML
1765
+ Parameters: {"per_page"=>"20"}
1766
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1767
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 16:49:57 +0100
1768
+ Processing by ParametersController#create as HTML
1769
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1770
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2016-02-12 16:49:57 +0100
1771
+ Processing by ParametersController#index as HTML
1772
+ Parameters: {"order"=>"created_at"}
1773
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1774
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2016-02-12 16:49:57 +0100
1775
+ Processing by ParametersController#index as HTML
1776
+ Parameters: {"locale"=>"en"}
1777
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1778
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 16:49:57 +0100
1779
+ Processing by ParametersController#index as HTML
1780
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1781
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 16:50:44 +0100
1782
+ Processing by ParametersController#index as HTML
1783
+ Parameters: {"per_page"=>"20"}
1784
+ Completed 200 OK in 7ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1785
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 16:50:44 +0100
1786
+ Processing by ParametersController#index as HTML
1787
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1788
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 16:50:44 +0100
1789
+ Processing by ParametersController#index as HTML
1790
+ Parameters: {"per_page"=>"20"}
1791
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1792
+ Started GET "/parameters?per_page=10" for 127.0.0.1 at 2016-02-12 16:50:44 +0100
1793
+ Processing by ParametersController#index as HTML
1794
+ Parameters: {"per_page"=>"10"}
1795
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1796
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2016-02-12 16:50:44 +0100
1797
+ Processing by ParametersController#index as HTML
1798
+ Parameters: {"per_page"=>"20", "page"=>"5"}
1799
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1800
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 16:50:44 +0100
1801
+ Processing by ParametersController#index as HTML
1802
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1803
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 16:50:44 +0100
1804
+ Processing by ParametersController#create as HTML
1805
+ Parameters: {"per_page"=>"20"}
1806
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1807
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 16:50:44 +0100
1808
+ Processing by ParametersController#create as HTML
1809
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1810
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2016-02-12 16:50:44 +0100
1811
+ Processing by ParametersController#index as HTML
1812
+ Parameters: {"order"=>"created_at"}
1813
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1814
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2016-02-12 16:50:44 +0100
1815
+ Processing by ParametersController#index as HTML
1816
+ Parameters: {"locale"=>"en"}
1817
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1818
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 16:50:44 +0100
1819
+ Processing by ParametersController#index as HTML
1820
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1821
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 17:39:59 +0100
1822
+ Processing by ParametersController#index as HTML
1823
+ Parameters: {"per_page"=>"20"}
1824
+ Completed 200 OK in 28ms (Views: 18.0ms | ActiveRecord: 0.0ms)
1825
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 17:39:59 +0100
1826
+ Processing by ParametersController#index as HTML
1827
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1828
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 17:39:59 +0100
1829
+ Processing by ParametersController#index as HTML
1830
+ Parameters: {"per_page"=>"20"}
1831
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1832
+ Started GET "/parameters?per_page=10" for 127.0.0.1 at 2016-02-12 17:39:59 +0100
1833
+ Processing by ParametersController#index as HTML
1834
+ Parameters: {"per_page"=>"10"}
1835
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1836
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2016-02-12 17:39:59 +0100
1837
+ Processing by ParametersController#index as HTML
1838
+ Parameters: {"per_page"=>"20", "page"=>"5"}
1839
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1840
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 17:39:59 +0100
1841
+ Processing by ParametersController#index as HTML
1842
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1843
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 17:39:59 +0100
1844
+ Processing by ParametersController#create as HTML
1845
+ Parameters: {"per_page"=>"20"}
1846
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1847
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 17:39:59 +0100
1848
+ Processing by ParametersController#create as HTML
1849
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1850
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2016-02-12 17:39:59 +0100
1851
+ Processing by ParametersController#index as HTML
1852
+ Parameters: {"order"=>"created_at"}
1853
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1854
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2016-02-12 17:39:59 +0100
1855
+ Processing by ParametersController#index as HTML
1856
+ Parameters: {"locale"=>"en"}
1857
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1858
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 17:39:59 +0100
1859
+ Processing by ParametersController#index as HTML
1860
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1861
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 17:44:06 +0100
1862
+ Processing by ParametersController#index as HTML
1863
+ Parameters: {"per_page"=>"20"}
1864
+ Completed 200 OK in 24ms (Views: 0.5ms | ActiveRecord: 0.0ms)
1865
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 17:44:06 +0100
1866
+ Processing by ParametersController#index as HTML
1867
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1868
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 17:44:06 +0100
1869
+ Processing by ParametersController#index as HTML
1870
+ Parameters: {"per_page"=>"20"}
1871
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1872
+ Started GET "/parameters?per_page=10" for 127.0.0.1 at 2016-02-12 17:44:06 +0100
1873
+ Processing by ParametersController#index as HTML
1874
+ Parameters: {"per_page"=>"10"}
1875
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1876
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2016-02-12 17:44:06 +0100
1877
+ Processing by ParametersController#index as HTML
1878
+ Parameters: {"per_page"=>"20", "page"=>"5"}
1879
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1880
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 17:44:06 +0100
1881
+ Processing by ParametersController#index as HTML
1882
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1883
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 17:44:06 +0100
1884
+ Processing by ParametersController#create as HTML
1885
+ Parameters: {"per_page"=>"20"}
1886
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1887
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 17:44:06 +0100
1888
+ Processing by ParametersController#create as HTML
1889
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1890
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2016-02-12 17:44:06 +0100
1891
+ Processing by ParametersController#index as HTML
1892
+ Parameters: {"order"=>"created_at"}
1893
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1894
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2016-02-12 17:44:06 +0100
1895
+ Processing by ParametersController#index as HTML
1896
+ Parameters: {"locale"=>"en"}
1897
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1898
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 17:44:06 +0100
1899
+ Processing by ParametersController#index as HTML
1900
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1901
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 17:48:17 +0100
1902
+ Processing by ParametersController#index as HTML
1903
+ Parameters: {"per_page"=>"20"}
1904
+ Completed 200 OK in 28ms (Views: 17.6ms | ActiveRecord: 0.0ms)
1905
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 17:48:17 +0100
1906
+ Processing by ParametersController#index as HTML
1907
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1908
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 17:48:17 +0100
1909
+ Processing by ParametersController#index as HTML
1910
+ Parameters: {"per_page"=>"20"}
1911
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1912
+ Started GET "/parameters?per_page=10" for 127.0.0.1 at 2016-02-12 17:48:17 +0100
1913
+ Processing by ParametersController#index as HTML
1914
+ Parameters: {"per_page"=>"10"}
1915
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1916
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2016-02-12 17:48:17 +0100
1917
+ Processing by ParametersController#index as HTML
1918
+ Parameters: {"per_page"=>"20", "page"=>"5"}
1919
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1920
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 17:48:17 +0100
1921
+ Processing by ParametersController#index as HTML
1922
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1923
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 17:48:17 +0100
1924
+ Processing by ParametersController#create as HTML
1925
+ Parameters: {"per_page"=>"20"}
1926
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1927
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 17:48:17 +0100
1928
+ Processing by ParametersController#create as HTML
1929
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1930
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2016-02-12 17:48:17 +0100
1931
+ Processing by ParametersController#index as HTML
1932
+ Parameters: {"order"=>"created_at"}
1933
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1934
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2016-02-12 17:48:17 +0100
1935
+ Processing by ParametersController#index as HTML
1936
+ Parameters: {"locale"=>"en"}
1937
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1938
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 17:48:17 +0100
1939
+ Processing by ParametersController#index as HTML
1940
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1941
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 17:52:37 +0100
1942
+ Processing by ParametersController#index as HTML
1943
+ Parameters: {"per_page"=>"20"}
1944
+ Completed 200 OK in 10ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1945
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 17:52:37 +0100
1946
+ Processing by ParametersController#index as HTML
1947
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1948
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 17:52:37 +0100
1949
+ Processing by ParametersController#index as HTML
1950
+ Parameters: {"per_page"=>"20"}
1951
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1952
+ Started GET "/parameters?per_page=10" for 127.0.0.1 at 2016-02-12 17:52:37 +0100
1953
+ Processing by ParametersController#index as HTML
1954
+ Parameters: {"per_page"=>"10"}
1955
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1956
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2016-02-12 17:52:37 +0100
1957
+ Processing by ParametersController#index as HTML
1958
+ Parameters: {"per_page"=>"20", "page"=>"5"}
1959
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1960
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 17:52:37 +0100
1961
+ Processing by ParametersController#index as HTML
1962
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1963
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 17:52:37 +0100
1964
+ Processing by ParametersController#create as HTML
1965
+ Parameters: {"per_page"=>"20"}
1966
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1967
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 17:52:37 +0100
1968
+ Processing by ParametersController#create as HTML
1969
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1970
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2016-02-12 17:52:37 +0100
1971
+ Processing by ParametersController#index as HTML
1972
+ Parameters: {"order"=>"created_at"}
1973
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1974
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2016-02-12 17:52:37 +0100
1975
+ Processing by ParametersController#index as HTML
1976
+ Parameters: {"locale"=>"en"}
1977
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1978
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 17:52:37 +0100
1979
+ Processing by ParametersController#index as HTML
1980
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1981
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 17:57:22 +0100
1982
+ Processing by ParametersController#index as HTML
1983
+ Parameters: {"per_page"=>"20"}
1984
+ Completed 200 OK in 26ms (Views: 0.3ms | ActiveRecord: 0.0ms)
1985
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 17:57:22 +0100
1986
+ Processing by ParametersController#index as HTML
1987
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1988
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 17:57:22 +0100
1989
+ Processing by ParametersController#index as HTML
1990
+ Parameters: {"per_page"=>"20"}
1991
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
1992
+ Started GET "/parameters?per_page=10" for 127.0.0.1 at 2016-02-12 17:57:22 +0100
1993
+ Processing by ParametersController#index as HTML
1994
+ Parameters: {"per_page"=>"10"}
1995
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
1996
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2016-02-12 17:57:22 +0100
1997
+ Processing by ParametersController#index as HTML
1998
+ Parameters: {"per_page"=>"20", "page"=>"5"}
1999
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2000
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 17:57:22 +0100
2001
+ Processing by ParametersController#index as HTML
2002
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2003
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 17:57:22 +0100
2004
+ Processing by ParametersController#create as HTML
2005
+ Parameters: {"per_page"=>"20"}
2006
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2007
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 17:57:22 +0100
2008
+ Processing by ParametersController#create as HTML
2009
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2010
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2016-02-12 17:57:22 +0100
2011
+ Processing by ParametersController#index as HTML
2012
+ Parameters: {"order"=>"created_at"}
2013
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2014
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2016-02-12 17:57:22 +0100
2015
+ Processing by ParametersController#index as HTML
2016
+ Parameters: {"locale"=>"en"}
2017
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2018
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 17:57:22 +0100
2019
+ Processing by ParametersController#index as HTML
2020
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2021
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 17:57:35 +0100
2022
+ Processing by ParametersController#index as HTML
2023
+ Parameters: {"per_page"=>"20"}
2024
+ Completed 200 OK in 35ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2025
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 17:57:35 +0100
2026
+ Processing by ParametersController#index as HTML
2027
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2028
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 17:57:35 +0100
2029
+ Processing by ParametersController#index as HTML
2030
+ Parameters: {"per_page"=>"20"}
2031
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2032
+ Started GET "/parameters?per_page=10" for 127.0.0.1 at 2016-02-12 17:57:35 +0100
2033
+ Processing by ParametersController#index as HTML
2034
+ Parameters: {"per_page"=>"10"}
2035
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2036
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2016-02-12 17:57:35 +0100
2037
+ Processing by ParametersController#index as HTML
2038
+ Parameters: {"per_page"=>"20", "page"=>"5"}
2039
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2040
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 17:57:35 +0100
2041
+ Processing by ParametersController#index as HTML
2042
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2043
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 17:57:35 +0100
2044
+ Processing by ParametersController#create as HTML
2045
+ Parameters: {"per_page"=>"20"}
2046
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2047
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 17:57:35 +0100
2048
+ Processing by ParametersController#create as HTML
2049
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2050
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2016-02-12 17:57:35 +0100
2051
+ Processing by ParametersController#index as HTML
2052
+ Parameters: {"order"=>"created_at"}
2053
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2054
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2016-02-12 17:57:35 +0100
2055
+ Processing by ParametersController#index as HTML
2056
+ Parameters: {"locale"=>"en"}
2057
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2058
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 17:57:35 +0100
2059
+ Processing by ParametersController#index as HTML
2060
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2061
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 18:00:38 +0100
2062
+ Processing by ParametersController#index as HTML
2063
+ Parameters: {"per_page"=>"20"}
2064
+ Completed 200 OK in 24ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2065
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 18:00:38 +0100
2066
+ Processing by ParametersController#index as HTML
2067
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2068
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 18:00:38 +0100
2069
+ Processing by ParametersController#index as HTML
2070
+ Parameters: {"per_page"=>"20"}
2071
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2072
+ Started GET "/parameters?per_page=10" for 127.0.0.1 at 2016-02-12 18:00:38 +0100
2073
+ Processing by ParametersController#index as HTML
2074
+ Parameters: {"per_page"=>"10"}
2075
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2076
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2016-02-12 18:00:38 +0100
2077
+ Processing by ParametersController#index as HTML
2078
+ Parameters: {"per_page"=>"20", "page"=>"5"}
2079
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2080
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 18:00:38 +0100
2081
+ Processing by ParametersController#index as HTML
2082
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2083
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 18:00:38 +0100
2084
+ Processing by ParametersController#create as HTML
2085
+ Parameters: {"per_page"=>"20"}
2086
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2087
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 18:00:38 +0100
2088
+ Processing by ParametersController#create as HTML
2089
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2090
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2016-02-12 18:00:38 +0100
2091
+ Processing by ParametersController#index as HTML
2092
+ Parameters: {"order"=>"created_at"}
2093
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2094
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2016-02-12 18:00:38 +0100
2095
+ Processing by ParametersController#index as HTML
2096
+ Parameters: {"locale"=>"en"}
2097
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2098
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 18:00:38 +0100
2099
+ Processing by ParametersController#index as HTML
2100
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2101
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 18:03:56 +0100
2102
+ Processing by ParametersController#index as HTML
2103
+ Parameters: {"per_page"=>"20"}
2104
+ Completed 200 OK in 10ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2105
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 18:03:56 +0100
2106
+ Processing by ParametersController#index as HTML
2107
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2108
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 18:03:56 +0100
2109
+ Processing by ParametersController#index as HTML
2110
+ Parameters: {"per_page"=>"20"}
2111
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2112
+ Started GET "/parameters?per_page=10" for 127.0.0.1 at 2016-02-12 18:03:56 +0100
2113
+ Processing by ParametersController#index as HTML
2114
+ Parameters: {"per_page"=>"10"}
2115
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2116
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2016-02-12 18:03:56 +0100
2117
+ Processing by ParametersController#index as HTML
2118
+ Parameters: {"per_page"=>"20", "page"=>"5"}
2119
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2120
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 18:03:56 +0100
2121
+ Processing by ParametersController#index as HTML
2122
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2123
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 18:03:56 +0100
2124
+ Processing by ParametersController#create as HTML
2125
+ Parameters: {"per_page"=>"20"}
2126
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2127
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 18:03:56 +0100
2128
+ Processing by ParametersController#create as HTML
2129
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2130
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2016-02-12 18:03:56 +0100
2131
+ Processing by ParametersController#index as HTML
2132
+ Parameters: {"order"=>"created_at"}
2133
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2134
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2016-02-12 18:03:56 +0100
2135
+ Processing by ParametersController#index as HTML
2136
+ Parameters: {"locale"=>"en"}
2137
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2138
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 18:03:56 +0100
2139
+ Processing by ParametersController#index as HTML
2140
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2141
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 18:04:09 +0100
2142
+ Processing by ParametersController#index as HTML
2143
+ Parameters: {"per_page"=>"20"}
2144
+ Completed 200 OK in 23ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2145
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 18:04:09 +0100
2146
+ Processing by ParametersController#index as HTML
2147
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2148
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 18:04:09 +0100
2149
+ Processing by ParametersController#index as HTML
2150
+ Parameters: {"per_page"=>"20"}
2151
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2152
+ Started GET "/parameters?per_page=10" for 127.0.0.1 at 2016-02-12 18:04:09 +0100
2153
+ Processing by ParametersController#index as HTML
2154
+ Parameters: {"per_page"=>"10"}
2155
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2156
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2016-02-12 18:04:09 +0100
2157
+ Processing by ParametersController#index as HTML
2158
+ Parameters: {"per_page"=>"20", "page"=>"5"}
2159
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2160
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 18:04:09 +0100
2161
+ Processing by ParametersController#index as HTML
2162
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2163
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 18:04:09 +0100
2164
+ Processing by ParametersController#create as HTML
2165
+ Parameters: {"per_page"=>"20"}
2166
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2167
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 18:04:09 +0100
2168
+ Processing by ParametersController#create as HTML
2169
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2170
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2016-02-12 18:04:09 +0100
2171
+ Processing by ParametersController#index as HTML
2172
+ Parameters: {"order"=>"created_at"}
2173
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2174
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2016-02-12 18:04:09 +0100
2175
+ Processing by ParametersController#index as HTML
2176
+ Parameters: {"locale"=>"en"}
2177
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2178
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 18:04:09 +0100
2179
+ Processing by ParametersController#index as HTML
2180
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2181
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 18:04:20 +0100
2182
+ Processing by ParametersController#index as HTML
2183
+ Parameters: {"per_page"=>"20"}
2184
+ Completed 200 OK in 20ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2185
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 18:04:20 +0100
2186
+ Processing by ParametersController#index as HTML
2187
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2188
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 18:04:20 +0100
2189
+ Processing by ParametersController#index as HTML
2190
+ Parameters: {"per_page"=>"20"}
2191
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2192
+ Started GET "/parameters?per_page=10" for 127.0.0.1 at 2016-02-12 18:04:20 +0100
2193
+ Processing by ParametersController#index as HTML
2194
+ Parameters: {"per_page"=>"10"}
2195
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2196
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2016-02-12 18:04:20 +0100
2197
+ Processing by ParametersController#index as HTML
2198
+ Parameters: {"per_page"=>"20", "page"=>"5"}
2199
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2200
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 18:04:20 +0100
2201
+ Processing by ParametersController#index as HTML
2202
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2203
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 18:04:20 +0100
2204
+ Processing by ParametersController#create as HTML
2205
+ Parameters: {"per_page"=>"20"}
2206
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2207
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 18:04:20 +0100
2208
+ Processing by ParametersController#create as HTML
2209
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2210
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2016-02-12 18:04:20 +0100
2211
+ Processing by ParametersController#index as HTML
2212
+ Parameters: {"order"=>"created_at"}
2213
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2214
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2016-02-12 18:04:20 +0100
2215
+ Processing by ParametersController#index as HTML
2216
+ Parameters: {"locale"=>"en"}
2217
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2218
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 18:04:20 +0100
2219
+ Processing by ParametersController#index as HTML
2220
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2221
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 18:04:33 +0100
2222
+ Processing by ParametersController#index as HTML
2223
+ Parameters: {"per_page"=>"20"}
2224
+ Completed 200 OK in 21ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2225
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 18:04:33 +0100
2226
+ Processing by ParametersController#index as HTML
2227
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2228
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 18:04:33 +0100
2229
+ Processing by ParametersController#index as HTML
2230
+ Parameters: {"per_page"=>"20"}
2231
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2232
+ Started GET "/parameters?per_page=10" for 127.0.0.1 at 2016-02-12 18:04:33 +0100
2233
+ Processing by ParametersController#index as HTML
2234
+ Parameters: {"per_page"=>"10"}
2235
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2236
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2016-02-12 18:04:33 +0100
2237
+ Processing by ParametersController#index as HTML
2238
+ Parameters: {"per_page"=>"20", "page"=>"5"}
2239
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2240
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 18:04:33 +0100
2241
+ Processing by ParametersController#index as HTML
2242
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2243
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 18:04:33 +0100
2244
+ Processing by ParametersController#create as HTML
2245
+ Parameters: {"per_page"=>"20"}
2246
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2247
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 18:04:33 +0100
2248
+ Processing by ParametersController#create as HTML
2249
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2250
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2016-02-12 18:04:33 +0100
2251
+ Processing by ParametersController#index as HTML
2252
+ Parameters: {"order"=>"created_at"}
2253
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2254
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2016-02-12 18:04:33 +0100
2255
+ Processing by ParametersController#index as HTML
2256
+ Parameters: {"locale"=>"en"}
2257
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2258
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 18:04:33 +0100
2259
+ Processing by ParametersController#index as HTML
2260
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2261
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 18:04:42 +0100
2262
+ Processing by ParametersController#index as HTML
2263
+ Parameters: {"per_page"=>"20"}
2264
+ Completed 200 OK in 20ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2265
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 18:04:42 +0100
2266
+ Processing by ParametersController#index as HTML
2267
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2268
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 18:04:42 +0100
2269
+ Processing by ParametersController#index as HTML
2270
+ Parameters: {"per_page"=>"20"}
2271
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2272
+ Started GET "/parameters?per_page=10" for 127.0.0.1 at 2016-02-12 18:04:42 +0100
2273
+ Processing by ParametersController#index as HTML
2274
+ Parameters: {"per_page"=>"10"}
2275
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2276
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2016-02-12 18:04:42 +0100
2277
+ Processing by ParametersController#index as HTML
2278
+ Parameters: {"per_page"=>"20", "page"=>"5"}
2279
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2280
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 18:04:42 +0100
2281
+ Processing by ParametersController#index as HTML
2282
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2283
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 18:04:42 +0100
2284
+ Processing by ParametersController#create as HTML
2285
+ Parameters: {"per_page"=>"20"}
2286
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2287
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 18:04:42 +0100
2288
+ Processing by ParametersController#create as HTML
2289
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2290
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2016-02-12 18:04:42 +0100
2291
+ Processing by ParametersController#index as HTML
2292
+ Parameters: {"order"=>"created_at"}
2293
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2294
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2016-02-12 18:04:42 +0100
2295
+ Processing by ParametersController#index as HTML
2296
+ Parameters: {"locale"=>"en"}
2297
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2298
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 18:04:42 +0100
2299
+ Processing by ParametersController#index as HTML
2300
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2301
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 18:05:19 +0100
2302
+ Processing by ParametersController#index as HTML
2303
+ Parameters: {"per_page"=>"20"}
2304
+ Completed 200 OK in 90ms (Views: 39.6ms | ActiveRecord: 0.0ms)
2305
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 18:05:20 +0100
2306
+ Processing by ParametersController#index as HTML
2307
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2308
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 18:05:20 +0100
2309
+ Processing by ParametersController#index as HTML
2310
+ Parameters: {"per_page"=>"20"}
2311
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2312
+ Started GET "/parameters?per_page=10" for 127.0.0.1 at 2016-02-12 18:05:20 +0100
2313
+ Processing by ParametersController#index as HTML
2314
+ Parameters: {"per_page"=>"10"}
2315
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2316
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2016-02-12 18:05:20 +0100
2317
+ Processing by ParametersController#index as HTML
2318
+ Parameters: {"per_page"=>"20", "page"=>"5"}
2319
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2320
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 18:05:20 +0100
2321
+ Processing by ParametersController#index as HTML
2322
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2323
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 18:05:20 +0100
2324
+ Processing by ParametersController#create as HTML
2325
+ Parameters: {"per_page"=>"20"}
2326
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2327
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 18:05:20 +0100
2328
+ Processing by ParametersController#create as HTML
2329
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2330
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2016-02-12 18:05:20 +0100
2331
+ Processing by ParametersController#index as HTML
2332
+ Parameters: {"order"=>"created_at"}
2333
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2334
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2016-02-12 18:05:20 +0100
2335
+ Processing by ParametersController#index as HTML
2336
+ Parameters: {"locale"=>"en"}
2337
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2338
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 18:05:20 +0100
2339
+ Processing by ParametersController#index as HTML
2340
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2341
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 18:05:22 +0100
2342
+ Processing by ParametersController#index as HTML
2343
+ Parameters: {"per_page"=>"20"}
2344
+ Completed 200 OK in 204ms (Views: 55.3ms | ActiveRecord: 0.0ms)
2345
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 18:05:22 +0100
2346
+ Processing by ParametersController#index as HTML
2347
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2348
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 18:05:22 +0100
2349
+ Processing by ParametersController#index as HTML
2350
+ Parameters: {"per_page"=>"20"}
2351
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2352
+ Started GET "/parameters?per_page=10" for 127.0.0.1 at 2016-02-12 18:05:22 +0100
2353
+ Processing by ParametersController#index as HTML
2354
+ Parameters: {"per_page"=>"10"}
2355
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2356
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2016-02-12 18:05:22 +0100
2357
+ Processing by ParametersController#index as HTML
2358
+ Parameters: {"per_page"=>"20", "page"=>"5"}
2359
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2360
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 18:05:22 +0100
2361
+ Processing by ParametersController#index as HTML
2362
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2363
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 18:05:22 +0100
2364
+ Processing by ParametersController#create as HTML
2365
+ Parameters: {"per_page"=>"20"}
2366
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2367
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 18:05:22 +0100
2368
+ Processing by ParametersController#create as HTML
2369
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2370
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2016-02-12 18:05:22 +0100
2371
+ Processing by ParametersController#index as HTML
2372
+ Parameters: {"order"=>"created_at"}
2373
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2374
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2016-02-12 18:05:22 +0100
2375
+ Processing by ParametersController#index as HTML
2376
+ Parameters: {"locale"=>"en"}
2377
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2378
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 18:05:22 +0100
2379
+ Processing by ParametersController#index as HTML
2380
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2381
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 18:05:29 +0100
2382
+ Processing by ParametersController#index as HTML
2383
+ Parameters: {"per_page"=>"20"}
2384
+ Completed 200 OK in 104ms (Views: 52.5ms | ActiveRecord: 0.0ms)
2385
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 18:05:29 +0100
2386
+ Processing by ParametersController#index as HTML
2387
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2388
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 18:05:29 +0100
2389
+ Processing by ParametersController#index as HTML
2390
+ Parameters: {"per_page"=>"20"}
2391
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2392
+ Started GET "/parameters?per_page=10" for 127.0.0.1 at 2016-02-12 18:05:29 +0100
2393
+ Processing by ParametersController#index as HTML
2394
+ Parameters: {"per_page"=>"10"}
2395
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2396
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2016-02-12 18:05:29 +0100
2397
+ Processing by ParametersController#index as HTML
2398
+ Parameters: {"per_page"=>"20", "page"=>"5"}
2399
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2400
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 18:05:29 +0100
2401
+ Processing by ParametersController#index as HTML
2402
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2403
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 18:05:29 +0100
2404
+ Processing by ParametersController#create as HTML
2405
+ Parameters: {"per_page"=>"20"}
2406
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2407
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 18:05:29 +0100
2408
+ Processing by ParametersController#create as HTML
2409
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2410
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2016-02-12 18:05:29 +0100
2411
+ Processing by ParametersController#index as HTML
2412
+ Parameters: {"order"=>"created_at"}
2413
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2414
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2016-02-12 18:05:29 +0100
2415
+ Processing by ParametersController#index as HTML
2416
+ Parameters: {"locale"=>"en"}
2417
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2418
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 18:05:29 +0100
2419
+ Processing by ParametersController#index as HTML
2420
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2421
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 18:05:31 +0100
2422
+ Processing by ParametersController#index as HTML
2423
+ Parameters: {"per_page"=>"20"}
2424
+ Completed 200 OK in 51ms (Views: 27.4ms | ActiveRecord: 0.0ms)
2425
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 18:05:31 +0100
2426
+ Processing by ParametersController#index as HTML
2427
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2428
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 18:05:31 +0100
2429
+ Processing by ParametersController#index as HTML
2430
+ Parameters: {"per_page"=>"20"}
2431
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2432
+ Started GET "/parameters?per_page=10" for 127.0.0.1 at 2016-02-12 18:05:31 +0100
2433
+ Processing by ParametersController#index as HTML
2434
+ Parameters: {"per_page"=>"10"}
2435
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2436
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2016-02-12 18:05:31 +0100
2437
+ Processing by ParametersController#index as HTML
2438
+ Parameters: {"per_page"=>"20", "page"=>"5"}
2439
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2440
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 18:05:31 +0100
2441
+ Processing by ParametersController#index as HTML
2442
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2443
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 18:05:31 +0100
2444
+ Processing by ParametersController#create as HTML
2445
+ Parameters: {"per_page"=>"20"}
2446
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2447
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 18:05:31 +0100
2448
+ Processing by ParametersController#create as HTML
2449
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2450
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2016-02-12 18:05:31 +0100
2451
+ Processing by ParametersController#index as HTML
2452
+ Parameters: {"order"=>"created_at"}
2453
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2454
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2016-02-12 18:05:31 +0100
2455
+ Processing by ParametersController#index as HTML
2456
+ Parameters: {"locale"=>"en"}
2457
+ Completed 200 OK in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2458
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 18:05:31 +0100
2459
+ Processing by ParametersController#index as HTML
2460
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2461
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 18:05:41 +0100
2462
+ Processing by ParametersController#index as HTML
2463
+ Parameters: {"per_page"=>"20"}
2464
+ Completed 200 OK in 20ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2465
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 18:05:41 +0100
2466
+ Processing by ParametersController#index as HTML
2467
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2468
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 18:05:41 +0100
2469
+ Processing by ParametersController#index as HTML
2470
+ Parameters: {"per_page"=>"20"}
2471
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2472
+ Started GET "/parameters?per_page=10" for 127.0.0.1 at 2016-02-12 18:05:41 +0100
2473
+ Processing by ParametersController#index as HTML
2474
+ Parameters: {"per_page"=>"10"}
2475
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2476
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2016-02-12 18:05:41 +0100
2477
+ Processing by ParametersController#index as HTML
2478
+ Parameters: {"per_page"=>"20", "page"=>"5"}
2479
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2480
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 18:05:41 +0100
2481
+ Processing by ParametersController#index as HTML
2482
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2483
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 18:05:41 +0100
2484
+ Processing by ParametersController#create as HTML
2485
+ Parameters: {"per_page"=>"20"}
2486
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2487
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 18:05:41 +0100
2488
+ Processing by ParametersController#create as HTML
2489
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2490
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2016-02-12 18:05:41 +0100
2491
+ Processing by ParametersController#index as HTML
2492
+ Parameters: {"order"=>"created_at"}
2493
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2494
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2016-02-12 18:05:41 +0100
2495
+ Processing by ParametersController#index as HTML
2496
+ Parameters: {"locale"=>"en"}
2497
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2498
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 18:05:41 +0100
2499
+ Processing by ParametersController#index as HTML
2500
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2501
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 18:10:34 +0100
2502
+ Processing by ParametersController#index as HTML
2503
+ Parameters: {"per_page"=>"20"}
2504
+ Completed 200 OK in 10ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2505
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 18:10:35 +0100
2506
+ Processing by ParametersController#index as HTML
2507
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2508
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 18:10:35 +0100
2509
+ Processing by ParametersController#index as HTML
2510
+ Parameters: {"per_page"=>"20"}
2511
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2512
+ Started GET "/parameters?per_page=10" for 127.0.0.1 at 2016-02-12 18:10:35 +0100
2513
+ Processing by ParametersController#index as HTML
2514
+ Parameters: {"per_page"=>"10"}
2515
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2516
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2016-02-12 18:10:35 +0100
2517
+ Processing by ParametersController#index as HTML
2518
+ Parameters: {"per_page"=>"20", "page"=>"5"}
2519
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2520
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 18:10:35 +0100
2521
+ Processing by ParametersController#index as HTML
2522
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2523
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 18:10:35 +0100
2524
+ Processing by ParametersController#create as HTML
2525
+ Parameters: {"per_page"=>"20"}
2526
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2527
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 18:10:35 +0100
2528
+ Processing by ParametersController#create as HTML
2529
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2530
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2016-02-12 18:10:35 +0100
2531
+ Processing by ParametersController#index as HTML
2532
+ Parameters: {"order"=>"created_at"}
2533
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2534
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2016-02-12 18:10:35 +0100
2535
+ Processing by ParametersController#index as HTML
2536
+ Parameters: {"locale"=>"en"}
2537
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2538
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 18:10:35 +0100
2539
+ Processing by ParametersController#index as HTML
2540
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2541
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 18:10:47 +0100
2542
+ Processing by ParametersController#index as HTML
2543
+ Parameters: {"per_page"=>"20"}
2544
+ Completed 200 OK in 52ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2545
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 18:10:47 +0100
2546
+ Processing by ParametersController#index as HTML
2547
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2548
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 18:10:47 +0100
2549
+ Processing by ParametersController#index as HTML
2550
+ Parameters: {"per_page"=>"20"}
2551
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2552
+ Started GET "/parameters?per_page=10" for 127.0.0.1 at 2016-02-12 18:10:47 +0100
2553
+ Processing by ParametersController#index as HTML
2554
+ Parameters: {"per_page"=>"10"}
2555
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2556
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2016-02-12 18:10:47 +0100
2557
+ Processing by ParametersController#index as HTML
2558
+ Parameters: {"per_page"=>"20", "page"=>"5"}
2559
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2560
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 18:10:47 +0100
2561
+ Processing by ParametersController#index as HTML
2562
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2563
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 18:10:47 +0100
2564
+ Processing by ParametersController#create as HTML
2565
+ Parameters: {"per_page"=>"20"}
2566
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2567
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 18:10:47 +0100
2568
+ Processing by ParametersController#create as HTML
2569
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2570
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2016-02-12 18:10:47 +0100
2571
+ Processing by ParametersController#index as HTML
2572
+ Parameters: {"order"=>"created_at"}
2573
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2574
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2016-02-12 18:10:47 +0100
2575
+ Processing by ParametersController#index as HTML
2576
+ Parameters: {"locale"=>"en"}
2577
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2578
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 18:10:47 +0100
2579
+ Processing by ParametersController#index as HTML
2580
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2581
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 18:11:00 +0100
2582
+ Processing by ParametersController#index as HTML
2583
+ Parameters: {"per_page"=>"20"}
2584
+ Completed 200 OK in 43ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2585
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 18:11:00 +0100
2586
+ Processing by ParametersController#index as HTML
2587
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2588
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 18:11:00 +0100
2589
+ Processing by ParametersController#index as HTML
2590
+ Parameters: {"per_page"=>"20"}
2591
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2592
+ Started GET "/parameters?per_page=10" for 127.0.0.1 at 2016-02-12 18:11:00 +0100
2593
+ Processing by ParametersController#index as HTML
2594
+ Parameters: {"per_page"=>"10"}
2595
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2596
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2016-02-12 18:11:00 +0100
2597
+ Processing by ParametersController#index as HTML
2598
+ Parameters: {"per_page"=>"20", "page"=>"5"}
2599
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2600
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 18:11:00 +0100
2601
+ Processing by ParametersController#index as HTML
2602
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2603
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 18:11:00 +0100
2604
+ Processing by ParametersController#create as HTML
2605
+ Parameters: {"per_page"=>"20"}
2606
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2607
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 18:11:00 +0100
2608
+ Processing by ParametersController#create as HTML
2609
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2610
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2016-02-12 18:11:00 +0100
2611
+ Processing by ParametersController#index as HTML
2612
+ Parameters: {"order"=>"created_at"}
2613
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2614
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2016-02-12 18:11:00 +0100
2615
+ Processing by ParametersController#index as HTML
2616
+ Parameters: {"locale"=>"en"}
2617
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2618
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 18:11:00 +0100
2619
+ Processing by ParametersController#index as HTML
2620
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2621
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 18:11:15 +0100
2622
+ Processing by ParametersController#index as HTML
2623
+ Parameters: {"per_page"=>"20"}
2624
+ Completed 200 OK in 55ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2625
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 18:11:15 +0100
2626
+ Processing by ParametersController#index as HTML
2627
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2628
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 18:11:15 +0100
2629
+ Processing by ParametersController#index as HTML
2630
+ Parameters: {"per_page"=>"20"}
2631
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2632
+ Started GET "/parameters?per_page=10" for 127.0.0.1 at 2016-02-12 18:11:15 +0100
2633
+ Processing by ParametersController#index as HTML
2634
+ Parameters: {"per_page"=>"10"}
2635
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2636
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2016-02-12 18:11:15 +0100
2637
+ Processing by ParametersController#index as HTML
2638
+ Parameters: {"per_page"=>"20", "page"=>"5"}
2639
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2640
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 18:11:15 +0100
2641
+ Processing by ParametersController#index as HTML
2642
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2643
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 18:11:15 +0100
2644
+ Processing by ParametersController#create as HTML
2645
+ Parameters: {"per_page"=>"20"}
2646
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2647
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 18:11:15 +0100
2648
+ Processing by ParametersController#create as HTML
2649
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2650
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2016-02-12 18:11:15 +0100
2651
+ Processing by ParametersController#index as HTML
2652
+ Parameters: {"order"=>"created_at"}
2653
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2654
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2016-02-12 18:11:15 +0100
2655
+ Processing by ParametersController#index as HTML
2656
+ Parameters: {"locale"=>"en"}
2657
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2658
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 18:11:15 +0100
2659
+ Processing by ParametersController#index as HTML
2660
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2661
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 18:11:30 +0100
2662
+ Processing by ParametersController#index as HTML
2663
+ Parameters: {"per_page"=>"20"}
2664
+ Completed 200 OK in 42ms (Views: 0.3ms | ActiveRecord: 0.0ms)
2665
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 18:11:31 +0100
2666
+ Processing by ParametersController#index as HTML
2667
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2668
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 18:11:31 +0100
2669
+ Processing by ParametersController#index as HTML
2670
+ Parameters: {"per_page"=>"20"}
2671
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2672
+ Started GET "/parameters?per_page=10" for 127.0.0.1 at 2016-02-12 18:11:31 +0100
2673
+ Processing by ParametersController#index as HTML
2674
+ Parameters: {"per_page"=>"10"}
2675
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2676
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2016-02-12 18:11:31 +0100
2677
+ Processing by ParametersController#index as HTML
2678
+ Parameters: {"per_page"=>"20", "page"=>"5"}
2679
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2680
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 18:11:31 +0100
2681
+ Processing by ParametersController#index as HTML
2682
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2683
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 18:11:31 +0100
2684
+ Processing by ParametersController#create as HTML
2685
+ Parameters: {"per_page"=>"20"}
2686
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2687
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 18:11:31 +0100
2688
+ Processing by ParametersController#create as HTML
2689
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2690
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2016-02-12 18:11:31 +0100
2691
+ Processing by ParametersController#index as HTML
2692
+ Parameters: {"order"=>"created_at"}
2693
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2694
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2016-02-12 18:11:31 +0100
2695
+ Processing by ParametersController#index as HTML
2696
+ Parameters: {"locale"=>"en"}
2697
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2698
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 18:11:31 +0100
2699
+ Processing by ParametersController#index as HTML
2700
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2701
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 18:15:36 +0100
2702
+ Processing by ParametersController#index as HTML
2703
+ Parameters: {"per_page"=>"20"}
2704
+ Completed 200 OK in 9ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2705
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 18:15:36 +0100
2706
+ Processing by ParametersController#index as HTML
2707
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2708
+ Started GET "/parameters?per_page=20" for 127.0.0.1 at 2016-02-12 18:15:36 +0100
2709
+ Processing by ParametersController#index as HTML
2710
+ Parameters: {"per_page"=>"20"}
2711
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2712
+ Started GET "/parameters?per_page=10" for 127.0.0.1 at 2016-02-12 18:15:36 +0100
2713
+ Processing by ParametersController#index as HTML
2714
+ Parameters: {"per_page"=>"10"}
2715
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2716
+ Started GET "/parameters?per_page=20&page=5" for 127.0.0.1 at 2016-02-12 18:15:36 +0100
2717
+ Processing by ParametersController#index as HTML
2718
+ Parameters: {"per_page"=>"20", "page"=>"5"}
2719
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
2720
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 18:15:36 +0100
2721
+ Processing by ParametersController#index as HTML
2722
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2723
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 18:15:36 +0100
2724
+ Processing by ParametersController#create as HTML
2725
+ Parameters: {"per_page"=>"20"}
2726
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2727
+ Started POST "/parameters" for 127.0.0.1 at 2016-02-12 18:15:36 +0100
2728
+ Processing by ParametersController#create as HTML
2729
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2730
+ Started GET "/parameters?order=created_at" for 127.0.0.1 at 2016-02-12 18:15:36 +0100
2731
+ Processing by ParametersController#index as HTML
2732
+ Parameters: {"order"=>"created_at"}
2733
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2734
+ Started GET "/parameters?locale=en" for 127.0.0.1 at 2016-02-12 18:15:36 +0100
2735
+ Processing by ParametersController#index as HTML
2736
+ Parameters: {"locale"=>"en"}
2737
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
2738
+ Started GET "/parameters" for 127.0.0.1 at 2016-02-12 18:15:36 +0100
2739
+ Processing by ParametersController#index as HTML
2740
+ Completed 200 OK in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)