resources 0.2.0 → 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (81) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +11 -10
  3. data/Rakefile +7 -0
  4. data/lib/resources/actions.rb +5 -5
  5. data/lib/resources/configuration.rb +8 -6
  6. data/lib/resources/manager.rb +14 -5
  7. data/lib/resources/rest_actions.rb +3 -1
  8. data/lib/resources/version.rb +1 -1
  9. data/test/dummy/app/assets/javascripts/admin/countries.js +2 -0
  10. data/test/dummy/app/assets/javascripts/countries.js +2 -0
  11. data/test/dummy/app/assets/stylesheets/admin/countries.css +4 -0
  12. data/test/dummy/app/assets/stylesheets/countries.css +4 -0
  13. data/test/dummy/app/controllers/admin/countries_controller.rb +9 -0
  14. data/test/dummy/app/controllers/countries_controller.rb +4 -0
  15. data/test/dummy/app/helpers/admin/countries_helper.rb +2 -0
  16. data/test/dummy/app/helpers/countries_helper.rb +2 -0
  17. data/test/dummy/app/models/country.rb +7 -0
  18. data/test/dummy/app/views/admin/countries/_form.html.haml +6 -0
  19. data/test/dummy/app/views/admin/countries/edit.html.haml +1 -0
  20. data/test/dummy/app/views/admin/countries/index.html.haml +19 -0
  21. data/test/dummy/app/views/admin/countries/new.html.haml +1 -0
  22. data/test/dummy/app/views/countries/_form.html.haml +6 -0
  23. data/test/dummy/app/views/countries/edit.html.haml +1 -0
  24. data/test/dummy/app/views/countries/index.html.haml +21 -0
  25. data/test/dummy/app/views/countries/new.html.haml +1 -0
  26. data/test/dummy/config/initializers/resources.rb +30 -0
  27. data/test/dummy/config/routes.rb +5 -1
  28. data/test/dummy/db/development.sqlite3 +0 -0
  29. data/test/dummy/db/migrate/20150430020948_create_countries.rb +10 -0
  30. data/test/dummy/db/schema.rb +24 -0
  31. data/test/dummy/log/development.log +3991 -0
  32. data/test/dummy/test/controllers/admin/countries_controller_test.rb +7 -0
  33. data/test/dummy/test/controllers/countries_controller_test.rb +9 -0
  34. data/test/dummy/test/fixtures/countries.yml +11 -0
  35. data/test/dummy/test/models/country_test.rb +7 -0
  36. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/1tGo0eQ64h2qOcf_X7SJIdwXPT-H1Cdo5yia9oDXJN0.cache +1 -0
  37. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/41pS6qeEZuOGdyzk3yCjRfBsaXZAyI-DvH5kzsEcVdo.cache +0 -0
  38. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/50j9S0WZyrVC6LaUJuQUfyZBBLJIDj5Ypv7meS8jlw8.cache +1 -0
  39. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/6i6iTzCeBLjwo1sXDwikDtlsQnjH_iyFliS9nFKAJr0.cache +0 -0
  40. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/7Biz_daU6XCvv9DxooKaFh86aygxzay-GADCvIvgp1w.cache +0 -0
  41. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/7ZK4CBk3GcsUKFsZNRJfseBsCcQIIJUzVEPZiEGcdJ4.cache +0 -0
  42. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/7hMH9nrfn1Vwglgea7Z7WCy2tOYruZZUs0cz9Y-ORZI.cache +0 -0
  43. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/9TXKkJm0BJgWCGnTIRy9DiZqg7Oj59oXWg5qjfZQltM.cache +2 -0
  44. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/Ai6fZz9qqciJx9S3VtKXDJPK3MbNbqanp4pgD7zXKY4.cache +0 -0
  45. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/BSpUdmTgWoDsk5ptbZB_yOC8mO7SnhqBQgZJ1ImBrvU.cache +1 -0
  46. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/Btih8XMeMPV8yluiUmEzYkWiuu6dXaSZD2X6uxrJ_5g.cache +1 -0
  47. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/COZvpgWNc6JZtDissknpybZiGE00lHRKKn8icNB5Lwo.cache +1 -0
  48. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/EfgGH26sAfh6lfKVP7JAQtiWLGvUmiMeIAoDcDZURo4.cache +1 -0
  49. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/FMLmcoKGYpE01mLCffVL8odyYzjTtdfOKiqChzUSKmQ.cache +0 -0
  50. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/G3sodj-ssqsbEWYKt4p0hE18yArx4HB1LUI3JWIY15Y.cache +2 -0
  51. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/HQZDQmyz-AhFERwPsy-L_zLuAicKhl_NCbUMWTC6f7M.cache +1 -0
  52. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/L27c3SKV_oTWmkQerPe4t_FuDmpfUtOVazTbQL_jIxA.cache +1 -0
  53. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/P_SjMiqriLSTDxqbzxkLo_vazTBLa1iwhzIdpZEFMbA.cache +1 -0
  54. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/S3Y1r8Aft-fes9HTVwgfegJ-Gr5hn_hMHUNp1biPkaU.cache +0 -0
  55. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/SAannjThfrziVPcKtMYfw2QDg7Wb2421TWo7w_gf2Z4.cache +1 -0
  56. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/SWh2UnU8uBCft4qmukKkqjclr5DTwPCPZU00aXor5AY.cache +1 -0
  57. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/ShSW8vHkoGxm9VYT7UiYtWmq-8WNrtFx2TMEOfjLKCU.cache +2 -0
  58. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/Ti8zu6KfE0P1JkyS0vVwq07BWrKkp-AEb7Nr8wRxszo.cache +0 -0
  59. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/VaUYlQhdcrPpMnQKNPenoOC0cE2nFr-9rMItICQucAM.cache +1 -0
  60. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/Ve71zVIPs0jevC1C-1mVz3lhohAocoAotk77qnSZN6M.cache +1 -0
  61. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/WUvByofu2uySF18SR5mghV5crmN95tI8EUHOx7mw1CQ.cache +0 -0
  62. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/YptT2BoUJeIJqGYiwMy6_TuT0o6IbggKPHL_cXGCYLk.cache +0 -0
  63. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/YtNa7YjoVwmac3O_YNQqkKL1mi9jZxl_OH7ugxEVpYw.cache +2 -0
  64. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/ZpYBokHdWAF0LFBx2so-OHnw-HDxaina9ERRlnO-x3g.cache +1 -0
  65. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/_Zmr6SOcMk5Q5kPGfkI3zQOE4FT2Q4nCJY6a-Kaj6VM.cache +0 -0
  66. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/_saiFFUSNkFue7QkNomiQBO_3ItwvaaObEFyiq6yS7Y.cache +0 -0
  67. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/cDgT80YxTjJl6k43Re5Z5Fvk6gGl_IVZravzuTuz0jE.cache +1 -0
  68. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/cswPZGIEebNA4P8PNRkCv-E5qoRf-kjV9zn22FmU3fY.cache +2 -0
  69. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/dRu-VIyt9mG8SYLHOx77PLCgHpaI7zBJsrEgVjJ-RPM.cache +1 -0
  70. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/hvyS1lhrrcPzGwAgOvnDmZllwK2LXdBEQO_p6R13Is8.cache +1 -0
  71. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/i1SLS0Mz7cep78uvQ311O_wt6fgnEq4U5zkJb9Kbzsw.cache +0 -0
  72. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/ixUkB64szPmY5WRrwBoPn0SPWK4bSRpF9Hr0qJ4pblM.cache +1 -0
  73. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/lFei8srFEsDaTHznvaWYmtZ41F8G5OwUOL_sjSAKO9A.cache +1 -0
  74. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/mGxA80kn3X_NEyYkwitC650YDP6HA3FPfdtXLict4FM.cache +0 -0
  75. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/ohN58J6S6pO_zQz5OeWiLN5m21sCRh8BvzwxHBAS8qU.cache +2 -0
  76. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/q4e53O4aPv8OaxaB990eayNA1PVc4W_ZX4PJ-Jx5HZU.cache +0 -0
  77. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/tCM0KKnd2WiAjdWEr6LbNvF0qyf45275nyBUJwpmeMQ.cache +1 -0
  78. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/uVhuknH4mKck5LFVwZj9pmuaR7SE-0M45V52MkrBJPk.cache +1 -0
  79. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/xa5H-1005wsDczOFgyc7KdSbQzU5n8neJtBcQS74ncg.cache +1 -0
  80. data/test/dummy/tmp/pids/server.pid +1 -0
  81. metadata +241 -6
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 581f13986a09c2e59a9f9d1ef6a55e042d0ead84
4
- data.tar.gz: 8f133e57f806c9a5f55e0cf73200e1108d1a94d9
3
+ metadata.gz: 7c1eab3b5d6bce3821a092b6041cad69e43759cf
4
+ data.tar.gz: 6f24aadf85ae78657cd7e8c1d2034584f9136c30
5
5
  SHA512:
6
- metadata.gz: 68339a0d0a01806b4e7f4ef7f3705c9b063a4201a758102fb961bb38faec6707bd7bfe07ef3b222d707efd57e6fb594b409240ec87458543b3c138de4159db28
7
- data.tar.gz: 9a63a999d2728284df527a2edb6a66e0f9a132903c751f84b6dfe288debd48de46442c2043dbc9cb2177be6417ee3859754ef66a00267128ee3a41135c5fe481
6
+ metadata.gz: 155541ab096be555fc2af0a0fb6a305c2c181daeb4bb360197c77d37dbad28e910f8cbd4e4ae389ed4b27eca0379c9f28ec97354cec8e9ba817aa7f3174b273f
7
+ data.tar.gz: 7a4ff96fdcc34146f2765b6a86d8092ca2b4e637c00f3db7044c5ebe8093517f60c2593d0c24db5da34f0104e6f8dc82f96ce87c9a77cc56c6f704315cf35e77
data/README.md CHANGED
@@ -3,6 +3,8 @@
3
3
 
4
4
  It's a gem that help's you to create **CRUD** controllers for your models in a **very fast** and **flexible** way.
5
5
 
6
+ **Note:** Version 1.0.0+ introduces some breaking changes, to see the list of this change please check [CHANGE_LOG.md](https://github.com/emilioforrer/resources/blob/master/CHANGELOG.md)
7
+
6
8
  ----------
7
9
 
8
10
 
@@ -35,7 +37,7 @@ Rub the configuration generator, this will create the **resources initializer**
35
37
  rails g resources:install
36
38
  ```
37
39
 
38
- ----------
40
+ ----------
39
41
 
40
42
  USAGE
41
43
  -------------
@@ -93,21 +95,20 @@ class Admin::CountriesController < ApplicationController
93
95
  resource_for :"Country",
94
96
  params_resource: :country
95
97
  end
98
+ ```
96
99
 
97
- # For rails 4
98
-
99
- class Admin::CountriesController < ApplicationController
100
- resource_for :"Country",
101
- params_resource: :country_params
100
+ **Note:** For **Rails 4** you may encounter with this error (ActiveModel::ForbiddenAttributesError) when you try to update a record due to **`strong_parameters`** protection. To avoid this just add to your model a method named `permited_attributes` that return an array of allowed attributes. Example
102
101
 
103
- private
102
+ ```
103
+ class Country < ActiveRecord::Base
104
104
 
105
- def country_params
106
- params.require(:country).permit(:name)
105
+ def permited_attributes
106
+ [:name, :code, :active]
107
107
  end
108
+
108
109
  end
109
110
  ```
110
- **Note:** For Rails 4 the `params_resource: :country` as symbol it will call a method on the controller instead the key of the params hash `params[:country]`
111
+
111
112
 
112
113
  Or you can use the `lambda` syntax.
113
114
 
data/Rakefile CHANGED
@@ -31,4 +31,11 @@ Rake::TestTask.new(:test) do |t|
31
31
  end
32
32
 
33
33
 
34
+ begin
35
+ require 'rspec/core/rake_task'
36
+ RSpec::Core::RakeTask.new(:spec)
37
+ task :default => :spec
38
+ rescue LoadError
39
+ end
40
+
34
41
  task default: :test
@@ -1,13 +1,13 @@
1
1
  module Resources
2
2
  module Actions
3
3
  extend ActiveSupport::Concern
4
-
4
+
5
5
  included do
6
6
  helper_method :resources, :resource, :resources_search
7
7
 
8
8
  if self.resource_configuration.resource_method_name
9
9
  self.class_eval <<-RUBY
10
-
10
+
11
11
  alias_method :#{self.resource_configuration.resources_method_name.to_s}, :resources
12
12
  alias_method :#{self.resource_configuration.resource_method_name.to_s}, :resource
13
13
  alias_method :#{self.resource_configuration.resources_method_name.to_s}_search, :resources_search
@@ -26,9 +26,9 @@ module Resources
26
26
 
27
27
  def resource
28
28
  @resource ||= resource_manager.resource
29
- end
29
+ end
30
+
30
31
 
31
-
32
32
 
33
33
  protected
34
34
 
@@ -36,7 +36,7 @@ module Resources
36
36
  @resource_manager ||= Resources::Manager.new(self, request)
37
37
  end
38
38
 
39
-
39
+
40
40
 
41
41
 
42
42
  def member_route?
@@ -1,6 +1,11 @@
1
1
  module Resources
2
2
  class Configuration
3
3
 
4
+ def self.accessors
5
+ [:rest_actions, :search, :search_options, :params_search, :resource_class_name, :resource_scope, :resources_scope, :resource_method_name, :resources_method_name, :params_resource, :pagination, :params_page]
6
+ end
7
+ accessors.map{|a| attr_accessor a }
8
+
4
9
  def initialize *args
5
10
  options = args.extract_options!
6
11
  self.rest_actions = options[:rest_actions] || true
@@ -13,8 +18,8 @@ module Resources
13
18
  self.resource_scope = options[:resource_scope] || nil
14
19
  self.resources_scope = options[:resources_scope] || nil
15
20
  self.resource_method_name = options[:resource_method_name] || :resource
16
- self.resources_method_name = options[:resources_method_name] || nil
17
- if self.resource_method_name && self.resources_method_name.to_s.blank?
21
+ self.resources_method_name = options[:resources_method_name] || :resources
22
+ if self.resource_method_name.to_s != "resource" && options[:resources_method_name].to_s == "resources"
18
23
  self.resources_method_name = self.resource_method_name.to_s.pluralize
19
24
  end
20
25
  end
@@ -28,10 +33,7 @@ module Resources
28
33
  hash
29
34
  end
30
35
 
31
- def self.accessors
32
- [:rest_actions, :search, :search_options, :params_search, :resource_class_name, :resource_scope, :resources_scope, :resource_method_name, :resources_method_name, :params_resource, :pagination, :params_page]
33
- end
34
- accessors.map{|a| attr_accessor a }
36
+
35
37
 
36
38
 
37
39
  end
@@ -38,7 +38,7 @@ module Resources
38
38
  end
39
39
 
40
40
  def resources_search
41
- @resources_search ||= resources_scope.search(params_search) rescue nil
41
+ @resources_search ||= resources_scope.search(params_search) if resources_scope.respond_to?(:search)
42
42
  end
43
43
 
44
44
 
@@ -90,6 +90,7 @@ module Resources
90
90
 
91
91
 
92
92
  def option_with_scope name
93
+ raise ArgumentError.new("The class '#{settings.resource_class_name}' does not exists. Please specify a valid model") if resource_class.nil?
93
94
  scope = Rails::VERSION::MAJOR >= 4 ? resource_class.all : resource_class.scoped
94
95
  if settings.send(name)
95
96
  settings.send(name).is_a?(Proc) ? settings.send(name).call(scope,params,controller) : scope.send(settings.send(name))
@@ -106,19 +107,27 @@ module Resources
106
107
  forbidden_params_names.map(&:to_s).include?(settings.send(name).to_s)
107
108
  end
108
109
 
110
+ def resource_allow_permit?
111
+ resource.respond_to?(:permited_attributes) && resource.permited_attributes.is_a?(Array)
112
+ end
113
+
109
114
  def option_with_params name
110
115
  result = {}
111
116
  if settings.send(name).is_a?(Proc)
112
117
  result = settings.send(name).call(params)
113
118
  else
114
- if Rails::VERSION::MAJOR >= 4 && !forbidden_params_names?(name)
115
- value = controller.send(name) rescue nil
116
- result = value ? value : params[settings.send(name)]
119
+ if Rails::VERSION::MAJOR >= 4
120
+ value = params[settings.send(name)]
121
+ if name.to_s == "params_resource"
122
+ result = value.respond_to?(:permit) && resource_allow_permit? ? value.permit(*resource.permited_attributes) : value
123
+ else
124
+ result = value
125
+ end
117
126
  else
118
127
  result = params[settings.send(name)]
119
128
  end
120
129
  end
121
- result = result && result.is_a?(Hash) ? result : {}
130
+ result = result && result.is_a?(Hash) || name.to_s == "params_page" ? result : {}
122
131
  result
123
132
  end
124
133
 
@@ -4,13 +4,15 @@ module Resources
4
4
 
5
5
  included do
6
6
  respond_to :html, :js, :json
7
- helper_method :resource_saved?
7
+ helper_method :resource_saved?, :resources_search
8
8
  if self.resource_configuration.resource_method_name
9
9
  self.class_eval <<-RUBY
10
10
  alias_method :save_#{self.resource_configuration.resource_method_name.to_s}, :save_resource
11
+ alias_method :#{self.resource_configuration.resources_method_name.to_s}_search, :resources_search
11
12
  alias_method :destroy_#{self.resource_configuration.resource_method_name.to_s}, :destroy_resource
12
13
  alias_method :#{self.resource_configuration.resource_method_name.to_s}_saved?, :resource_saved?
13
14
  helper_method :#{self.resource_configuration.resource_method_name.to_s}_saved?
15
+ helper_method :#{self.resource_configuration.resource_method_name.to_s}_search
14
16
  RUBY
15
17
  end
16
18
  end
@@ -1,3 +1,3 @@
1
1
  module Resources
2
- VERSION = "0.2.0"
2
+ VERSION = "1.0.0"
3
3
  end
@@ -0,0 +1,2 @@
1
+ // Place all the behaviors and hooks related to the matching controller here.
2
+ // All this logic will automatically be available in application.js.
@@ -0,0 +1,2 @@
1
+ // Place all the behaviors and hooks related to the matching controller here.
2
+ // All this logic will automatically be available in application.js.
@@ -0,0 +1,4 @@
1
+ /*
2
+ Place all the styles related to the matching controller here.
3
+ They will automatically be included in application.css.
4
+ */
@@ -0,0 +1,4 @@
1
+ /*
2
+ Place all the styles related to the matching controller here.
3
+ They will automatically be included in application.css.
4
+ */
@@ -0,0 +1,9 @@
1
+ class Admin::CountriesController < ApplicationController
2
+ resource_for "Country",
3
+ pagination: true,
4
+ rest_actions: true,
5
+ search: true,
6
+ search_options: {distinct: true},
7
+ params_resource: :country,
8
+ resource_method_name: :country
9
+ end
@@ -0,0 +1,4 @@
1
+ class CountriesController < ApplicationController
2
+ resource_for "Country"
3
+
4
+ end
@@ -0,0 +1,2 @@
1
+ module Admin::CountriesHelper
2
+ end
@@ -0,0 +1,2 @@
1
+ module CountriesHelper
2
+ end
@@ -0,0 +1,7 @@
1
+ class Country < ActiveRecord::Base
2
+
3
+ def permited_attributes
4
+ [:name, :code, :active]
5
+ end
6
+
7
+ end
@@ -0,0 +1,6 @@
1
+ = country_saved? ? "true" : "false"
2
+ = simple_form_for [:admin, country] do |f|
3
+ = f.input :code
4
+ = f.input :name
5
+ = f.input :active
6
+ = f.submit "SAVE"
@@ -0,0 +1,19 @@
1
+ = search_form_for [:admin, countries_search] do |f|
2
+ = f.label :name_cont
3
+ = f.search_field :name_cont
4
+ = f.submit
5
+ %p
6
+ = link_to "New", new_admin_country_path
7
+ %table
8
+ %tbody
9
+ - countries.each do |resource|
10
+ %tr
11
+ %td
12
+ = resource.code
13
+ %td
14
+ = resource.name
15
+ %td
16
+ = link_to "edit", edit_admin_country_path(resource)
17
+ = link_to "delete", admin_country_path(resource), method: :delete
18
+
19
+ = paginate resources
@@ -0,0 +1 @@
1
+ = render "form"
@@ -0,0 +1,6 @@
1
+ = resource_saved? ? "true" : "false"
2
+ = simple_form_for resource, as: :resource do |f|
3
+ = f.input :code
4
+ = f.input :name
5
+ = f.input :active
6
+ = f.submit "SAVE"
@@ -0,0 +1 @@
1
+ = render "form"
@@ -0,0 +1,21 @@
1
+ = search_form_for resources_search do |f|
2
+ = f.label :name_cont
3
+ = f.search_field :name_cont
4
+ = f.submit
5
+ %p
6
+ = link_to "New", new_country_path
7
+ %table
8
+ %tbody
9
+ - resources.each do |resource|
10
+ %tr
11
+ %td
12
+ = resource.code
13
+ %td
14
+ = resource.name
15
+ %td
16
+ = resource.active
17
+ %td
18
+ = link_to "edit", edit_country_path(resource)
19
+ = link_to "delete", country_path(resource), method: :delete
20
+
21
+ = paginate resources
@@ -0,0 +1 @@
1
+ = render "form"
@@ -0,0 +1,30 @@
1
+ # GLobal Configuration
2
+ Resources.config do |config|
3
+
4
+ config.rest_actions = true # Enable restful actions (index,new, create, etc)
5
+ config.search = true # Enable ransack search object (resources_search)
6
+ config.search_options = {distinct: false} # ransack result options. Default {distinct: false}
7
+
8
+ # Setting Params (params_search, params_resource, etc)
9
+ # You can specify a params key like :q, that will be params[:q]
10
+ # Or you can set a lambda like lambda{ |params| params[:q] }
11
+ config.params_search = :q # ransack search parameter. Default params[:q]
12
+ config.params_resource = :resource # resource parameter to be saved. Default params[:resource]
13
+ config.params_page = :page # Pagination parameter. Default params[:page]
14
+
15
+
16
+ config.pagination = true # Enables pagination (kaminari or will_paginate)
17
+
18
+ # Setting a default scope for the collection and resource objects
19
+ # You can specify an scope name to be executed like :active
20
+ # Or if you have something more complex or need to pass a parameter to the scope, you can use a lambda like lambda{ |scope, params, controller| scope.by_activation(params[:active]).includes(:states) }
21
+ config.resource_scope = nil # default scope for resource object
22
+ config.resources_scope = nil # default scope for resources collection
23
+
24
+ # Setting alias method of resource, if you change the value to, for example :country you will gain this extra helper methods:
25
+ # countries for the collection object
26
+ # country for the resource object
27
+ # country_saved? to know if the resource was saved
28
+ config.resource_method_name = :resource # alias method of resource
29
+ config.resources_method_name = :resources # alias method of resources, if you dont specify one it takes "resource_method_name.to_s.pluralize"
30
+ end
@@ -1,9 +1,13 @@
1
1
  Rails.application.routes.draw do
2
+ resources :countries
3
+ namespace :admin do
4
+ resources :countries
5
+ end
2
6
  # The priority is based upon order of creation: first created -> highest priority.
3
7
  # See how all your routes lay out with "rake routes".
4
8
 
5
9
  # You can have the root of your site routed with "root"
6
- # root 'welcome#index'
10
+ root 'countries#index'
7
11
 
8
12
  # Example of regular route:
9
13
  # get 'products/:id' => 'catalog#view'
@@ -0,0 +1,10 @@
1
+ class CreateCountries < ActiveRecord::Migration
2
+ def change
3
+ create_table :countries do |t|
4
+ t.integer :active, limit: 1
5
+ t.string :code
6
+ t.string :name
7
+ t.timestamps null: false
8
+ end
9
+ end
10
+ end
@@ -0,0 +1,24 @@
1
+ # encoding: UTF-8
2
+ # This file is auto-generated from the current state of the database. Instead
3
+ # of editing this file, please use the migrations feature of Active Record to
4
+ # incrementally modify your database, and then regenerate this schema definition.
5
+ #
6
+ # Note that this schema.rb definition is the authoritative source for your
7
+ # database schema. If you need to create the application database on another
8
+ # system, you should be using db:schema:load, not running all the migrations
9
+ # from scratch. The latter is a flawed and unsustainable approach (the more migrations
10
+ # you'll amass, the slower it'll run and the greater likelihood for issues).
11
+ #
12
+ # It's strongly recommended that you check this file into your version control system.
13
+
14
+ ActiveRecord::Schema.define(version: 20150430020948) do
15
+
16
+ create_table "countries", force: :cascade do |t|
17
+ t.integer "active", limit: 1
18
+ t.string "code"
19
+ t.string "name"
20
+ t.datetime "created_at", null: false
21
+ t.datetime "updated_at", null: false
22
+ end
23
+
24
+ end
@@ -0,0 +1,3991 @@
1
+
2
+
3
+ Started GET "/" for ::1 at 2015-04-28 22:40:41 -0600
4
+ Processing by CountriesController#index as HTML
5
+ Rendered countries/index.html.erb within layouts/application (0.5ms)
6
+ Completed 200 OK in 84ms (Views: 83.8ms | ActiveRecord: 0.0ms)
7
+
8
+
9
+ Started GET "/" for ::1 at 2015-04-28 22:40:42 -0600
10
+ Processing by CountriesController#index as HTML
11
+ Rendered countries/index.html.erb within layouts/application (0.0ms)
12
+ Completed 200 OK in 6ms (Views: 5.9ms | ActiveRecord: 0.0ms)
13
+
14
+
15
+ Started GET "/assets/countries.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for ::1 at 2015-04-28 22:40:42 -0600
16
+
17
+
18
+ Started GET "/assets/countries.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-04-28 22:40:42 -0600
19
+
20
+
21
+ Started GET "/assets/application.self-fb28094035fc8f155b896e47c199355db7c84fc9d6214ed9800f1022ac2ece52.js?body=1" for ::1 at 2015-04-28 22:40:42 -0600
22
+
23
+
24
+ Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2015-04-28 22:40:42 -0600
25
+
26
+
27
+ Started GET "/" for ::1 at 2015-04-28 22:41:33 -0600
28
+ Processing by CountriesController#index as HTML
29
+ Rendered countries/index.html.erb within layouts/application (0.0ms)
30
+ Completed 200 OK in 6ms (Views: 6.0ms | ActiveRecord: 0.0ms)
31
+
32
+
33
+ Started GET "/" for ::1 at 2015-04-28 22:41:34 -0600
34
+ Processing by CountriesController#index as HTML
35
+ Rendered countries/index.html.erb within layouts/application (0.0ms)
36
+ Completed 200 OK in 7ms (Views: 7.2ms | ActiveRecord: 0.0ms)
37
+
38
+
39
+ Started GET "/assets/countries.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for ::1 at 2015-04-28 22:41:34 -0600
40
+
41
+
42
+ Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2015-04-28 22:41:34 -0600
43
+
44
+
45
+ Started GET "/assets/application.self-fb28094035fc8f155b896e47c199355db7c84fc9d6214ed9800f1022ac2ece52.js?body=1" for ::1 at 2015-04-28 22:41:34 -0600
46
+
47
+
48
+ Started GET "/assets/countries.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-04-28 22:41:34 -0600
49
+
50
+
51
+ Started GET "/" for ::1 at 2015-04-28 22:41:35 -0600
52
+ Processing by CountriesController#index as HTML
53
+ Rendered countries/index.html.erb within layouts/application (0.0ms)
54
+ Completed 200 OK in 7ms (Views: 6.6ms | ActiveRecord: 0.0ms)
55
+
56
+
57
+ Started GET "/assets/countries.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for ::1 at 2015-04-28 22:41:35 -0600
58
+
59
+
60
+ Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2015-04-28 22:41:35 -0600
61
+
62
+
63
+ Started GET "/assets/countries.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-04-28 22:41:35 -0600
64
+
65
+
66
+ Started GET "/assets/application.self-fb28094035fc8f155b896e47c199355db7c84fc9d6214ed9800f1022ac2ece52.js?body=1" for ::1 at 2015-04-28 22:41:35 -0600
67
+
68
+
69
+ Started GET "/" for ::1 at 2015-04-28 22:41:36 -0600
70
+ Processing by CountriesController#index as HTML
71
+ Rendered countries/index.html.erb within layouts/application (0.0ms)
72
+ Completed 200 OK in 7ms (Views: 6.5ms | ActiveRecord: 0.0ms)
73
+
74
+
75
+ Started GET "/assets/countries.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for ::1 at 2015-04-28 22:41:37 -0600
76
+
77
+
78
+ Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2015-04-28 22:41:37 -0600
79
+
80
+
81
+ Started GET "/assets/application.self-fb28094035fc8f155b896e47c199355db7c84fc9d6214ed9800f1022ac2ece52.js?body=1" for ::1 at 2015-04-28 22:41:37 -0600
82
+
83
+
84
+ Started GET "/assets/countries.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-04-28 22:41:37 -0600
85
+
86
+
87
+ Started GET "/" for ::1 at 2015-04-28 22:41:38 -0600
88
+ Processing by CountriesController#index as HTML
89
+ Rendered countries/index.html.erb within layouts/application (0.0ms)
90
+ Completed 200 OK in 10ms (Views: 9.8ms | ActiveRecord: 0.0ms)
91
+
92
+
93
+ Started GET "/" for ::1 at 2015-04-28 22:41:48 -0600
94
+ Processing by CountriesController#index as HTML
95
+ Rendered countries/index.html.haml within layouts/application (0.9ms)
96
+ Completed 200 OK in 80ms (Views: 79.5ms | ActiveRecord: 0.0ms)
97
+
98
+
99
+ Started GET "/" for ::1 at 2015-04-28 22:41:49 -0600
100
+ Processing by CountriesController#index as HTML
101
+ Rendered countries/index.html.haml within layouts/application (0.0ms)
102
+ Completed 200 OK in 7ms (Views: 6.5ms | ActiveRecord: 0.0ms)
103
+
104
+
105
+ Started GET "/" for ::1 at 2015-04-28 22:41:49 -0600
106
+ Processing by CountriesController#index as HTML
107
+ Rendered countries/index.html.haml within layouts/application (0.0ms)
108
+ Completed 200 OK in 7ms (Views: 6.8ms | ActiveRecord: 0.0ms)
109
+
110
+
111
+ Started GET "/assets/countries.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for ::1 at 2015-04-28 22:41:49 -0600
112
+
113
+
114
+ Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2015-04-28 22:41:49 -0600
115
+
116
+
117
+ Started GET "/assets/countries.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-04-28 22:41:49 -0600
118
+
119
+
120
+ Started GET "/assets/application.self-fb28094035fc8f155b896e47c199355db7c84fc9d6214ed9800f1022ac2ece52.js?body=1" for ::1 at 2015-04-28 22:41:49 -0600
121
+
122
+
123
+ Started GET "/" for ::1 at 2015-04-28 22:42:21 -0600
124
+ Processing by CountriesController#index as HTML
125
+ Rendered countries/index.html.haml within layouts/application (0.5ms)
126
+ Completed 200 OK in 7ms (Views: 7.2ms | ActiveRecord: 0.0ms)
127
+
128
+
129
+ Started GET "/assets/countries.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for ::1 at 2015-04-28 22:42:21 -0600
130
+
131
+
132
+ Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2015-04-28 22:42:21 -0600
133
+
134
+
135
+ Started GET "/assets/countries.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-04-28 22:42:21 -0600
136
+
137
+
138
+ Started GET "/assets/application.self-fb28094035fc8f155b896e47c199355db7c84fc9d6214ed9800f1022ac2ece52.js?body=1" for ::1 at 2015-04-28 22:42:21 -0600
139
+
140
+
141
+ Started GET "/" for ::1 at 2015-04-28 22:42:23 -0600
142
+ Processing by CountriesController#index as HTML
143
+ Rendered countries/index.html.haml within layouts/application (0.0ms)
144
+ Completed 200 OK in 7ms (Views: 6.8ms | ActiveRecord: 0.0ms)
145
+
146
+
147
+ Started GET "/assets/countries.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for ::1 at 2015-04-28 22:42:23 -0600
148
+
149
+
150
+ Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2015-04-28 22:42:23 -0600
151
+
152
+
153
+ Started GET "/assets/countries.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-04-28 22:42:23 -0600
154
+
155
+
156
+ Started GET "/assets/application.self-fb28094035fc8f155b896e47c199355db7c84fc9d6214ed9800f1022ac2ece52.js?body=1" for ::1 at 2015-04-28 22:42:23 -0600
157
+
158
+
159
+ Started GET "/" for ::1 at 2015-04-28 22:42:58 -0600
160
+
161
+ ActionController::RoutingError (The controller-level `respond_to' feature has been extracted to the `responders` gem. Add it to your Gemfile to continue using this feature:
162
+ gem 'responders', '~> 2.0'
163
+ Consult the Rails upgrade guide for details.):
164
+ app/controllers/countries_controller.rb:2:in `<class:CountriesController>'
165
+ app/controllers/countries_controller.rb:1:in `<top (required)>'
166
+
167
+
168
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms)
169
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.5ms)
170
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.8ms)
171
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms)
172
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (16.1ms)
173
+
174
+
175
+ Started GET "/" for ::1 at 2015-04-28 22:43:49 -0600
176
+
177
+ ActionController::RoutingError (The controller-level `respond_to' feature has been extracted to the `responders` gem. Add it to your Gemfile to continue using this feature:
178
+ gem 'responders', '~> 2.0'
179
+ Consult the Rails upgrade guide for details.):
180
+ app/controllers/countries_controller.rb:2:in `<class:CountriesController>'
181
+ app/controllers/countries_controller.rb:1:in `<top (required)>'
182
+
183
+
184
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
185
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.4ms)
186
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.7ms)
187
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
188
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (11.9ms)
189
+
190
+
191
+ Started GET "/" for ::1 at 2015-04-28 22:44:19 -0600
192
+ Processing by CountriesController#index as HTML
193
+ Rendered countries/index.html.haml within layouts/application (0.7ms)
194
+ Completed 200 OK in 80ms (Views: 80.2ms | ActiveRecord: 0.0ms)
195
+
196
+
197
+ Started GET "/assets/countries.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for ::1 at 2015-04-28 22:44:19 -0600
198
+
199
+
200
+ Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2015-04-28 22:44:19 -0600
201
+
202
+
203
+ Started GET "/assets/application.self-fb28094035fc8f155b896e47c199355db7c84fc9d6214ed9800f1022ac2ece52.js?body=1" for ::1 at 2015-04-28 22:44:19 -0600
204
+
205
+
206
+ Started GET "/assets/countries.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-04-28 22:44:19 -0600
207
+
208
+
209
+ Started GET "/" for ::1 at 2015-04-28 22:47:10 -0600
210
+ Processing by CountriesController#index as HTML
211
+ Rendered countries/index.html.haml within layouts/application (0.0ms)
212
+ Completed 200 OK in 6ms (Views: 5.9ms | ActiveRecord: 0.0ms)
213
+
214
+
215
+ Started GET "/assets/countries.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for ::1 at 2015-04-28 22:47:10 -0600
216
+
217
+
218
+ Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2015-04-28 22:47:10 -0600
219
+
220
+
221
+ Started GET "/assets/application.self-fb28094035fc8f155b896e47c199355db7c84fc9d6214ed9800f1022ac2ece52.js?body=1" for ::1 at 2015-04-28 22:47:10 -0600
222
+
223
+
224
+ Started GET "/assets/countries.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-04-28 22:47:10 -0600
225
+
226
+
227
+ Started GET "/" for ::1 at 2015-04-28 22:47:11 -0600
228
+ Processing by CountriesController#index as HTML
229
+ Rendered countries/index.html.haml within layouts/application (0.0ms)
230
+ Completed 200 OK in 18ms (Views: 18.2ms | ActiveRecord: 0.0ms)
231
+
232
+
233
+ Started GET "/assets/countries.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for ::1 at 2015-04-28 22:47:11 -0600
234
+
235
+
236
+ Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2015-04-28 22:47:11 -0600
237
+
238
+
239
+ Started GET "/assets/countries.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-04-28 22:47:11 -0600
240
+
241
+
242
+ Started GET "/assets/application.self-fb28094035fc8f155b896e47c199355db7c84fc9d6214ed9800f1022ac2ece52.js?body=1" for ::1 at 2015-04-28 22:47:11 -0600
243
+
244
+
245
+ Started GET "/" for ::1 at 2015-04-28 22:47:12 -0600
246
+ Processing by CountriesController#index as HTML
247
+ Rendered countries/index.html.haml within layouts/application (0.1ms)
248
+ Completed 200 OK in 7ms (Views: 6.5ms | ActiveRecord: 0.0ms)
249
+
250
+
251
+ Started GET "/assets/countries.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for ::1 at 2015-04-28 22:47:12 -0600
252
+
253
+
254
+ Started GET "/assets/countries.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-04-28 22:47:12 -0600
255
+
256
+
257
+ Started GET "/assets/application.self-fb28094035fc8f155b896e47c199355db7c84fc9d6214ed9800f1022ac2ece52.js?body=1" for ::1 at 2015-04-28 22:47:12 -0600
258
+
259
+
260
+ Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2015-04-28 22:47:12 -0600
261
+
262
+
263
+ Started GET "/" for ::1 at 2015-04-28 22:48:42 -0600
264
+ Processing by CountriesController#index as HTML
265
+ Rendered countries/index.html.haml within layouts/application (7.0ms)
266
+ Completed 500 Internal Server Error in 10ms (ActiveRecord: 0.0ms)
267
+
268
+ ActionView::Template::Error (undefined local variable or method `countries_search' for #<#<Class:0x000000049eaa08>:0x000000049e98d8>):
269
+ 1: = search_form_for [:admin, countries_search] do |f|
270
+ 2: = f.label :name_cont
271
+ 3: = f.search_field :name_cont
272
+ 4: = f.submit
273
+ app/views/countries/index.html.haml:1:in `_app_views_countries_index_html_haml___1106666736221870306_38445000'
274
+
275
+
276
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.1ms)
277
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms)
278
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (5.5ms)
279
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (18.1ms)
280
+
281
+
282
+ Started GET "/" for ::1 at 2015-04-28 22:49:00 -0600
283
+ Processing by CountriesController#index as HTML
284
+ Rendered countries/index.html.haml within layouts/application (3.3ms)
285
+ Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms)
286
+
287
+ ActionView::Template::Error (undefined local variable or method `countries_search' for #<#<Class:0x000000049eaa08>:0x00000004506a28>):
288
+ 1: = search_form_for [:admin, countries_search] do |f|
289
+ 2: = f.label :name_cont
290
+ 3: = f.search_field :name_cont
291
+ 4: = f.submit
292
+ app/views/countries/index.html.haml:1:in `_app_views_countries_index_html_haml___1106666736221870306_38445000'
293
+
294
+
295
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.2ms)
296
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms)
297
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
298
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (16.2ms)
299
+
300
+
301
+ Started GET "/" for ::1 at 2015-04-28 22:49:00 -0600
302
+ Processing by CountriesController#index as HTML
303
+ Rendered countries/index.html.haml within layouts/application (4.5ms)
304
+ Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms)
305
+
306
+ ActionView::Template::Error (undefined local variable or method `countries_search' for #<#<Class:0x000000049eaa08>:0x00000004415e20>):
307
+ 1: = search_form_for [:admin, countries_search] do |f|
308
+ 2: = f.label :name_cont
309
+ 3: = f.search_field :name_cont
310
+ 4: = f.submit
311
+ app/views/countries/index.html.haml:1:in `_app_views_countries_index_html_haml___1106666736221870306_38445000'
312
+
313
+
314
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.1ms)
315
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms)
316
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
317
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (13.2ms)
318
+
319
+
320
+ Started GET "/" for ::1 at 2015-04-28 22:49:01 -0600
321
+ Processing by CountriesController#index as HTML
322
+ Rendered countries/index.html.haml within layouts/application (3.6ms)
323
+ Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms)
324
+
325
+ ActionView::Template::Error (undefined local variable or method `countries_search' for #<#<Class:0x000000049eaa08>:0x0000000307efd8>):
326
+ 1: = search_form_for [:admin, countries_search] do |f|
327
+ 2: = f.label :name_cont
328
+ 3: = f.search_field :name_cont
329
+ 4: = f.submit
330
+ app/views/countries/index.html.haml:1:in `_app_views_countries_index_html_haml___1106666736221870306_38445000'
331
+
332
+
333
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.0ms)
334
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms)
335
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms)
336
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (15.6ms)
337
+
338
+
339
+ Started GET "/" for ::1 at 2015-04-28 22:49:01 -0600
340
+ Processing by CountriesController#index as HTML
341
+ Rendered countries/index.html.haml within layouts/application (3.7ms)
342
+ Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms)
343
+
344
+ ActionView::Template::Error (undefined local variable or method `countries_search' for #<#<Class:0x000000049eaa08>:0x00000002c7be18>):
345
+ 1: = search_form_for [:admin, countries_search] do |f|
346
+ 2: = f.label :name_cont
347
+ 3: = f.search_field :name_cont
348
+ 4: = f.submit
349
+ app/views/countries/index.html.haml:1:in `_app_views_countries_index_html_haml___1106666736221870306_38445000'
350
+
351
+
352
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.2ms)
353
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms)
354
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
355
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (13.4ms)
356
+
357
+
358
+ Started GET "/" for ::1 at 2015-04-28 22:49:58 -0600
359
+ Processing by CountriesController#index as HTML
360
+ Rendered countries/index.html.haml within layouts/application (4.8ms)
361
+ Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.0ms)
362
+
363
+ ActionView::Template::Error (undefined local variable or method `countries_search' for #<#<Class:0x00000005299050>:0x00000005293c90>):
364
+ 1: = search_form_for countries_search do |f|
365
+ 2: = f.label :name_cont
366
+ 3: = f.search_field :name_cont
367
+ 4: = f.submit
368
+ app/views/countries/index.html.haml:1:in `_app_views_countries_index_html_haml___1106666736221870306_43290440'
369
+
370
+
371
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.0ms)
372
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms)
373
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
374
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (13.1ms)
375
+
376
+
377
+ Started GET "/" for ::1 at 2015-04-28 22:49:59 -0600
378
+ Processing by CountriesController#index as HTML
379
+ Rendered countries/index.html.haml within layouts/application (3.4ms)
380
+ Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms)
381
+
382
+ ActionView::Template::Error (undefined local variable or method `countries_search' for #<#<Class:0x00000005299050>:0x00000005003d90>):
383
+ 1: = search_form_for countries_search do |f|
384
+ 2: = f.label :name_cont
385
+ 3: = f.search_field :name_cont
386
+ 4: = f.submit
387
+ app/views/countries/index.html.haml:1:in `_app_views_countries_index_html_haml___1106666736221870306_43290440'
388
+
389
+
390
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.1ms)
391
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms)
392
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
393
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (13.3ms)
394
+
395
+
396
+ Started GET "/" for ::1 at 2015-04-28 22:50:00 -0600
397
+ Processing by CountriesController#index as HTML
398
+ Rendered countries/index.html.haml within layouts/application (3.4ms)
399
+ Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms)
400
+
401
+ ActionView::Template::Error (undefined local variable or method `countries_search' for #<#<Class:0x00000005299050>:0x00000004dbc4d8>):
402
+ 1: = search_form_for countries_search do |f|
403
+ 2: = f.label :name_cont
404
+ 3: = f.search_field :name_cont
405
+ 4: = f.submit
406
+ app/views/countries/index.html.haml:1:in `_app_views_countries_index_html_haml___1106666736221870306_43290440'
407
+
408
+
409
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.1ms)
410
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms)
411
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
412
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (13.3ms)
413
+
414
+
415
+ Started GET "/" for ::1 at 2015-04-28 22:50:24 -0600
416
+ Processing by CountriesController#index as HTML
417
+ Rendered countries/index.html.haml within layouts/application (6.4ms)
418
+ Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.0ms)
419
+
420
+ ActionView::Template::Error (undefined local variable or method `countries_search' for #<#<Class:0x00000005b375b8>:0x00000005b36500>):
421
+ 1: = search_form_for countries_search do |f|
422
+ 2: = f.label :name_cont
423
+ 3: = f.search_field :name_cont
424
+ 4: = f.submit
425
+ app/views/countries/index.html.haml:1:in `_app_views_countries_index_html_haml__4000755939061508703_47527200'
426
+
427
+
428
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.1ms)
429
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms)
430
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (5.5ms)
431
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (18.0ms)
432
+
433
+
434
+ Started GET "/" for ::1 at 2015-04-28 22:50:25 -0600
435
+ Processing by CountriesController#index as HTML
436
+ Rendered countries/index.html.haml within layouts/application (3.6ms)
437
+ Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms)
438
+
439
+ ActionView::Template::Error (undefined local variable or method `countries_search' for #<#<Class:0x00000005b375b8>:0x00000005744118>):
440
+ 1: = search_form_for countries_search do |f|
441
+ 2: = f.label :name_cont
442
+ 3: = f.search_field :name_cont
443
+ 4: = f.submit
444
+ app/views/countries/index.html.haml:1:in `_app_views_countries_index_html_haml__4000755939061508703_47527200'
445
+
446
+
447
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.1ms)
448
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms)
449
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms)
450
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (13.2ms)
451
+
452
+
453
+ Started GET "/" for ::1 at 2015-04-28 22:52:22 -0600
454
+ Processing by CountriesController#index as HTML
455
+ Rendered countries/index.html.haml within layouts/application (1.8ms)
456
+ Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.0ms)
457
+
458
+ ActionView::Template::Error (No Ransack::Search object was provided to search_form_for!):
459
+ 1: = search_form_for resources_search do |f|
460
+ 2: = f.label :name_cont
461
+ 3: = f.search_field :name_cont
462
+ 4: = f.submit
463
+ app/views/countries/index.html.haml:1:in `_app_views_countries_index_html_haml__4000755939061508703_36153020'
464
+
465
+
466
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.0ms)
467
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms)
468
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
469
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (15.2ms)
470
+
471
+
472
+ Started GET "/" for ::1 at 2015-04-28 22:52:22 -0600
473
+ Processing by CountriesController#index as HTML
474
+ Rendered countries/index.html.haml within layouts/application (0.6ms)
475
+ Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
476
+
477
+ ActionView::Template::Error (No Ransack::Search object was provided to search_form_for!):
478
+ 1: = search_form_for resources_search do |f|
479
+ 2: = f.label :name_cont
480
+ 3: = f.search_field :name_cont
481
+ 4: = f.submit
482
+ app/views/countries/index.html.haml:1:in `_app_views_countries_index_html_haml__4000755939061508703_36153020'
483
+
484
+
485
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.7ms)
486
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms)
487
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
488
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (14.4ms)
489
+
490
+
491
+ Started GET "/" for ::1 at 2015-04-28 22:54:52 -0600
492
+ Processing by CountriesController#index as HTML
493
+ Rendered countries/index.html.haml within layouts/application (6.6ms)
494
+ Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.0ms)
495
+
496
+ ActionView::Template::Error (undefined local variable or method `countries_search' for #<#<Class:0x0000000433a730>:0x00000004339650>):
497
+ 1: = search_form_for countries_search do |f|
498
+ 2: = f.label :name_cont
499
+ 3: = f.search_field :name_cont
500
+ 4: = f.submit
501
+ app/views/countries/index.html.haml:1:in `_app_views_countries_index_html_haml__3688350787509785259_34975160'
502
+
503
+
504
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.1ms)
505
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms)
506
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (7.6ms)
507
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (20.2ms)
508
+
509
+
510
+ Started GET "/" for ::1 at 2015-04-28 22:54:52 -0600
511
+ Processing by CountriesController#index as HTML
512
+ Rendered countries/index.html.haml within layouts/application (4.3ms)
513
+ Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms)
514
+
515
+ ActionView::Template::Error (undefined local variable or method `countries_search' for #<#<Class:0x0000000433a730>:0x00000003ec8788>):
516
+ 1: = search_form_for countries_search do |f|
517
+ 2: = f.label :name_cont
518
+ 3: = f.search_field :name_cont
519
+ 4: = f.submit
520
+ app/views/countries/index.html.haml:1:in `_app_views_countries_index_html_haml__3688350787509785259_34975160'
521
+
522
+
523
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.1ms)
524
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms)
525
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
526
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (13.2ms)
527
+
528
+
529
+ Started GET "/" for ::1 at 2015-04-28 22:56:53 -0600
530
+
531
+ ActionController::RoutingError (undefined method `resource_search' for class `CountriesController'):
532
+ app/controllers/countries_controller.rb:2:in `<class:CountriesController>'
533
+ app/controllers/countries_controller.rb:1:in `<top (required)>'
534
+
535
+
536
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms)
537
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms)
538
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.3ms)
539
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (5.6ms)
540
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (21.5ms)
541
+
542
+
543
+ Started GET "/" for ::1 at 2015-04-28 22:58:02 -0600
544
+
545
+ ActionController::RoutingError (undefined method `resources_method_names' for #<Resources::Configuration:0x000000064006b8>):
546
+ app/controllers/countries_controller.rb:2:in `<class:CountriesController>'
547
+ app/controllers/countries_controller.rb:1:in `<top (required)>'
548
+
549
+
550
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms)
551
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms)
552
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.4ms)
553
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (5.7ms)
554
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (21.9ms)
555
+
556
+
557
+ Started GET "/" for ::1 at 2015-04-28 22:58:03 -0600
558
+
559
+ ActionController::RoutingError (undefined method `resources_method_names' for #<Resources::Configuration:0x000000029db758>):
560
+ app/controllers/countries_controller.rb:2:in `<class:CountriesController>'
561
+ app/controllers/countries_controller.rb:1:in `<top (required)>'
562
+
563
+
564
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
565
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms)
566
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.7ms)
567
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
568
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (13.9ms)
569
+
570
+
571
+ Started GET "/" for ::1 at 2015-04-28 22:58:04 -0600
572
+
573
+ ActionController::RoutingError (undefined method `resources_method_names' for #<Resources::Configuration:0x00000005e1ddb8>):
574
+ app/controllers/countries_controller.rb:2:in `<class:CountriesController>'
575
+ app/controllers/countries_controller.rb:1:in `<top (required)>'
576
+
577
+
578
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
579
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms)
580
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.7ms)
581
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
582
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (13.8ms)
583
+
584
+
585
+ Started GET "/" for ::1 at 2015-04-28 22:58:19 -0600
586
+
587
+ ActionController::RoutingError (undefined method `resource_search' for class `CountriesController'):
588
+ app/controllers/countries_controller.rb:2:in `<class:CountriesController>'
589
+ app/controllers/countries_controller.rb:1:in `<top (required)>'
590
+
591
+
592
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms)
593
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms)
594
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.3ms)
595
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (5.6ms)
596
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (21.4ms)
597
+
598
+
599
+ Started GET "/" for ::1 at 2015-04-28 22:58:20 -0600
600
+
601
+ ActionController::RoutingError (undefined method `resource_search' for class `CountriesController'):
602
+ app/controllers/countries_controller.rb:2:in `<class:CountriesController>'
603
+ app/controllers/countries_controller.rb:1:in `<top (required)>'
604
+
605
+
606
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms)
607
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms)
608
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.7ms)
609
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms)
610
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (14.1ms)
611
+
612
+
613
+ Started GET "/" for ::1 at 2015-04-28 22:59:11 -0600
614
+
615
+ ActionController::RoutingError (undefined method `resource_search' for class `CountriesController'):
616
+ app/controllers/countries_controller.rb:2:in `<class:CountriesController>'
617
+ app/controllers/countries_controller.rb:1:in `<top (required)>'
618
+
619
+
620
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms)
621
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms)
622
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.5ms)
623
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (5.9ms)
624
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (22.0ms)
625
+
626
+
627
+ Started GET "/" for ::1 at 2015-04-28 23:01:23 -0600
628
+
629
+ ActionController::RoutingError (undefined method `resource_search' for class `CountriesController'):
630
+ app/controllers/countries_controller.rb:2:in `<class:CountriesController>'
631
+ app/controllers/countries_controller.rb:1:in `<top (required)>'
632
+
633
+
634
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms)
635
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms)
636
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.3ms)
637
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (5.7ms)
638
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (22.0ms)
639
+
640
+
641
+ Started GET "/" for ::1 at 2015-04-28 23:01:24 -0600
642
+
643
+ ActionController::RoutingError (undefined method `resource_search' for class `CountriesController'):
644
+ app/controllers/countries_controller.rb:2:in `<class:CountriesController>'
645
+ app/controllers/countries_controller.rb:1:in `<top (required)>'
646
+
647
+
648
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
649
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms)
650
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.7ms)
651
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
652
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (13.9ms)
653
+
654
+
655
+ Started GET "/" for ::1 at 2015-04-28 23:02:12 -0600
656
+
657
+ ActionController::RoutingError (undefined method `resource_search' for class `CountriesController'):
658
+ app/controllers/countries_controller.rb:2:in `<class:CountriesController>'
659
+ app/controllers/countries_controller.rb:1:in `<top (required)>'
660
+
661
+
662
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms)
663
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms)
664
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.3ms)
665
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (5.6ms)
666
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (21.4ms)
667
+
668
+
669
+ Started GET "/" for ::1 at 2015-04-28 23:02:28 -0600
670
+
671
+ ActionController::RoutingError (undefined method `resource_search' for class `CountriesController'):
672
+ app/controllers/countries_controller.rb:2:in `<class:CountriesController>'
673
+ app/controllers/countries_controller.rb:1:in `<top (required)>'
674
+
675
+
676
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms)
677
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms)
678
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.3ms)
679
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (5.6ms)
680
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (21.9ms)
681
+
682
+
683
+ Started GET "/" for ::1 at 2015-04-28 23:02:29 -0600
684
+
685
+ ActionController::RoutingError (undefined method `resource_search' for class `CountriesController'):
686
+ app/controllers/countries_controller.rb:2:in `<class:CountriesController>'
687
+ app/controllers/countries_controller.rb:1:in `<top (required)>'
688
+
689
+
690
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms)
691
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms)
692
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.8ms)
693
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms)
694
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (14.3ms)
695
+
696
+
697
+ Started GET "/" for ::1 at 2015-04-28 23:02:30 -0600
698
+
699
+ ActionController::RoutingError (undefined method `resource_search' for class `CountriesController'):
700
+ app/controllers/countries_controller.rb:2:in `<class:CountriesController>'
701
+ app/controllers/countries_controller.rb:1:in `<top (required)>'
702
+
703
+
704
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms)
705
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms)
706
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.7ms)
707
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
708
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (13.9ms)
709
+
710
+
711
+ Started GET "/" for ::1 at 2015-04-28 23:02:30 -0600
712
+
713
+ ActionController::RoutingError (undefined method `resource_search' for class `CountriesController'):
714
+ app/controllers/countries_controller.rb:2:in `<class:CountriesController>'
715
+ app/controllers/countries_controller.rb:1:in `<top (required)>'
716
+
717
+
718
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
719
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms)
720
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.7ms)
721
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms)
722
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (14.0ms)
723
+
724
+
725
+ Started GET "/" for ::1 at 2015-04-28 23:02:30 -0600
726
+
727
+ ActionController::RoutingError (undefined method `resource_search' for class `CountriesController'):
728
+ app/controllers/countries_controller.rb:2:in `<class:CountriesController>'
729
+ app/controllers/countries_controller.rb:1:in `<top (required)>'
730
+
731
+
732
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms)
733
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms)
734
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.7ms)
735
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms)
736
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (14.1ms)
737
+
738
+
739
+ Started GET "/" for ::1 at 2015-04-28 23:02:31 -0600
740
+
741
+ ActionController::RoutingError (undefined method `resource_search' for class `CountriesController'):
742
+ app/controllers/countries_controller.rb:2:in `<class:CountriesController>'
743
+ app/controllers/countries_controller.rb:1:in `<top (required)>'
744
+
745
+
746
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms)
747
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms)
748
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.8ms)
749
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms)
750
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (14.1ms)
751
+
752
+
753
+ Started GET "/" for ::1 at 2015-04-28 23:02:31 -0600
754
+
755
+ ActionController::RoutingError (undefined method `resource_search' for class `CountriesController'):
756
+ app/controllers/countries_controller.rb:2:in `<class:CountriesController>'
757
+ app/controllers/countries_controller.rb:1:in `<top (required)>'
758
+
759
+
760
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
761
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms)
762
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.7ms)
763
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
764
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (13.9ms)
765
+
766
+
767
+ Started GET "/" for ::1 at 2015-04-28 23:02:47 -0600
768
+ Processing by CountriesController#index as HTML
769
+ Rendered countries/index.html.haml within layouts/application (6.8ms)
770
+ Completed 500 Internal Server Error in 10ms (ActiveRecord: 0.0ms)
771
+
772
+ ActionView::Template::Error (undefined local variable or method `countries_search' for #<#<Class:0x000000053fe238>:0x000000053fd180>):
773
+ 1: = search_form_for countries_search do |f|
774
+ 2: = f.label :name_cont
775
+ 3: = f.search_field :name_cont
776
+ 4: = f.submit
777
+ app/views/countries/index.html.haml:1:in `_app_views_countries_index_html_haml__4206067768175779331_43731260'
778
+
779
+
780
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.1ms)
781
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms)
782
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (5.7ms)
783
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (18.3ms)
784
+
785
+
786
+ Started GET "/" for ::1 at 2015-04-28 23:04:30 -0600
787
+ Processing by CountriesController#index as HTML
788
+ Rendered countries/index.html.haml within layouts/application (1.7ms)
789
+ Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.0ms)
790
+
791
+ ActionView::Template::Error (No Ransack::Search object was provided to search_form_for!):
792
+ 1: = search_form_for resources_search do |f|
793
+ 2: = f.label :name_cont
794
+ 3: = f.search_field :name_cont
795
+ 4: = f.submit
796
+ app/views/countries/index.html.haml:1:in `_app_views_countries_index_html_haml__4206067768175779331_41871040'
797
+
798
+
799
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.2ms)
800
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms)
801
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
802
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (13.2ms)
803
+
804
+
805
+ Started GET "/" for ::1 at 2015-04-28 23:04:31 -0600
806
+ Processing by CountriesController#index as HTML
807
+ Rendered countries/index.html.haml within layouts/application (0.6ms)
808
+ Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms)
809
+
810
+ ActionView::Template::Error (No Ransack::Search object was provided to search_form_for!):
811
+ 1: = search_form_for resources_search do |f|
812
+ 2: = f.label :name_cont
813
+ 3: = f.search_field :name_cont
814
+ 4: = f.submit
815
+ app/views/countries/index.html.haml:1:in `_app_views_countries_index_html_haml__4206067768175779331_41871040'
816
+
817
+
818
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.3ms)
819
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms)
820
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms)
821
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (13.6ms)
822
+
823
+
824
+ Started GET "/" for ::1 at 2015-04-28 23:04:31 -0600
825
+ Processing by CountriesController#index as HTML
826
+ Rendered countries/index.html.haml within layouts/application (0.6ms)
827
+ Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms)
828
+
829
+ ActionView::Template::Error (No Ransack::Search object was provided to search_form_for!):
830
+ 1: = search_form_for resources_search do |f|
831
+ 2: = f.label :name_cont
832
+ 3: = f.search_field :name_cont
833
+ 4: = f.submit
834
+ app/views/countries/index.html.haml:1:in `_app_views_countries_index_html_haml__4206067768175779331_41871040'
835
+
836
+
837
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.5ms)
838
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms)
839
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
840
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (15.2ms)
841
+
842
+
843
+ Started GET "/" for ::1 at 2015-04-28 23:04:31 -0600
844
+ Processing by CountriesController#index as HTML
845
+ Rendered countries/index.html.haml within layouts/application (0.6ms)
846
+ Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms)
847
+
848
+ ActionView::Template::Error (No Ransack::Search object was provided to search_form_for!):
849
+ 1: = search_form_for resources_search do |f|
850
+ 2: = f.label :name_cont
851
+ 3: = f.search_field :name_cont
852
+ 4: = f.submit
853
+ app/views/countries/index.html.haml:1:in `_app_views_countries_index_html_haml__4206067768175779331_41871040'
854
+
855
+
856
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.6ms)
857
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms)
858
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
859
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (13.8ms)
860
+
861
+
862
+ Started GET "/" for ::1 at 2015-04-28 23:05:17 -0600
863
+ Processing by CountriesController#index as HTML
864
+ Rendered countries/index.html.haml within layouts/application (6.8ms)
865
+ Completed 500 Internal Server Error in 10ms (ActiveRecord: 0.0ms)
866
+
867
+ ActionView::Template::Error (undefined local variable or method `countries_search' for #<#<Class:0x00000004ed3970>:0x00000004ed2980>):
868
+ 1: = search_form_for countries_search do |f|
869
+ 2: = f.label :name_cont
870
+ 3: = f.search_field :name_cont
871
+ 4: = f.submit
872
+ app/views/countries/index.html.haml:1:in `_app_views_countries_index_html_haml___507869270920858474_44349040'
873
+
874
+
875
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.1ms)
876
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms)
877
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (5.5ms)
878
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (18.2ms)
879
+
880
+
881
+ Started GET "/" for ::1 at 2015-04-28 23:05:18 -0600
882
+ Processing by CountriesController#index as HTML
883
+ Rendered countries/index.html.haml within layouts/application (3.8ms)
884
+ Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms)
885
+
886
+ ActionView::Template::Error (undefined local variable or method `countries_search' for #<#<Class:0x00000004ed3970>:0x000000050a65e0>):
887
+ 1: = search_form_for countries_search do |f|
888
+ 2: = f.label :name_cont
889
+ 3: = f.search_field :name_cont
890
+ 4: = f.submit
891
+ app/views/countries/index.html.haml:1:in `_app_views_countries_index_html_haml___507869270920858474_44349040'
892
+
893
+
894
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.1ms)
895
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms)
896
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms)
897
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (13.3ms)
898
+
899
+
900
+ Started GET "/" for ::1 at 2015-04-28 23:05:18 -0600
901
+ Processing by CountriesController#index as HTML
902
+ Rendered countries/index.html.haml within layouts/application (4.7ms)
903
+ Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.0ms)
904
+
905
+ ActionView::Template::Error (undefined local variable or method `countries_search' for #<#<Class:0x00000004ed3970>:0x00000003e96878>):
906
+ 1: = search_form_for countries_search do |f|
907
+ 2: = f.label :name_cont
908
+ 3: = f.search_field :name_cont
909
+ 4: = f.submit
910
+ app/views/countries/index.html.haml:1:in `_app_views_countries_index_html_haml___507869270920858474_44349040'
911
+
912
+
913
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.1ms)
914
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms)
915
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
916
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (13.2ms)
917
+
918
+
919
+ Started GET "/" for ::1 at 2015-04-28 23:05:19 -0600
920
+ Processing by CountriesController#index as HTML
921
+ Rendered countries/index.html.haml within layouts/application (4.2ms)
922
+ Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms)
923
+
924
+ ActionView::Template::Error (undefined local variable or method `countries_search' for #<#<Class:0x00000004ed3970>:0x00000003a89550>):
925
+ 1: = search_form_for countries_search do |f|
926
+ 2: = f.label :name_cont
927
+ 3: = f.search_field :name_cont
928
+ 4: = f.submit
929
+ app/views/countries/index.html.haml:1:in `_app_views_countries_index_html_haml___507869270920858474_44349040'
930
+
931
+
932
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.2ms)
933
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms)
934
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
935
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (13.4ms)
936
+
937
+
938
+ Started GET "/" for ::1 at 2015-04-28 23:05:19 -0600
939
+ Processing by CountriesController#index as HTML
940
+ Rendered countries/index.html.haml within layouts/application (3.5ms)
941
+ Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms)
942
+
943
+ ActionView::Template::Error (undefined local variable or method `countries_search' for #<#<Class:0x00000004ed3970>:0x00000002af1ea8>):
944
+ 1: = search_form_for countries_search do |f|
945
+ 2: = f.label :name_cont
946
+ 3: = f.search_field :name_cont
947
+ 4: = f.submit
948
+ app/views/countries/index.html.haml:1:in `_app_views_countries_index_html_haml___507869270920858474_44349040'
949
+
950
+
951
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.4ms)
952
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms)
953
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
954
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (15.9ms)
955
+
956
+
957
+ Started GET "/" for ::1 at 2015-04-28 23:05:19 -0600
958
+ Processing by CountriesController#index as HTML
959
+ Rendered countries/index.html.haml within layouts/application (4.5ms)
960
+ Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.0ms)
961
+
962
+ ActionView::Template::Error (undefined local variable or method `countries_search' for #<#<Class:0x00000004ed3970>:0x00000005fb9af0>):
963
+ 1: = search_form_for countries_search do |f|
964
+ 2: = f.label :name_cont
965
+ 3: = f.search_field :name_cont
966
+ 4: = f.submit
967
+ app/views/countries/index.html.haml:1:in `_app_views_countries_index_html_haml___507869270920858474_44349040'
968
+
969
+
970
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.0ms)
971
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms)
972
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
973
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (13.2ms)
974
+
975
+
976
+ Started GET "/" for ::1 at 2015-04-28 23:05:19 -0600
977
+ Processing by CountriesController#index as HTML
978
+ Rendered countries/index.html.haml within layouts/application (3.4ms)
979
+ Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms)
980
+
981
+ ActionView::Template::Error (undefined local variable or method `countries_search' for #<#<Class:0x00000004ed3970>:0x00000005d495e0>):
982
+ 1: = search_form_for countries_search do |f|
983
+ 2: = f.label :name_cont
984
+ 3: = f.search_field :name_cont
985
+ 4: = f.submit
986
+ app/views/countries/index.html.haml:1:in `_app_views_countries_index_html_haml___507869270920858474_44349040'
987
+
988
+
989
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.1ms)
990
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms)
991
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
992
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (13.2ms)
993
+
994
+
995
+ Started GET "/" for ::1 at 2015-04-28 23:07:01 -0600
996
+ Processing by CountriesController#index as HTML
997
+ Rendered countries/index.html.haml within layouts/application (5.4ms)
998
+ Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.0ms)
999
+
1000
+ ActionView::Template::Error (undefined local variable or method `countries_search' for #<#<Class:0x00000005908300>:0x000000059031c0>):
1001
+ 1: = search_form_for countries_search do |f|
1002
+ 2: = f.label :name_cont
1003
+ 3: = f.search_field :name_cont
1004
+ 4: = f.submit
1005
+ app/views/countries/index.html.haml:1:in `_app_views_countries_index_html_haml___507869270920858474_44349040'
1006
+
1007
+
1008
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.1ms)
1009
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms)
1010
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
1011
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (13.3ms)
1012
+
1013
+
1014
+ Started GET "/" for ::1 at 2015-04-28 23:15:02 -0600
1015
+ Processing by CountriesController#index as HTML
1016
+ Rendered countries/index.html.haml within layouts/application (6.3ms)
1017
+ Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.0ms)
1018
+
1019
+ ActionView::Template::Error (undefined local variable or method `countries_search' for #<#<Class:0x000000041db880>:0x000000041da840>):
1020
+ 1: = search_form_for countries_search do |f|
1021
+ 2: = f.label :name_cont
1022
+ 3: = f.search_field :name_cont
1023
+ 4: = f.submit
1024
+ app/views/countries/index.html.haml:1:in `_app_views_countries_index_html_haml__341549105142797272_34223900'
1025
+
1026
+
1027
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.1ms)
1028
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms)
1029
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (5.4ms)
1030
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (18.0ms)
1031
+
1032
+
1033
+ Started GET "/" for ::1 at 2015-04-28 23:19:25 -0600
1034
+
1035
+ SyntaxError (/home/shared-data/projects/ruby/engines/resources/test/dummy/app/controllers/countries_controller.rb:12: syntax error, unexpected $undefined
1036
+ puts "\n\n\n #{self.class.resource_configuration.inspect.to_s\n\n
1037
+ ^
1038
+ /home/shared-data/projects/ruby/engines/resources/test/dummy/app/controllers/countries_controller.rb:27: syntax error, unexpected keyword_end, expecting tSTRING_DEND):
1039
+ app/controllers/countries_controller.rb:12: syntax error, unexpected $undefined
1040
+ app/controllers/countries_controller.rb:27: syntax error, unexpected keyword_end, expecting tSTRING_DEND
1041
+
1042
+
1043
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (2.6ms)
1044
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms)
1045
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (5.5ms)
1046
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (16.6ms)
1047
+
1048
+
1049
+ Started GET "/" for ::1 at 2015-04-28 23:19:26 -0600
1050
+
1051
+ SyntaxError (/home/shared-data/projects/ruby/engines/resources/test/dummy/app/controllers/countries_controller.rb:12: syntax error, unexpected $undefined
1052
+ puts "\n\n\n #{self.class.resource_configuration.inspect.to_s\n\n
1053
+ ^
1054
+ /home/shared-data/projects/ruby/engines/resources/test/dummy/app/controllers/countries_controller.rb:27: syntax error, unexpected keyword_end, expecting tSTRING_DEND):
1055
+ app/controllers/countries_controller.rb:12: syntax error, unexpected $undefined
1056
+ app/controllers/countries_controller.rb:27: syntax error, unexpected keyword_end, expecting tSTRING_DEND
1057
+
1058
+
1059
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (2.6ms)
1060
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
1061
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms)
1062
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (11.3ms)
1063
+
1064
+
1065
+ Started GET "/" for ::1 at 2015-04-28 23:19:27 -0600
1066
+
1067
+ SyntaxError (/home/shared-data/projects/ruby/engines/resources/test/dummy/app/controllers/countries_controller.rb:12: syntax error, unexpected $undefined
1068
+ puts "\n\n\n #{self.class.resource_configuration.inspect.to_s\n\n
1069
+ ^
1070
+ /home/shared-data/projects/ruby/engines/resources/test/dummy/app/controllers/countries_controller.rb:27: syntax error, unexpected keyword_end, expecting tSTRING_DEND):
1071
+ app/controllers/countries_controller.rb:12: syntax error, unexpected $undefined
1072
+ app/controllers/countries_controller.rb:27: syntax error, unexpected keyword_end, expecting tSTRING_DEND
1073
+
1074
+
1075
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (2.5ms)
1076
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
1077
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
1078
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (11.2ms)
1079
+
1080
+
1081
+ Started GET "/" for ::1 at 2015-04-28 23:19:28 -0600
1082
+
1083
+ SyntaxError (/home/shared-data/projects/ruby/engines/resources/test/dummy/app/controllers/countries_controller.rb:12: syntax error, unexpected $undefined
1084
+ puts "\n\n\n #{self.class.resource_configuration.inspect.to_s\n\n
1085
+ ^
1086
+ /home/shared-data/projects/ruby/engines/resources/test/dummy/app/controllers/countries_controller.rb:27: syntax error, unexpected keyword_end, expecting tSTRING_DEND):
1087
+ app/controllers/countries_controller.rb:12: syntax error, unexpected $undefined
1088
+ app/controllers/countries_controller.rb:27: syntax error, unexpected keyword_end, expecting tSTRING_DEND
1089
+
1090
+
1091
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (2.6ms)
1092
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
1093
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
1094
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (11.4ms)
1095
+
1096
+
1097
+ Started GET "/" for ::1 at 2015-04-28 23:19:29 -0600
1098
+
1099
+ SyntaxError (/home/shared-data/projects/ruby/engines/resources/test/dummy/app/controllers/countries_controller.rb:12: syntax error, unexpected $undefined
1100
+ puts "\n\n\n #{self.class.resource_configuration.inspect.to_s\n\n
1101
+ ^
1102
+ /home/shared-data/projects/ruby/engines/resources/test/dummy/app/controllers/countries_controller.rb:27: syntax error, unexpected keyword_end, expecting tSTRING_DEND):
1103
+ app/controllers/countries_controller.rb:12: syntax error, unexpected $undefined
1104
+ app/controllers/countries_controller.rb:27: syntax error, unexpected keyword_end, expecting tSTRING_DEND
1105
+
1106
+
1107
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (2.6ms)
1108
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
1109
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
1110
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (11.2ms)
1111
+
1112
+
1113
+ Started GET "/" for ::1 at 2015-04-28 23:19:30 -0600
1114
+
1115
+ SyntaxError (/home/shared-data/projects/ruby/engines/resources/test/dummy/app/controllers/countries_controller.rb:12: syntax error, unexpected $undefined
1116
+ puts "\n\n\n #{self.class.resource_configuration.inspect.to_s\n\n
1117
+ ^
1118
+ /home/shared-data/projects/ruby/engines/resources/test/dummy/app/controllers/countries_controller.rb:27: syntax error, unexpected keyword_end, expecting tSTRING_DEND):
1119
+ app/controllers/countries_controller.rb:12: syntax error, unexpected $undefined
1120
+ app/controllers/countries_controller.rb:27: syntax error, unexpected keyword_end, expecting tSTRING_DEND
1121
+
1122
+
1123
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (2.6ms)
1124
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
1125
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
1126
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (11.2ms)
1127
+
1128
+
1129
+ Started GET "/" for ::1 at 2015-04-28 23:19:31 -0600
1130
+
1131
+ SyntaxError (/home/shared-data/projects/ruby/engines/resources/test/dummy/app/controllers/countries_controller.rb:12: syntax error, unexpected $undefined
1132
+ puts "\n\n\n #{self.class.resource_configuration.inspect.to_s\n\n
1133
+ ^
1134
+ /home/shared-data/projects/ruby/engines/resources/test/dummy/app/controllers/countries_controller.rb:27: syntax error, unexpected keyword_end, expecting tSTRING_DEND):
1135
+ app/controllers/countries_controller.rb:12: syntax error, unexpected $undefined
1136
+ app/controllers/countries_controller.rb:27: syntax error, unexpected keyword_end, expecting tSTRING_DEND
1137
+
1138
+
1139
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (2.6ms)
1140
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
1141
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
1142
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (11.2ms)
1143
+
1144
+
1145
+ Started GET "/" for ::1 at 2015-04-28 23:22:32 -0600
1146
+
1147
+ SyntaxError (/home/shared-data/projects/ruby/engines/resources/test/dummy/app/controllers/countries_controller.rb:19: syntax error, unexpected tIDENTIFIER, expecting keyword_end
1148
+ flash[:notice] = I18n.t("app.record_successfully_created")
1149
+ ^
1150
+ /home/shared-data/projects/ruby/engines/resources/test/dummy/app/controllers/countries_controller.rb:19: unterminated string meets end of file
1151
+ /home/shared-data/projects/ruby/engines/resources/test/dummy/app/controllers/countries_controller.rb:19: syntax error, unexpected end-of-input, expecting keyword_end):
1152
+ app/controllers/countries_controller.rb:19: syntax error, unexpected tIDENTIFIER, expecting keyword_end
1153
+ app/controllers/countries_controller.rb:19: unterminated string meets end of file
1154
+ app/controllers/countries_controller.rb:19: syntax error, unexpected end-of-input, expecting keyword_end
1155
+
1156
+
1157
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (2.7ms)
1158
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms)
1159
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (5.7ms)
1160
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (17.2ms)
1161
+
1162
+
1163
+ Started GET "/" for ::1 at 2015-04-28 23:22:33 -0600
1164
+
1165
+ SyntaxError (/home/shared-data/projects/ruby/engines/resources/test/dummy/app/controllers/countries_controller.rb:19: syntax error, unexpected tIDENTIFIER, expecting keyword_end
1166
+ flash[:notice] = I18n.t("app.record_successfully_created")
1167
+ ^
1168
+ /home/shared-data/projects/ruby/engines/resources/test/dummy/app/controllers/countries_controller.rb:19: unterminated string meets end of file
1169
+ /home/shared-data/projects/ruby/engines/resources/test/dummy/app/controllers/countries_controller.rb:19: syntax error, unexpected end-of-input, expecting keyword_end):
1170
+ app/controllers/countries_controller.rb:19: syntax error, unexpected tIDENTIFIER, expecting keyword_end
1171
+ app/controllers/countries_controller.rb:19: unterminated string meets end of file
1172
+ app/controllers/countries_controller.rb:19: syntax error, unexpected end-of-input, expecting keyword_end
1173
+
1174
+
1175
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (2.6ms)
1176
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
1177
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
1178
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (11.2ms)
1179
+
1180
+
1181
+ Started GET "/" for ::1 at 2015-04-28 23:22:57 -0600
1182
+ Processing by CountriesController#index as HTML
1183
+ Rendered countries/index.html.haml within layouts/application (6.7ms)
1184
+ Completed 500 Internal Server Error in 10ms (ActiveRecord: 0.0ms)
1185
+
1186
+ ActionView::Template::Error (undefined local variable or method `countries_search' for #<#<Class:0x00000004abc0a8>:0x00000004ab6d38>):
1187
+ 1: = search_form_for countries_search do |f|
1188
+ 2: = f.label :name_cont
1189
+ 3: = f.search_field :name_cont
1190
+ 4: = f.submit
1191
+ app/views/countries/index.html.haml:1:in `_app_views_countries_index_html_haml__3430805923051122352_38980460'
1192
+
1193
+
1194
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.1ms)
1195
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms)
1196
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (6.9ms)
1197
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (19.4ms)
1198
+
1199
+
1200
+ Started GET "/" for ::1 at 2015-04-28 23:22:59 -0600
1201
+ Processing by CountriesController#index as HTML
1202
+ Rendered countries/index.html.haml within layouts/application (5.5ms)
1203
+ Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.0ms)
1204
+
1205
+ ActionView::Template::Error (undefined local variable or method `countries_search' for #<#<Class:0x00000004abc0a8>:0x000000047b3e38>):
1206
+ 1: = search_form_for countries_search do |f|
1207
+ 2: = f.label :name_cont
1208
+ 3: = f.search_field :name_cont
1209
+ 4: = f.submit
1210
+ app/views/countries/index.html.haml:1:in `_app_views_countries_index_html_haml__3430805923051122352_38980460'
1211
+
1212
+
1213
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.1ms)
1214
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms)
1215
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
1216
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (13.1ms)
1217
+
1218
+
1219
+ Started GET "/" for ::1 at 2015-04-28 23:22:59 -0600
1220
+ Processing by CountriesController#index as HTML
1221
+ Rendered countries/index.html.haml within layouts/application (3.5ms)
1222
+ Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms)
1223
+
1224
+ ActionView::Template::Error (undefined local variable or method `countries_search' for #<#<Class:0x00000004abc0a8>:0x000000045f63c0>):
1225
+ 1: = search_form_for countries_search do |f|
1226
+ 2: = f.label :name_cont
1227
+ 3: = f.search_field :name_cont
1228
+ 4: = f.submit
1229
+ app/views/countries/index.html.haml:1:in `_app_views_countries_index_html_haml__3430805923051122352_38980460'
1230
+
1231
+
1232
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.1ms)
1233
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms)
1234
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
1235
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (13.2ms)
1236
+
1237
+
1238
+ Started GET "/" for ::1 at 2015-04-28 23:23:00 -0600
1239
+ Processing by CountriesController#index as HTML
1240
+ Rendered countries/index.html.haml within layouts/application (4.4ms)
1241
+ Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms)
1242
+
1243
+ ActionView::Template::Error (undefined local variable or method `countries_search' for #<#<Class:0x00000004abc0a8>:0x00000004424330>):
1244
+ 1: = search_form_for countries_search do |f|
1245
+ 2: = f.label :name_cont
1246
+ 3: = f.search_field :name_cont
1247
+ 4: = f.submit
1248
+ app/views/countries/index.html.haml:1:in `_app_views_countries_index_html_haml__3430805923051122352_38980460'
1249
+
1250
+
1251
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.1ms)
1252
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms)
1253
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
1254
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (13.2ms)
1255
+
1256
+
1257
+ Started GET "/" for ::1 at 2015-04-28 23:23:00 -0600
1258
+ Processing by CountriesController#index as HTML
1259
+ Rendered countries/index.html.haml within layouts/application (4.3ms)
1260
+ Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms)
1261
+
1262
+ ActionView::Template::Error (undefined local variable or method `countries_search' for #<#<Class:0x00000004abc0a8>:0x0000000418da68>):
1263
+ 1: = search_form_for countries_search do |f|
1264
+ 2: = f.label :name_cont
1265
+ 3: = f.search_field :name_cont
1266
+ 4: = f.submit
1267
+ app/views/countries/index.html.haml:1:in `_app_views_countries_index_html_haml__3430805923051122352_38980460'
1268
+
1269
+
1270
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.1ms)
1271
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms)
1272
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
1273
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (13.5ms)
1274
+
1275
+
1276
+ Started GET "/" for ::1 at 2015-04-28 23:23:00 -0600
1277
+ Processing by CountriesController#index as HTML
1278
+ Rendered countries/index.html.haml within layouts/application (3.7ms)
1279
+ Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms)
1280
+
1281
+ ActionView::Template::Error (undefined local variable or method `countries_search' for #<#<Class:0x00000004abc0a8>:0x00000002b246a0>):
1282
+ 1: = search_form_for countries_search do |f|
1283
+ 2: = f.label :name_cont
1284
+ 3: = f.search_field :name_cont
1285
+ 4: = f.submit
1286
+ app/views/countries/index.html.haml:1:in `_app_views_countries_index_html_haml__3430805923051122352_38980460'
1287
+
1288
+
1289
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.3ms)
1290
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms)
1291
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
1292
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (13.5ms)
1293
+
1294
+
1295
+ Started GET "/" for ::1 at 2015-04-28 23:28:27 -0600
1296
+ Processing by CountriesController#index as HTML
1297
+ Rendered countries/index.html.haml within layouts/application (6.5ms)
1298
+ Completed 500 Internal Server Error in 11ms (ActiveRecord: 0.0ms)
1299
+
1300
+ ActionView::Template::Error (undefined local variable or method `countries_search' for #<#<Class:0x00000004565320>:0x000000045642b8>):
1301
+ 1: = search_form_for countries_search do |f|
1302
+ 2: = f.label :name_cont
1303
+ 3: = f.search_field :name_cont
1304
+ 4: = f.submit
1305
+ app/views/countries/index.html.haml:1:in `_app_views_countries_index_html_haml__461334493275600116_36037180'
1306
+
1307
+
1308
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.1ms)
1309
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms)
1310
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (5.5ms)
1311
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (17.9ms)
1312
+
1313
+
1314
+ Started GET "/" for ::1 at 2015-04-28 23:28:28 -0600
1315
+ Processing by CountriesController#index as HTML
1316
+ Rendered countries/index.html.haml within layouts/application (3.4ms)
1317
+ Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms)
1318
+
1319
+ ActionView::Template::Error (undefined local variable or method `countries_search' for #<#<Class:0x00000004565320>:0x0000000428a498>):
1320
+ 1: = search_form_for countries_search do |f|
1321
+ 2: = f.label :name_cont
1322
+ 3: = f.search_field :name_cont
1323
+ 4: = f.submit
1324
+ app/views/countries/index.html.haml:1:in `_app_views_countries_index_html_haml__461334493275600116_36037180'
1325
+
1326
+
1327
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.9ms)
1328
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms)
1329
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms)
1330
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (15.3ms)
1331
+
1332
+
1333
+ Started GET "/" for ::1 at 2015-04-28 23:28:28 -0600
1334
+ Processing by CountriesController#index as HTML
1335
+ Rendered countries/index.html.haml within layouts/application (3.5ms)
1336
+ Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms)
1337
+
1338
+ ActionView::Template::Error (undefined local variable or method `countries_search' for #<#<Class:0x00000004565320>:0x00000002fa7880>):
1339
+ 1: = search_form_for countries_search do |f|
1340
+ 2: = f.label :name_cont
1341
+ 3: = f.search_field :name_cont
1342
+ 4: = f.submit
1343
+ app/views/countries/index.html.haml:1:in `_app_views_countries_index_html_haml__461334493275600116_36037180'
1344
+
1345
+
1346
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.1ms)
1347
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms)
1348
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms)
1349
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (14.4ms)
1350
+
1351
+
1352
+ Started GET "/" for ::1 at 2015-04-28 23:28:29 -0600
1353
+ Processing by CountriesController#index as HTML
1354
+ Rendered countries/index.html.haml within layouts/application (3.7ms)
1355
+ Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms)
1356
+
1357
+ ActionView::Template::Error (undefined local variable or method `countries_search' for #<#<Class:0x00000004565320>:0x00000002b8be68>):
1358
+ 1: = search_form_for countries_search do |f|
1359
+ 2: = f.label :name_cont
1360
+ 3: = f.search_field :name_cont
1361
+ 4: = f.submit
1362
+ app/views/countries/index.html.haml:1:in `_app_views_countries_index_html_haml__461334493275600116_36037180'
1363
+
1364
+
1365
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.4ms)
1366
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms)
1367
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
1368
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (15.0ms)
1369
+
1370
+
1371
+ Started GET "/" for ::1 at 2015-04-28 23:28:29 -0600
1372
+ Processing by CountriesController#index as HTML
1373
+ Rendered countries/index.html.haml within layouts/application (4.0ms)
1374
+ Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms)
1375
+
1376
+ ActionView::Template::Error (undefined local variable or method `countries_search' for #<#<Class:0x00000004565320>:0x00000001696cb0>):
1377
+ 1: = search_form_for countries_search do |f|
1378
+ 2: = f.label :name_cont
1379
+ 3: = f.search_field :name_cont
1380
+ 4: = f.submit
1381
+ app/views/countries/index.html.haml:1:in `_app_views_countries_index_html_haml__461334493275600116_36037180'
1382
+
1383
+
1384
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.4ms)
1385
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.9ms)
1386
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
1387
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (16.0ms)
1388
+
1389
+
1390
+ Started GET "/" for ::1 at 2015-04-28 23:28:29 -0600
1391
+ Processing by CountriesController#index as HTML
1392
+ Rendered countries/index.html.haml within layouts/application (3.9ms)
1393
+ Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms)
1394
+
1395
+ ActionView::Template::Error (undefined local variable or method `countries_search' for #<#<Class:0x00000004565320>:0x0000000518acb8>):
1396
+ 1: = search_form_for countries_search do |f|
1397
+ 2: = f.label :name_cont
1398
+ 3: = f.search_field :name_cont
1399
+ 4: = f.submit
1400
+ app/views/countries/index.html.haml:1:in `_app_views_countries_index_html_haml__461334493275600116_36037180'
1401
+
1402
+
1403
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.1ms)
1404
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms)
1405
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
1406
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (13.0ms)
1407
+
1408
+
1409
+ Started GET "/" for ::1 at 2015-04-28 23:28:29 -0600
1410
+ Processing by CountriesController#index as HTML
1411
+ Rendered countries/index.html.haml within layouts/application (3.8ms)
1412
+ Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms)
1413
+
1414
+ ActionView::Template::Error (undefined local variable or method `countries_search' for #<#<Class:0x00000004565320>:0x00000004f5d508>):
1415
+ 1: = search_form_for countries_search do |f|
1416
+ 2: = f.label :name_cont
1417
+ 3: = f.search_field :name_cont
1418
+ 4: = f.submit
1419
+ app/views/countries/index.html.haml:1:in `_app_views_countries_index_html_haml__461334493275600116_36037180'
1420
+
1421
+
1422
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.1ms)
1423
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms)
1424
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
1425
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (13.3ms)
1426
+
1427
+
1428
+ Started GET "/" for ::1 at 2015-04-28 23:28:30 -0600
1429
+ Processing by CountriesController#index as HTML
1430
+ Rendered countries/index.html.haml within layouts/application (3.6ms)
1431
+ Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms)
1432
+
1433
+ ActionView::Template::Error (undefined local variable or method `countries_search' for #<#<Class:0x00000004565320>:0x00000004d30910>):
1434
+ 1: = search_form_for countries_search do |f|
1435
+ 2: = f.label :name_cont
1436
+ 3: = f.search_field :name_cont
1437
+ 4: = f.submit
1438
+ app/views/countries/index.html.haml:1:in `_app_views_countries_index_html_haml__461334493275600116_36037180'
1439
+
1440
+
1441
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.2ms)
1442
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms)
1443
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
1444
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (13.3ms)
1445
+
1446
+
1447
+ Started GET "/" for ::1 at 2015-04-28 23:32:34 -0600
1448
+ Processing by CountriesController#index as HTML
1449
+ Rendered countries/index.html.haml within layouts/application (3.0ms)
1450
+ Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.0ms)
1451
+
1452
+ ActionView::Template::Error (No Ransack::Search object was provided to search_form_for!):
1453
+ 1: = search_form_for countries_search do |f|
1454
+ 2: = f.label :name_cont
1455
+ 3: = f.search_field :name_cont
1456
+ 4: = f.submit
1457
+ app/views/countries/index.html.haml:1:in `_app_views_countries_index_html_haml___3263272905322022210_36734880'
1458
+
1459
+
1460
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.1ms)
1461
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms)
1462
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (5.5ms)
1463
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (18.1ms)
1464
+
1465
+
1466
+ Started GET "/" for ::1 at 2015-04-28 23:32:35 -0600
1467
+ Processing by CountriesController#index as HTML
1468
+ Rendered countries/index.html.haml within layouts/application (0.6ms)
1469
+ Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms)
1470
+
1471
+ ActionView::Template::Error (No Ransack::Search object was provided to search_form_for!):
1472
+ 1: = search_form_for countries_search do |f|
1473
+ 2: = f.label :name_cont
1474
+ 3: = f.search_field :name_cont
1475
+ 4: = f.submit
1476
+ app/views/countries/index.html.haml:1:in `_app_views_countries_index_html_haml___3263272905322022210_36734880'
1477
+
1478
+
1479
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.1ms)
1480
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms)
1481
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
1482
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (13.1ms)
1483
+
1484
+
1485
+ Started GET "/" for ::1 at 2015-04-28 23:32:36 -0600
1486
+ Processing by CountriesController#index as HTML
1487
+ Rendered countries/index.html.haml within layouts/application (0.6ms)
1488
+ Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms)
1489
+
1490
+ ActionView::Template::Error (No Ransack::Search object was provided to search_form_for!):
1491
+ 1: = search_form_for countries_search do |f|
1492
+ 2: = f.label :name_cont
1493
+ 3: = f.search_field :name_cont
1494
+ 4: = f.submit
1495
+ app/views/countries/index.html.haml:1:in `_app_views_countries_index_html_haml___3263272905322022210_36734880'
1496
+
1497
+
1498
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.2ms)
1499
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms)
1500
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
1501
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (13.2ms)
1502
+
1503
+
1504
+ Started GET "/" for ::1 at 2015-04-28 23:32:37 -0600
1505
+ Processing by CountriesController#index as HTML
1506
+ Rendered countries/index.html.haml within layouts/application (0.6ms)
1507
+ Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms)
1508
+
1509
+ ActionView::Template::Error (No Ransack::Search object was provided to search_form_for!):
1510
+ 1: = search_form_for countries_search do |f|
1511
+ 2: = f.label :name_cont
1512
+ 3: = f.search_field :name_cont
1513
+ 4: = f.submit
1514
+ app/views/countries/index.html.haml:1:in `_app_views_countries_index_html_haml___3263272905322022210_36734880'
1515
+
1516
+
1517
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.2ms)
1518
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms)
1519
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
1520
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (13.4ms)
1521
+
1522
+
1523
+ Started GET "/" for ::1 at 2015-04-29 19:46:18 -0600
1524
+ Processing by CountriesController#index as HTML
1525
+ Rendered countries/index.html.haml within layouts/application (3.4ms)
1526
+ Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.0ms)
1527
+
1528
+ ActionView::Template::Error (No Ransack::Search object was provided to search_form_for!):
1529
+ 1: = search_form_for countries_search do |f|
1530
+ 2: = f.label :name_cont
1531
+ 3: = f.search_field :name_cont
1532
+ 4: = f.submit
1533
+ app/views/countries/index.html.haml:1:in `_app_views_countries_index_html_haml__2773765205293095563_44727280'
1534
+
1535
+
1536
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.0ms)
1537
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms)
1538
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (5.7ms)
1539
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (19.0ms)
1540
+
1541
+
1542
+ Started GET "/" for ::1 at 2015-04-29 19:53:31 -0600
1543
+ Processing by CountriesController#index as HTML
1544
+ Rendered countries/index.html.haml within layouts/application (3.0ms)
1545
+ Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.0ms)
1546
+
1547
+ ActionView::Template::Error (No Ransack::Search object was provided to search_form_for!):
1548
+ 1: = search_form_for countries_search do |f|
1549
+ 2: = f.label :name_cont
1550
+ 3: = f.search_field :name_cont
1551
+ 4: = f.submit
1552
+ app/views/countries/index.html.haml:1:in `_app_views_countries_index_html_haml___4385715525134376986_37181960'
1553
+
1554
+
1555
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.1ms)
1556
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms)
1557
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (5.6ms)
1558
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (18.2ms)
1559
+
1560
+
1561
+ Started GET "/" for ::1 at 2015-04-29 20:06:28 -0600
1562
+ Processing by CountriesController#index as HTML
1563
+ Rendered countries/index.html.haml within layouts/application (3.1ms)
1564
+ Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.0ms)
1565
+
1566
+ ActionView::Template::Error (No Ransack::Search object was provided to search_form_for!):
1567
+ 1: = search_form_for countries_search do |f|
1568
+ 2: = f.label :name_cont
1569
+ 3: = f.search_field :name_cont
1570
+ 4: = f.submit
1571
+ app/views/countries/index.html.haml:1:in `_app_views_countries_index_html_haml__3734801908460579983_43239280'
1572
+
1573
+
1574
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.0ms)
1575
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms)
1576
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (5.5ms)
1577
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (18.0ms)
1578
+
1579
+
1580
+ Started GET "/" for ::1 at 2015-04-29 20:06:29 -0600
1581
+ Processing by CountriesController#index as HTML
1582
+ Rendered countries/index.html.haml within layouts/application (0.5ms)
1583
+ Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
1584
+
1585
+ ActionView::Template::Error (No Ransack::Search object was provided to search_form_for!):
1586
+ 1: = search_form_for countries_search do |f|
1587
+ 2: = f.label :name_cont
1588
+ 3: = f.search_field :name_cont
1589
+ 4: = f.submit
1590
+ app/views/countries/index.html.haml:1:in `_app_views_countries_index_html_haml__3734801908460579983_43239280'
1591
+
1592
+
1593
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.1ms)
1594
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms)
1595
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
1596
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (13.1ms)
1597
+
1598
+
1599
+ Started GET "/" for ::1 at 2015-04-29 20:06:29 -0600
1600
+ Processing by CountriesController#index as HTML
1601
+ Rendered countries/index.html.haml within layouts/application (0.6ms)
1602
+ Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms)
1603
+
1604
+ ActionView::Template::Error (No Ransack::Search object was provided to search_form_for!):
1605
+ 1: = search_form_for countries_search do |f|
1606
+ 2: = f.label :name_cont
1607
+ 3: = f.search_field :name_cont
1608
+ 4: = f.submit
1609
+ app/views/countries/index.html.haml:1:in `_app_views_countries_index_html_haml__3734801908460579983_43239280'
1610
+
1611
+
1612
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.4ms)
1613
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms)
1614
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
1615
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (13.5ms)
1616
+
1617
+
1618
+ Started GET "/" for ::1 at 2015-04-29 20:06:52 -0600
1619
+ Processing by CountriesController#index as HTML
1620
+ Rendered countries/index.html.haml within layouts/application (3.2ms)
1621
+ Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.0ms)
1622
+
1623
+ ActionView::Template::Error (No Ransack::Search object was provided to search_form_for!):
1624
+ 1: = search_form_for countries_search do |f|
1625
+ 2: = f.label :name_cont
1626
+ 3: = f.search_field :name_cont
1627
+ 4: = f.submit
1628
+ app/views/countries/index.html.haml:1:in `_app_views_countries_index_html_haml___2041509724616987448_42290580'
1629
+
1630
+
1631
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.0ms)
1632
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms)
1633
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (5.5ms)
1634
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (17.9ms)
1635
+
1636
+
1637
+ Started GET "/" for ::1 at 2015-04-29 20:06:53 -0600
1638
+ Processing by CountriesController#index as HTML
1639
+ Rendered countries/index.html.haml within layouts/application (0.6ms)
1640
+ Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms)
1641
+
1642
+ ActionView::Template::Error (No Ransack::Search object was provided to search_form_for!):
1643
+ 1: = search_form_for countries_search do |f|
1644
+ 2: = f.label :name_cont
1645
+ 3: = f.search_field :name_cont
1646
+ 4: = f.submit
1647
+ app/views/countries/index.html.haml:1:in `_app_views_countries_index_html_haml___2041509724616987448_42290580'
1648
+
1649
+
1650
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.0ms)
1651
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms)
1652
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
1653
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (13.0ms)
1654
+
1655
+
1656
+ Started GET "/" for ::1 at 2015-04-29 20:06:54 -0600
1657
+ Processing by CountriesController#index as HTML
1658
+ Rendered countries/index.html.haml within layouts/application (0.6ms)
1659
+ Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
1660
+
1661
+ ActionView::Template::Error (No Ransack::Search object was provided to search_form_for!):
1662
+ 1: = search_form_for countries_search do |f|
1663
+ 2: = f.label :name_cont
1664
+ 3: = f.search_field :name_cont
1665
+ 4: = f.submit
1666
+ app/views/countries/index.html.haml:1:in `_app_views_countries_index_html_haml___2041509724616987448_42290580'
1667
+
1668
+
1669
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.0ms)
1670
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms)
1671
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
1672
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (13.0ms)
1673
+
1674
+
1675
+ Started GET "/" for ::1 at 2015-04-29 20:06:55 -0600
1676
+ Processing by CountriesController#index as HTML
1677
+ Rendered countries/index.html.haml within layouts/application (0.6ms)
1678
+ Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms)
1679
+
1680
+ ActionView::Template::Error (No Ransack::Search object was provided to search_form_for!):
1681
+ 1: = search_form_for countries_search do |f|
1682
+ 2: = f.label :name_cont
1683
+ 3: = f.search_field :name_cont
1684
+ 4: = f.submit
1685
+ app/views/countries/index.html.haml:1:in `_app_views_countries_index_html_haml___2041509724616987448_42290580'
1686
+
1687
+
1688
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.1ms)
1689
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms)
1690
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
1691
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (13.2ms)
1692
+
1693
+
1694
+ Started GET "/" for ::1 at 2015-04-29 20:06:56 -0600
1695
+ Processing by CountriesController#index as HTML
1696
+ Rendered countries/index.html.haml within layouts/application (0.6ms)
1697
+ Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms)
1698
+
1699
+ ActionView::Template::Error (No Ransack::Search object was provided to search_form_for!):
1700
+ 1: = search_form_for countries_search do |f|
1701
+ 2: = f.label :name_cont
1702
+ 3: = f.search_field :name_cont
1703
+ 4: = f.submit
1704
+ app/views/countries/index.html.haml:1:in `_app_views_countries_index_html_haml___2041509724616987448_42290580'
1705
+
1706
+
1707
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.2ms)
1708
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms)
1709
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
1710
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (13.3ms)
1711
+
1712
+
1713
+ Started GET "/" for ::1 at 2015-04-29 20:07:50 -0600
1714
+ Processing by CountriesController#index as HTML
1715
+ Rendered countries/index.html.haml within layouts/application (3.4ms)
1716
+ Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.0ms)
1717
+
1718
+ ActionView::Template::Error (undefined method `all' for nil:NilClass):
1719
+ 1: = search_form_for countries_search do |f|
1720
+ 2: = f.label :name_cont
1721
+ 3: = f.search_field :name_cont
1722
+ 4: = f.submit
1723
+ app/views/countries/index.html.haml:1:in `_app_views_countries_index_html_haml___3533286671494552684_42596620'
1724
+
1725
+
1726
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.1ms)
1727
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms)
1728
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (5.5ms)
1729
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (18.0ms)
1730
+  (24.6ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
1731
+  (0.1ms) select sqlite_version(*)
1732
+  (26.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1733
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1734
+ Migrating to CreateCountries (20150430020948)
1735
+  (0.0ms) begin transaction
1736
+  (0.2ms) CREATE TABLE "countries" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "active" integer(1), "code" varchar, "name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1737
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150430020948"]]
1738
+  (24.5ms) commit transaction
1739
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1740
+
1741
+
1742
+ Started GET "/" for ::1 at 2015-04-29 20:11:37 -0600
1743
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1744
+ Processing by CountriesController#index as HTML
1745
+ Country Load (0.1ms) SELECT "countries".* FROM "countries"
1746
+ Rendered countries/index.html.haml within layouts/application (3.9ms)
1747
+ Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.1ms)
1748
+
1749
+ ActionView::Template::Error (undefined method `active' for #<ActiveRecord::Relation []>):
1750
+ 1: = search_form_for countries_search do |f|
1751
+ 2: = f.label :name_cont
1752
+ 3: = f.search_field :name_cont
1753
+ 4: = f.submit
1754
+ app/controllers/countries_controller.rb:9:in `block in <class:CountriesController>'
1755
+ app/views/countries/index.html.haml:1:in `_app_views_countries_index_html_haml__3834776939880067049_30097520'
1756
+
1757
+
1758
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.3ms)
1759
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms)
1760
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (5.5ms)
1761
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (18.4ms)
1762
+
1763
+
1764
+ Started GET "/" for ::1 at 2015-04-29 20:11:38 -0600
1765
+ Processing by CountriesController#index as HTML
1766
+ Country Load (0.1ms) SELECT "countries".* FROM "countries"
1767
+ Rendered countries/index.html.haml within layouts/application (0.8ms)
1768
+ Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.1ms)
1769
+
1770
+ ActionView::Template::Error (undefined method `active' for #<ActiveRecord::Relation []>):
1771
+ 1: = search_form_for countries_search do |f|
1772
+ 2: = f.label :name_cont
1773
+ 3: = f.search_field :name_cont
1774
+ 4: = f.submit
1775
+ app/controllers/countries_controller.rb:9:in `block in <class:CountriesController>'
1776
+ app/views/countries/index.html.haml:1:in `_app_views_countries_index_html_haml__3834776939880067049_30097520'
1777
+
1778
+
1779
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.6ms)
1780
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.0ms)
1781
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
1782
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (16.1ms)
1783
+
1784
+
1785
+ Started GET "/" for ::1 at 2015-04-29 20:14:24 -0600
1786
+ Processing by CountriesController#index as HTML
1787
+ Rendered countries/index.html.haml within layouts/application (4.2ms)
1788
+ Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.2ms)
1789
+
1790
+ ActionView::Template::Error (undefined method `params_page' for #<CountriesController:0x000000045719b8>):
1791
+ 1: = search_form_for countries_search do |f|
1792
+ 2: = f.label :name_cont
1793
+ 3: = f.search_field :name_cont
1794
+ 4: = f.submit
1795
+ app/views/countries/index.html.haml:1:in `_app_views_countries_index_html_haml__3834776939880067049_30097520'
1796
+
1797
+
1798
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.2ms)
1799
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms)
1800
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
1801
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (13.3ms)
1802
+
1803
+
1804
+ Started GET "/" for ::1 at 2015-04-29 20:14:25 -0600
1805
+ Processing by CountriesController#index as HTML
1806
+ Rendered countries/index.html.haml within layouts/application (2.7ms)
1807
+ Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms)
1808
+
1809
+ ActionView::Template::Error (undefined method `params_page' for #<CountriesController:0x000000040ff128>):
1810
+ 1: = search_form_for countries_search do |f|
1811
+ 2: = f.label :name_cont
1812
+ 3: = f.search_field :name_cont
1813
+ 4: = f.submit
1814
+ app/views/countries/index.html.haml:1:in `_app_views_countries_index_html_haml__3834776939880067049_30097520'
1815
+
1816
+
1817
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.2ms)
1818
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms)
1819
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
1820
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (13.3ms)
1821
+
1822
+
1823
+ Started GET "/" for ::1 at 2015-04-29 20:14:47 -0600
1824
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1825
+ Processing by CountriesController#index as HTML
1826
+ Rendered countries/index.html.haml within layouts/application (6.1ms)
1827
+ Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.2ms)
1828
+
1829
+ ActionView::Template::Error (undefined method `params_page' for #<CountriesController:0x00000003d20f98>):
1830
+ 1: = search_form_for countries_search do |f|
1831
+ 2: = f.label :name_cont
1832
+ 3: = f.search_field :name_cont
1833
+ 4: = f.submit
1834
+ app/views/countries/index.html.haml:1:in `_app_views_countries_index_html_haml___1140525940733227035_31677400'
1835
+
1836
+
1837
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.2ms)
1838
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms)
1839
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (5.5ms)
1840
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (18.3ms)
1841
+
1842
+
1843
+ Started GET "/" for ::1 at 2015-04-29 20:14:47 -0600
1844
+ Processing by CountriesController#index as HTML
1845
+ Rendered countries/index.html.haml within layouts/application (2.8ms)
1846
+ Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms)
1847
+
1848
+ ActionView::Template::Error (undefined method `params_page' for #<CountriesController:0x0000000264a760>):
1849
+ 1: = search_form_for countries_search do |f|
1850
+ 2: = f.label :name_cont
1851
+ 3: = f.search_field :name_cont
1852
+ 4: = f.submit
1853
+ app/views/countries/index.html.haml:1:in `_app_views_countries_index_html_haml___1140525940733227035_31677400'
1854
+
1855
+
1856
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.3ms)
1857
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms)
1858
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
1859
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (13.4ms)
1860
+
1861
+
1862
+ Started GET "/" for ::1 at 2015-04-29 20:14:48 -0600
1863
+ Processing by CountriesController#index as HTML
1864
+ Rendered countries/index.html.haml within layouts/application (2.6ms)
1865
+ Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.0ms)
1866
+
1867
+ ActionView::Template::Error (undefined method `params_page' for #<CountriesController:0x00000000981020>):
1868
+ 1: = search_form_for countries_search do |f|
1869
+ 2: = f.label :name_cont
1870
+ 3: = f.search_field :name_cont
1871
+ 4: = f.submit
1872
+ app/views/countries/index.html.haml:1:in `_app_views_countries_index_html_haml___1140525940733227035_31677400'
1873
+
1874
+
1875
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.2ms)
1876
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms)
1877
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
1878
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (13.3ms)
1879
+
1880
+
1881
+ Started GET "/" for ::1 at 2015-04-29 20:16:52 -0600
1882
+ Processing by CountriesController#index as HTML
1883
+ Rendered countries/index.html.haml within layouts/application (4.1ms)
1884
+ Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms)
1885
+
1886
+ ActionView::Template::Error (undefined method `params_page' for #<CountriesController:0x000000047e25d0>):
1887
+ 1: = search_form_for countries_search do |f|
1888
+ 2: = f.label :name_cont
1889
+ 3: = f.search_field :name_cont
1890
+ 4: = f.submit
1891
+ app/views/countries/index.html.haml:1:in `_app_views_countries_index_html_haml___1140525940733227035_31677400'
1892
+
1893
+
1894
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.2ms)
1895
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms)
1896
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
1897
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (13.2ms)
1898
+
1899
+
1900
+ Started GET "/" for ::1 at 2015-04-29 20:16:53 -0600
1901
+ Processing by CountriesController#index as HTML
1902
+ Rendered countries/index.html.haml within layouts/application (2.7ms)
1903
+ Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms)
1904
+
1905
+ ActionView::Template::Error (undefined method `params_page' for #<CountriesController:0x0000000441b078>):
1906
+ 1: = search_form_for countries_search do |f|
1907
+ 2: = f.label :name_cont
1908
+ 3: = f.search_field :name_cont
1909
+ 4: = f.submit
1910
+ app/views/countries/index.html.haml:1:in `_app_views_countries_index_html_haml___1140525940733227035_31677400'
1911
+
1912
+
1913
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.2ms)
1914
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms)
1915
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
1916
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (13.3ms)
1917
+
1918
+
1919
+ Started GET "/" for ::1 at 2015-04-29 20:16:59 -0600
1920
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1921
+ Processing by CountriesController#index as HTML
1922
+ Rendered countries/index.html.haml within layouts/application (3.4ms)
1923
+ Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.0ms)
1924
+
1925
+ ActionController::ParameterMissing (param is missing or the value is empty: page):
1926
+ app/views/countries/index.html.haml:1:in `_app_views_countries_index_html_haml__2796127342673243317_42860200'
1927
+
1928
+
1929
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.2ms)
1930
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms)
1931
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (5.6ms)
1932
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (18.4ms)
1933
+
1934
+
1935
+ Started GET "/" for ::1 at 2015-04-29 20:19:09 -0600
1936
+ Processing by CountriesController#index as HTML
1937
+ Rendered countries/index.html.haml within layouts/application (0.4ms)
1938
+ Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
1939
+
1940
+ ActionController::ParameterMissing (param is missing or the value is empty: page):
1941
+ app/views/countries/index.html.haml:1:in `_app_views_countries_index_html_haml__2796127342673243317_42860200'
1942
+
1943
+
1944
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.4ms)
1945
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms)
1946
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
1947
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (13.7ms)
1948
+
1949
+
1950
+ Started GET "/" for ::1 at 2015-04-29 20:19:10 -0600
1951
+ Processing by CountriesController#index as HTML
1952
+ Rendered countries/index.html.haml within layouts/application (0.4ms)
1953
+ Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms)
1954
+
1955
+ ActionController::ParameterMissing (param is missing or the value is empty: page):
1956
+ app/views/countries/index.html.haml:1:in `_app_views_countries_index_html_haml__2796127342673243317_42860200'
1957
+
1958
+
1959
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.3ms)
1960
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms)
1961
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms)
1962
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (13.7ms)
1963
+
1964
+
1965
+ Started GET "/" for ::1 at 2015-04-29 20:19:18 -0600
1966
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1967
+ Processing by CountriesController#index as HTML
1968
+ Rendered countries/index.html.haml within layouts/application (3.6ms)
1969
+ Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.0ms)
1970
+
1971
+ ActionView::Template::Error (undefined method `to_i' for {}:Hash):
1972
+ 1: = search_form_for countries_search do |f|
1973
+ 2: = f.label :name_cont
1974
+ 3: = f.search_field :name_cont
1975
+ 4: = f.submit
1976
+ app/views/countries/index.html.haml:1:in `_app_views_countries_index_html_haml___1754793130191255398_40215200'
1977
+
1978
+
1979
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.5ms)
1980
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms)
1981
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (5.5ms)
1982
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (18.9ms)
1983
+
1984
+
1985
+ Started GET "/" for ::1 at 2015-04-29 20:19:19 -0600
1986
+ Processing by CountriesController#index as HTML
1987
+ Rendered countries/index.html.haml within layouts/application (0.5ms)
1988
+ Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
1989
+
1990
+ ActionView::Template::Error (undefined method `to_i' for {}:Hash):
1991
+ 1: = search_form_for countries_search do |f|
1992
+ 2: = f.label :name_cont
1993
+ 3: = f.search_field :name_cont
1994
+ 4: = f.submit
1995
+ app/views/countries/index.html.haml:1:in `_app_views_countries_index_html_haml___1754793130191255398_40215200'
1996
+
1997
+
1998
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.5ms)
1999
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms)
2000
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.0ms)
2001
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (16.1ms)
2002
+
2003
+
2004
+ Started GET "/" for ::1 at 2015-04-29 20:19:20 -0600
2005
+ Processing by CountriesController#index as HTML
2006
+ Rendered countries/index.html.haml within layouts/application (0.5ms)
2007
+ Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
2008
+
2009
+ ActionView::Template::Error (undefined method `to_i' for {}:Hash):
2010
+ 1: = search_form_for countries_search do |f|
2011
+ 2: = f.label :name_cont
2012
+ 3: = f.search_field :name_cont
2013
+ 4: = f.submit
2014
+ app/views/countries/index.html.haml:1:in `_app_views_countries_index_html_haml___1754793130191255398_40215200'
2015
+
2016
+
2017
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.4ms)
2018
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms)
2019
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
2020
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (13.9ms)
2021
+
2022
+
2023
+ Started GET "/" for ::1 at 2015-04-29 20:19:22 -0600
2024
+ Processing by CountriesController#index as HTML
2025
+ Rendered countries/index.html.haml within layouts/application (0.4ms)
2026
+ Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
2027
+
2028
+ ActionView::Template::Error (undefined method `to_i' for {}:Hash):
2029
+ 1: = search_form_for countries_search do |f|
2030
+ 2: = f.label :name_cont
2031
+ 3: = f.search_field :name_cont
2032
+ 4: = f.submit
2033
+ app/views/countries/index.html.haml:1:in `_app_views_countries_index_html_haml___1754793130191255398_40215200'
2034
+
2035
+
2036
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.4ms)
2037
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms)
2038
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
2039
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (13.5ms)
2040
+
2041
+
2042
+ Started GET "/section/events/1330?date=2015-04-10?page=%201" for ::1 at 2015-04-29 20:21:11 -0600
2043
+
2044
+ ActionController::RoutingError (No route matches [GET] "/section/events/1330"):
2045
+ actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
2046
+ actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
2047
+ railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app'
2048
+ railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call'
2049
+ activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
2050
+ activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged'
2051
+ activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged'
2052
+ railties (4.2.1) lib/rails/rack/logger.rb:20:in `call'
2053
+ actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
2054
+ rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
2055
+ rack (1.6.0) lib/rack/runtime.rb:18:in `call'
2056
+ activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
2057
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
2058
+ actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call'
2059
+ rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
2060
+ railties (4.2.1) lib/rails/engine.rb:518:in `call'
2061
+ railties (4.2.1) lib/rails/application.rb:164:in `call'
2062
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
2063
+ rack (1.6.0) lib/rack/content_length.rb:15:in `call'
2064
+ rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
2065
+ /home/developer/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
2066
+ /home/developer/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
2067
+ /home/developer/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
2068
+
2069
+
2070
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.9ms)
2071
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms)
2072
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.7ms)
2073
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms)
2074
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (16.0ms)
2075
+
2076
+
2077
+ Started GET "/?page=%201" for ::1 at 2015-04-29 20:21:22 -0600
2078
+ Processing by CountriesController#index as HTML
2079
+ Parameters: {"page"=>" 1"}
2080
+ Rendered countries/index.html.haml within layouts/application (0.5ms)
2081
+ Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
2082
+
2083
+ ActionView::Template::Error (undefined method `to_i' for {}:Hash):
2084
+ 1: = search_form_for countries_search do |f|
2085
+ 2: = f.label :name_cont
2086
+ 3: = f.search_field :name_cont
2087
+ 4: = f.submit
2088
+ app/views/countries/index.html.haml:1:in `_app_views_countries_index_html_haml___1754793130191255398_40215200'
2089
+
2090
+
2091
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.4ms)
2092
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms)
2093
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
2094
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (13.6ms)
2095
+
2096
+
2097
+ Started GET "/?page=%201" for ::1 at 2015-04-29 20:23:27 -0600
2098
+ Processing by CountriesController#index as HTML
2099
+ Parameters: {"page"=>" 1"}
2100
+ Rendered countries/index.html.haml within layouts/application (1.2ms)
2101
+ Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms)
2102
+
2103
+ ActionView::Template::Error (undefined method `to_i' for {}:Hash):
2104
+ 1: = search_form_for countries_search do |f|
2105
+ 2: = f.label :name_cont
2106
+ 3: = f.search_field :name_cont
2107
+ 4: = f.submit
2108
+ app/views/countries/index.html.haml:1:in `_app_views_countries_index_html_haml___1754793130191255398_40215200'
2109
+
2110
+
2111
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.8ms)
2112
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms)
2113
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
2114
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (16.2ms)
2115
+
2116
+
2117
+ Started GET "/?page=%201" for ::1 at 2015-04-29 20:25:09 -0600
2118
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2119
+ Processing by CountriesController#index as HTML
2120
+ Parameters: {"page"=>" 1"}
2121
+ Rendered countries/index.html.haml within layouts/application (3.8ms)
2122
+ Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.0ms)
2123
+
2124
+ ActionView::Template::Error (undefined method `to_i' for {}:Hash):
2125
+ 1: = search_form_for countries_search do |f|
2126
+ 2: = f.label :name_cont
2127
+ 3: = f.search_field :name_cont
2128
+ 4: = f.submit
2129
+ app/views/countries/index.html.haml:1:in `_app_views_countries_index_html_haml__3242619266084225476_47585800'
2130
+
2131
+
2132
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.3ms)
2133
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms)
2134
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (5.6ms)
2135
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (18.4ms)
2136
+
2137
+
2138
+ Started GET "/?page=%201" for ::1 at 2015-04-29 20:25:10 -0600
2139
+ Processing by CountriesController#index as HTML
2140
+ Parameters: {"page"=>" 1"}
2141
+ Rendered countries/index.html.haml within layouts/application (0.5ms)
2142
+ Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
2143
+
2144
+ ActionView::Template::Error (undefined method `to_i' for {}:Hash):
2145
+ 1: = search_form_for countries_search do |f|
2146
+ 2: = f.label :name_cont
2147
+ 3: = f.search_field :name_cont
2148
+ 4: = f.submit
2149
+ app/views/countries/index.html.haml:1:in `_app_views_countries_index_html_haml__3242619266084225476_47585800'
2150
+
2151
+
2152
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.3ms)
2153
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms)
2154
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms)
2155
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (13.5ms)
2156
+
2157
+
2158
+ Started GET "/?page=%201" for ::1 at 2015-04-29 20:25:10 -0600
2159
+ Processing by CountriesController#index as HTML
2160
+ Parameters: {"page"=>" 1"}
2161
+ Rendered countries/index.html.haml within layouts/application (0.5ms)
2162
+ Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
2163
+
2164
+ ActionView::Template::Error (undefined method `to_i' for {}:Hash):
2165
+ 1: = search_form_for countries_search do |f|
2166
+ 2: = f.label :name_cont
2167
+ 3: = f.search_field :name_cont
2168
+ 4: = f.submit
2169
+ app/views/countries/index.html.haml:1:in `_app_views_countries_index_html_haml__3242619266084225476_47585800'
2170
+
2171
+
2172
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.8ms)
2173
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms)
2174
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms)
2175
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (14.3ms)
2176
+
2177
+
2178
+ Started GET "/?page=%201" for ::1 at 2015-04-29 20:25:11 -0600
2179
+ Processing by CountriesController#index as HTML
2180
+ Parameters: {"page"=>" 1"}
2181
+ Rendered countries/index.html.haml within layouts/application (0.4ms)
2182
+ Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
2183
+
2184
+ ActionView::Template::Error (undefined method `to_i' for {}:Hash):
2185
+ 1: = search_form_for countries_search do |f|
2186
+ 2: = f.label :name_cont
2187
+ 3: = f.search_field :name_cont
2188
+ 4: = f.submit
2189
+ app/views/countries/index.html.haml:1:in `_app_views_countries_index_html_haml__3242619266084225476_47585800'
2190
+
2191
+
2192
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.3ms)
2193
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms)
2194
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms)
2195
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (13.4ms)
2196
+
2197
+
2198
+ Started GET "/?page=%201" for ::1 at 2015-04-29 20:25:48 -0600
2199
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2200
+ Processing by CountriesController#index as HTML
2201
+ Parameters: {"page"=>" 1"}
2202
+ Rendered countries/index.html.haml within layouts/application (3.5ms)
2203
+ Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.0ms)
2204
+
2205
+ ActionView::Template::Error (undefined method `to_i' for {}:Hash):
2206
+ 1: = search_form_for countries_search do |f|
2207
+ 2: = f.label :name_cont
2208
+ 3: = f.search_field :name_cont
2209
+ 4: = f.submit
2210
+ app/views/countries/index.html.haml:1:in `_app_views_countries_index_html_haml___1923175691759233420_49621720'
2211
+
2212
+
2213
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.3ms)
2214
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms)
2215
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (5.6ms)
2216
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (18.4ms)
2217
+
2218
+
2219
+ Started GET "/?page=%201" for ::1 at 2015-04-29 20:25:48 -0600
2220
+ Processing by CountriesController#index as HTML
2221
+ Parameters: {"page"=>" 1"}
2222
+ Rendered countries/index.html.haml within layouts/application (0.5ms)
2223
+ Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
2224
+
2225
+ ActionView::Template::Error (undefined method `to_i' for {}:Hash):
2226
+ 1: = search_form_for countries_search do |f|
2227
+ 2: = f.label :name_cont
2228
+ 3: = f.search_field :name_cont
2229
+ 4: = f.submit
2230
+ app/views/countries/index.html.haml:1:in `_app_views_countries_index_html_haml___1923175691759233420_49621720'
2231
+
2232
+
2233
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.3ms)
2234
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms)
2235
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms)
2236
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (13.9ms)
2237
+
2238
+
2239
+ Started GET "/?page=%201" for ::1 at 2015-04-29 20:25:49 -0600
2240
+ Processing by CountriesController#index as HTML
2241
+ Parameters: {"page"=>" 1"}
2242
+ Rendered countries/index.html.haml within layouts/application (0.5ms)
2243
+ Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
2244
+
2245
+ ActionView::Template::Error (undefined method `to_i' for {}:Hash):
2246
+ 1: = search_form_for countries_search do |f|
2247
+ 2: = f.label :name_cont
2248
+ 3: = f.search_field :name_cont
2249
+ 4: = f.submit
2250
+ app/views/countries/index.html.haml:1:in `_app_views_countries_index_html_haml___1923175691759233420_49621720'
2251
+
2252
+
2253
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.4ms)
2254
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms)
2255
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms)
2256
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (13.7ms)
2257
+
2258
+
2259
+ Started GET "/?page=%201" for ::1 at 2015-04-29 20:25:49 -0600
2260
+ Processing by CountriesController#index as HTML
2261
+ Parameters: {"page"=>" 1"}
2262
+ Rendered countries/index.html.haml within layouts/application (0.5ms)
2263
+ Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms)
2264
+
2265
+ ActionView::Template::Error (undefined method `to_i' for {}:Hash):
2266
+ 1: = search_form_for countries_search do |f|
2267
+ 2: = f.label :name_cont
2268
+ 3: = f.search_field :name_cont
2269
+ 4: = f.submit
2270
+ app/views/countries/index.html.haml:1:in `_app_views_countries_index_html_haml___1923175691759233420_49621720'
2271
+
2272
+
2273
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.3ms)
2274
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms)
2275
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms)
2276
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (13.5ms)
2277
+
2278
+
2279
+ Started GET "/?page=%201" for ::1 at 2015-04-29 20:28:37 -0600
2280
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2281
+ Processing by CountriesController#index as HTML
2282
+ Parameters: {"page"=>" 1"}
2283
+ Rendered countries/index.html.haml within layouts/application (3.4ms)
2284
+ Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.0ms)
2285
+
2286
+ ActionView::Template::Error (undefined method `to_i' for {}:Hash):
2287
+ 1: = search_form_for countries_search do |f|
2288
+ 2: = f.label :name_cont
2289
+ 3: = f.search_field :name_cont
2290
+ 4: = f.submit
2291
+ app/views/countries/index.html.haml:1:in `_app_views_countries_index_html_haml___4047067803208369599_34313900'
2292
+
2293
+
2294
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.4ms)
2295
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms)
2296
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (5.5ms)
2297
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (18.5ms)
2298
+
2299
+
2300
+ Started GET "/?page=%201" for ::1 at 2015-04-29 20:28:37 -0600
2301
+ Processing by CountriesController#index as HTML
2302
+ Parameters: {"page"=>" 1"}
2303
+ Rendered countries/index.html.haml within layouts/application (0.5ms)
2304
+ Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms)
2305
+
2306
+ ActionView::Template::Error (undefined method `to_i' for {}:Hash):
2307
+ 1: = search_form_for countries_search do |f|
2308
+ 2: = f.label :name_cont
2309
+ 3: = f.search_field :name_cont
2310
+ 4: = f.submit
2311
+ app/views/countries/index.html.haml:1:in `_app_views_countries_index_html_haml___4047067803208369599_34313900'
2312
+
2313
+
2314
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.5ms)
2315
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.1ms)
2316
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms)
2317
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (16.4ms)
2318
+
2319
+
2320
+ Started GET "/?page=%201" for ::1 at 2015-04-29 20:31:38 -0600
2321
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2322
+ Processing by CountriesController#index as HTML
2323
+ Parameters: {"page"=>" 1"}
2324
+ Country Load (0.1ms) SELECT "countries".* FROM "countries" LIMIT 25 OFFSET 0
2325
+ Rendered countries/index.html.haml within layouts/application (211.1ms)
2326
+ Completed 500 Internal Server Error in 214ms (ActiveRecord: 0.3ms)
2327
+
2328
+ ActionView::Template::Error (undefined local variable or method `new_admin_country_path' for #<#<Class:0x00000004c22528>:0x00000004c21448>):
2329
+ 3: = f.search_field :name_cont
2330
+ 4: = f.submit
2331
+ 5: %p
2332
+ 6: = link_to "New", new_admin_country_path
2333
+ 7: %table
2334
+ 8: %tbody
2335
+ 9: - countries.each do |resource|
2336
+ app/views/countries/index.html.haml:6:in `_app_views_countries_index_html_haml___3518170596951223077_39708500'
2337
+
2338
+
2339
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.0ms)
2340
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms)
2341
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (5.7ms)
2342
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (18.6ms)
2343
+
2344
+
2345
+ Started GET "/?page=%201" for ::1 at 2015-04-29 20:31:39 -0600
2346
+ Processing by CountriesController#index as HTML
2347
+ Parameters: {"page"=>" 1"}
2348
+ Country Load (0.1ms) SELECT "countries".* FROM "countries" LIMIT 25 OFFSET 0
2349
+ Rendered countries/index.html.haml within layouts/application (6.1ms)
2350
+ Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.1ms)
2351
+
2352
+ ActionView::Template::Error (undefined local variable or method `new_admin_country_path' for #<#<Class:0x00000004c22528>:0x007f32e95bbf08>):
2353
+ 3: = f.search_field :name_cont
2354
+ 4: = f.submit
2355
+ 5: %p
2356
+ 6: = link_to "New", new_admin_country_path
2357
+ 7: %table
2358
+ 8: %tbody
2359
+ 9: - countries.each do |resource|
2360
+ app/views/countries/index.html.haml:6:in `_app_views_countries_index_html_haml___3518170596951223077_39708500'
2361
+
2362
+
2363
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.8ms)
2364
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms)
2365
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
2366
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (12.9ms)
2367
+
2368
+
2369
+ Started GET "/?page=%201" for ::1 at 2015-04-29 20:33:13 -0600
2370
+ Processing by CountriesController#index as HTML
2371
+ Parameters: {"page"=>" 1"}
2372
+ Country Load (0.1ms) SELECT "countries".* FROM "countries" LIMIT 25 OFFSET 0
2373
+ Rendered countries/index.html.haml within layouts/application (10.8ms)
2374
+ Completed 500 Internal Server Error in 12ms (ActiveRecord: 0.1ms)
2375
+
2376
+ ActionView::Template::Error (undefined local variable or method `new_admin_country_path' for #<#<Class:0x00000004c22528>:0x007f32ea05d678>):
2377
+ 3: = f.search_field :name_cont
2378
+ 4: = f.submit
2379
+ 5: %p
2380
+ 6: = link_to "New", new_admin_country_path
2381
+ 7: %table
2382
+ 8: %tbody
2383
+ 9: - countries.each do |resource|
2384
+ app/views/countries/index.html.haml:6:in `_app_views_countries_index_html_haml___3518170596951223077_39708500'
2385
+
2386
+
2387
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.1ms)
2388
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms)
2389
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
2390
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (13.3ms)
2391
+
2392
+
2393
+ Started GET "/?page=%201" for ::1 at 2015-04-29 20:33:14 -0600
2394
+ Processing by CountriesController#index as HTML
2395
+ Parameters: {"page"=>" 1"}
2396
+ Country Load (0.1ms) SELECT "countries".* FROM "countries" LIMIT 25 OFFSET 0
2397
+ Rendered countries/index.html.haml within layouts/application (6.3ms)
2398
+ Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.1ms)
2399
+
2400
+ ActionView::Template::Error (undefined local variable or method `new_admin_country_path' for #<#<Class:0x00000004c22528>:0x00000004a16d88>):
2401
+ 3: = f.search_field :name_cont
2402
+ 4: = f.submit
2403
+ 5: %p
2404
+ 6: = link_to "New", new_admin_country_path
2405
+ 7: %table
2406
+ 8: %tbody
2407
+ 9: - countries.each do |resource|
2408
+ app/views/countries/index.html.haml:6:in `_app_views_countries_index_html_haml___3518170596951223077_39708500'
2409
+
2410
+
2411
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.7ms)
2412
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms)
2413
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
2414
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (12.5ms)
2415
+
2416
+
2417
+ Started GET "/?page=%201" for ::1 at 2015-04-29 20:33:15 -0600
2418
+ Processing by CountriesController#index as HTML
2419
+ Parameters: {"page"=>" 1"}
2420
+ Country Load (0.1ms) SELECT "countries".* FROM "countries" LIMIT 25 OFFSET 0
2421
+ Rendered countries/index.html.haml within layouts/application (6.0ms)
2422
+ Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.1ms)
2423
+
2424
+ ActionView::Template::Error (undefined local variable or method `new_admin_country_path' for #<#<Class:0x00000004c22528>:0x007f32e96ad6f0>):
2425
+ 3: = f.search_field :name_cont
2426
+ 4: = f.submit
2427
+ 5: %p
2428
+ 6: = link_to "New", new_admin_country_path
2429
+ 7: %table
2430
+ 8: %tbody
2431
+ 9: - countries.each do |resource|
2432
+ app/views/countries/index.html.haml:6:in `_app_views_countries_index_html_haml___3518170596951223077_39708500'
2433
+
2434
+
2435
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.2ms)
2436
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms)
2437
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms)
2438
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (15.7ms)
2439
+
2440
+
2441
+ Started GET "/?page=%201" for ::1 at 2015-04-29 20:33:16 -0600
2442
+ Processing by CountriesController#index as HTML
2443
+ Parameters: {"page"=>" 1"}
2444
+ Country Load (0.1ms) SELECT "countries".* FROM "countries" LIMIT 25 OFFSET 0
2445
+ Rendered countries/index.html.haml within layouts/application (7.6ms)
2446
+ Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.1ms)
2447
+
2448
+ ActionView::Template::Error (undefined local variable or method `new_admin_country_path' for #<#<Class:0x00000004c22528>:0x007f32e9fcfc38>):
2449
+ 3: = f.search_field :name_cont
2450
+ 4: = f.submit
2451
+ 5: %p
2452
+ 6: = link_to "New", new_admin_country_path
2453
+ 7: %table
2454
+ 8: %tbody
2455
+ 9: - countries.each do |resource|
2456
+ app/views/countries/index.html.haml:6:in `_app_views_countries_index_html_haml___3518170596951223077_39708500'
2457
+
2458
+
2459
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.5ms)
2460
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms)
2461
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms)
2462
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (15.8ms)
2463
+
2464
+
2465
+ Started GET "/?page=%201" for ::1 at 2015-04-29 20:33:16 -0600
2466
+ Processing by CountriesController#index as HTML
2467
+ Parameters: {"page"=>" 1"}
2468
+ Country Load (0.1ms) SELECT "countries".* FROM "countries" LIMIT 25 OFFSET 0
2469
+ Rendered countries/index.html.haml within layouts/application (6.8ms)
2470
+ Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.1ms)
2471
+
2472
+ ActionView::Template::Error (undefined local variable or method `new_admin_country_path' for #<#<Class:0x00000004c22528>:0x007f32e9cf2678>):
2473
+ 3: = f.search_field :name_cont
2474
+ 4: = f.submit
2475
+ 5: %p
2476
+ 6: = link_to "New", new_admin_country_path
2477
+ 7: %table
2478
+ 8: %tbody
2479
+ 9: - countries.each do |resource|
2480
+ app/views/countries/index.html.haml:6:in `_app_views_countries_index_html_haml___3518170596951223077_39708500'
2481
+
2482
+
2483
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.3ms)
2484
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms)
2485
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
2486
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (13.3ms)
2487
+
2488
+
2489
+ Started GET "/?page=%201" for ::1 at 2015-04-29 20:34:26 -0600
2490
+ Processing by CountriesController#index as HTML
2491
+ Parameters: {"page"=>" 1"}
2492
+ Country Load (0.1ms) SELECT DISTINCT "countries".* FROM "countries" LIMIT 25 OFFSET 0
2493
+  (0.1ms) SELECT DISTINCT COUNT(DISTINCT "countries"."id") FROM "countries"
2494
+ Rendered countries/index.html.haml within layouts/application (7.3ms)
2495
+ Completed 200 OK in 82ms (Views: 81.1ms | ActiveRecord: 0.2ms)
2496
+
2497
+
2498
+ Started GET "/?page=%201" for ::1 at 2015-04-29 20:34:27 -0600
2499
+ Processing by CountriesController#index as HTML
2500
+ Parameters: {"page"=>" 1"}
2501
+ Country Load (0.1ms) SELECT DISTINCT "countries".* FROM "countries" LIMIT 25 OFFSET 0
2502
+  (0.1ms) SELECT DISTINCT COUNT(DISTINCT "countries"."id") FROM "countries"
2503
+ Rendered countries/index.html.haml within layouts/application (3.2ms)
2504
+ Completed 200 OK in 9ms (Views: 9.1ms | ActiveRecord: 0.2ms)
2505
+
2506
+
2507
+ Started GET "/?page=%201" for ::1 at 2015-04-29 20:34:28 -0600
2508
+ Processing by CountriesController#index as HTML
2509
+ Parameters: {"page"=>" 1"}
2510
+ Country Load (0.1ms) SELECT DISTINCT "countries".* FROM "countries" LIMIT 25 OFFSET 0
2511
+  (0.1ms) SELECT DISTINCT COUNT(DISTINCT "countries"."id") FROM "countries"
2512
+ Rendered countries/index.html.haml within layouts/application (3.2ms)
2513
+ Completed 200 OK in 9ms (Views: 9.0ms | ActiveRecord: 0.2ms)
2514
+
2515
+
2516
+ Started GET "/assets/countries.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for ::1 at 2015-04-29 20:34:28 -0600
2517
+
2518
+
2519
+ Started GET "/assets/application.self-fb28094035fc8f155b896e47c199355db7c84fc9d6214ed9800f1022ac2ece52.js?body=1" for ::1 at 2015-04-29 20:34:28 -0600
2520
+
2521
+
2522
+ Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2015-04-29 20:34:28 -0600
2523
+
2524
+
2525
+ Started GET "/assets/countries.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-04-29 20:34:28 -0600
2526
+
2527
+
2528
+ Started GET "/" for ::1 at 2015-04-29 20:34:34 -0600
2529
+ Processing by CountriesController#index as HTML
2530
+ Country Load (0.1ms) SELECT DISTINCT "countries".* FROM "countries" LIMIT 25 OFFSET 0
2531
+  (0.1ms) SELECT DISTINCT COUNT(DISTINCT "countries"."id") FROM "countries"
2532
+ Rendered countries/index.html.haml within layouts/application (3.8ms)
2533
+ Completed 200 OK in 12ms (Views: 11.3ms | ActiveRecord: 0.2ms)
2534
+
2535
+
2536
+ Started GET "/countries/new" for ::1 at 2015-04-29 20:34:36 -0600
2537
+ Processing by CountriesController#new as HTML
2538
+ Rendered countries/_form.html.haml (27.2ms)
2539
+ Rendered countries/new.html.haml within layouts/application (28.3ms)
2540
+ Completed 500 Internal Server Error in 30ms (ActiveRecord: 0.0ms)
2541
+
2542
+ ActionView::Template::Error (undefined method `admin_countries_path' for #<#<Class:0x00000004c22528>:0x007f32e9f92360>):
2543
+ 1: = country_saved? ? "true" : "false"
2544
+ 2: = simple_form_for [:admin, country] do |f|
2545
+ 3: = f.input :code
2546
+ 4: = f.input :name
2547
+ 5: = f.input :active
2548
+ app/views/countries/_form.html.haml:2:in `_app_views_countries__form_html_haml___2528841499687772226_69928316513520'
2549
+ app/views/countries/new.html.haml:1:in `_app_views_countries_new_html_haml___1731716106037320278_69928325251220'
2550
+
2551
+
2552
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.8ms)
2553
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms)
2554
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
2555
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (14.2ms)
2556
+
2557
+
2558
+ Started GET "/countries/new" for ::1 at 2015-04-29 20:34:56 -0600
2559
+ Processing by CountriesController#new as HTML
2560
+ Rendered countries/_form.html.haml (7.2ms)
2561
+ Rendered countries/new.html.haml within layouts/application (7.6ms)
2562
+ Completed 200 OK in 14ms (Views: 13.7ms | ActiveRecord: 0.0ms)
2563
+
2564
+
2565
+ Started GET "/assets/countries.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for ::1 at 2015-04-29 20:34:56 -0600
2566
+
2567
+
2568
+ Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2015-04-29 20:34:56 -0600
2569
+
2570
+
2571
+ Started GET "/assets/countries.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-04-29 20:34:56 -0600
2572
+
2573
+
2574
+ Started GET "/assets/application.self-fb28094035fc8f155b896e47c199355db7c84fc9d6214ed9800f1022ac2ece52.js?body=1" for ::1 at 2015-04-29 20:34:56 -0600
2575
+
2576
+
2577
+ Started POST "/countries" for ::1 at 2015-04-29 20:35:34 -0600
2578
+ Processing by CountriesController#create as HTML
2579
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"2XO74731IjOxvNuN6BHPVZihPpasCqlTe1sQlfUAVzJq189OOIOcR6Fj86VnpPhXQNd05L6KGldEN4ZsZ0UH8Q==", "country"=>{"code"=>"SV", "name"=>"sdfsdf", "active"=>"1"}, "commit"=>"SAVE"}
2580
+  (0.1ms) begin transaction
2581
+ SQL (0.2ms) INSERT INTO "countries" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-04-30 02:35:34.581392"], ["updated_at", "2015-04-30 02:35:34.581392"]]
2582
+  (38.6ms) commit transaction
2583
+ Redirected to http://localhost:3000/
2584
+ Completed 302 Found in 41ms (ActiveRecord: 38.9ms)
2585
+
2586
+
2587
+ Started GET "/" for ::1 at 2015-04-29 20:35:34 -0600
2588
+ Processing by CountriesController#index as HTML
2589
+ Country Load (0.1ms) SELECT DISTINCT "countries".* FROM "countries" LIMIT 25 OFFSET 0
2590
+  (0.1ms) SELECT DISTINCT COUNT(DISTINCT "countries"."id") FROM "countries"
2591
+ Rendered countries/index.html.haml within layouts/application (3.8ms)
2592
+ Completed 200 OK in 11ms (Views: 10.3ms | ActiveRecord: 0.2ms)
2593
+
2594
+
2595
+ Started GET "/countries/1" for ::1 at 2015-04-29 20:35:39 -0600
2596
+ Processing by CountriesController#show as HTML
2597
+ Parameters: {"id"=>"1"}
2598
+ Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
2599
+
2600
+ ActionView::MissingTemplate (Missing template countries/show, application/show with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :haml]}. Searched in:
2601
+ * "/home/shared-data/projects/ruby/engines/resources/test/dummy/app/views"
2602
+ * "/home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/kaminari-0.16.3/app/views"
2603
+ ):
2604
+ actionview (4.2.1) lib/action_view/path_set.rb:46:in `find'
2605
+ actionview (4.2.1) lib/action_view/lookup_context.rb:121:in `find'
2606
+ actionview (4.2.1) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template'
2607
+ actionview (4.2.1) lib/action_view/renderer/template_renderer.rb:40:in `determine_template'
2608
+ actionview (4.2.1) lib/action_view/renderer/template_renderer.rb:8:in `render'
2609
+ actionview (4.2.1) lib/action_view/renderer/renderer.rb:42:in `render_template'
2610
+ actionview (4.2.1) lib/action_view/renderer/renderer.rb:23:in `render'
2611
+ actionview (4.2.1) lib/action_view/rendering.rb:100:in `_render_template'
2612
+ actionpack (4.2.1) lib/action_controller/metal/streaming.rb:217:in `_render_template'
2613
+ actionview (4.2.1) lib/action_view/rendering.rb:83:in `render_to_body'
2614
+ actionpack (4.2.1) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
2615
+ actionpack (4.2.1) lib/action_controller/metal/renderers.rb:37:in `render_to_body'
2616
+ actionpack (4.2.1) lib/abstract_controller/rendering.rb:25:in `render'
2617
+ actionpack (4.2.1) lib/action_controller/metal/rendering.rb:16:in `render'
2618
+ actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render'
2619
+ activesupport (4.2.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
2620
+ /home/developer/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/benchmark.rb:303:in `realtime'
2621
+ activesupport (4.2.1) lib/active_support/core_ext/benchmark.rb:12:in `ms'
2622
+ actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:44:in `block in render'
2623
+ actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime'
2624
+ activerecord (4.2.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
2625
+ actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:43:in `render'
2626
+ actionpack (4.2.1) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
2627
+ actionpack (4.2.1) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
2628
+ actionpack (4.2.1) lib/abstract_controller/base.rb:198:in `process_action'
2629
+ actionpack (4.2.1) lib/action_controller/metal/rendering.rb:10:in `process_action'
2630
+ actionpack (4.2.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
2631
+ activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call'
2632
+ activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call'
2633
+ activesupport (4.2.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
2634
+ activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call'
2635
+ activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call'
2636
+ activesupport (4.2.1) lib/active_support/callbacks.rb:92:in `_run_callbacks'
2637
+ activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_process_action_callbacks'
2638
+ activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
2639
+ actionpack (4.2.1) lib/abstract_controller/callbacks.rb:19:in `process_action'
2640
+ actionpack (4.2.1) lib/action_controller/metal/rescue.rb:29:in `process_action'
2641
+ actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
2642
+ activesupport (4.2.1) lib/active_support/notifications.rb:164:in `block in instrument'
2643
+ activesupport (4.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
2644
+ activesupport (4.2.1) lib/active_support/notifications.rb:164:in `instrument'
2645
+ actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
2646
+ actionpack (4.2.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
2647
+ activerecord (4.2.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
2648
+ actionpack (4.2.1) lib/abstract_controller/base.rb:137:in `process'
2649
+ actionview (4.2.1) lib/action_view/rendering.rb:30:in `process'
2650
+ actionpack (4.2.1) lib/action_controller/metal.rb:196:in `dispatch'
2651
+ actionpack (4.2.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
2652
+ actionpack (4.2.1) lib/action_controller/metal.rb:237:in `block in action'
2653
+ actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `call'
2654
+ actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
2655
+ actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:43:in `serve'
2656
+ actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve'
2657
+ actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each'
2658
+ actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve'
2659
+ actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call'
2660
+ rack (1.6.0) lib/rack/etag.rb:24:in `call'
2661
+ rack (1.6.0) lib/rack/conditionalget.rb:25:in `call'
2662
+ rack (1.6.0) lib/rack/head.rb:13:in `call'
2663
+ actionpack (4.2.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
2664
+ actionpack (4.2.1) lib/action_dispatch/middleware/flash.rb:260:in `call'
2665
+ rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context'
2666
+ rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call'
2667
+ actionpack (4.2.1) lib/action_dispatch/middleware/cookies.rb:560:in `call'
2668
+ activerecord (4.2.1) lib/active_record/query_cache.rb:36:in `call'
2669
+ activerecord (4.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:649:in `call'
2670
+ activerecord (4.2.1) lib/active_record/migration.rb:378:in `call'
2671
+ actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
2672
+ activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call'
2673
+ activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks'
2674
+ activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks'
2675
+ activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
2676
+ actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
2677
+ actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call'
2678
+ actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
2679
+ actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
2680
+ actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
2681
+ railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app'
2682
+ railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call'
2683
+ activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
2684
+ activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged'
2685
+ activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged'
2686
+ railties (4.2.1) lib/rails/rack/logger.rb:20:in `call'
2687
+ actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
2688
+ rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
2689
+ rack (1.6.0) lib/rack/runtime.rb:18:in `call'
2690
+ activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
2691
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
2692
+ actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call'
2693
+ rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
2694
+ railties (4.2.1) lib/rails/engine.rb:518:in `call'
2695
+ railties (4.2.1) lib/rails/application.rb:164:in `call'
2696
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
2697
+ rack (1.6.0) lib/rack/content_length.rb:15:in `call'
2698
+ rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
2699
+ /home/developer/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
2700
+ /home/developer/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
2701
+ /home/developer/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
2702
+
2703
+
2704
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.6ms)
2705
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms)
2706
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.4ms)
2707
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/missing_template.html.erb within rescues/layout (14.8ms)
2708
+
2709
+
2710
+ Started POST "/countries" for ::1 at 2015-04-29 20:36:25 -0600
2711
+ Processing by CountriesController#create as HTML
2712
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"2XO74731IjOxvNuN6BHPVZihPpasCqlTe1sQlfUAVzJq189OOIOcR6Fj86VnpPhXQNd05L6KGldEN4ZsZ0UH8Q==", "country"=>{"code"=>"SV", "name"=>"sdfsdf", "active"=>"1"}, "commit"=>"SAVE"}
2713
+  (0.0ms) begin transaction
2714
+ SQL (0.1ms) INSERT INTO "countries" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-04-30 02:36:25.072611"], ["updated_at", "2015-04-30 02:36:25.072611"]]
2715
+  (27.5ms) commit transaction
2716
+ Redirected to http://localhost:3000/
2717
+ Completed 302 Found in 29ms (ActiveRecord: 27.7ms)
2718
+
2719
+
2720
+ Started GET "/" for ::1 at 2015-04-29 20:36:25 -0600
2721
+ Processing by CountriesController#index as HTML
2722
+ Country Load (0.1ms) SELECT DISTINCT "countries".* FROM "countries" LIMIT 25 OFFSET 0
2723
+  (0.1ms) SELECT DISTINCT COUNT(DISTINCT "countries"."id") FROM "countries"
2724
+ Rendered countries/index.html.haml within layouts/application (3.8ms)
2725
+ Completed 200 OK in 11ms (Views: 10.6ms | ActiveRecord: 0.2ms)
2726
+
2727
+
2728
+ Started GET "/countries/new" for ::1 at 2015-04-29 20:40:22 -0600
2729
+ Processing by CountriesController#new as HTML
2730
+ Rendered countries/_form.html.haml (8.5ms)
2731
+ Rendered countries/new.html.haml within layouts/application (8.9ms)
2732
+ Completed 200 OK in 15ms (Views: 14.5ms | ActiveRecord: 0.3ms)
2733
+
2734
+
2735
+ Started POST "/countries" for ::1 at 2015-04-29 20:40:26 -0600
2736
+ Processing by CountriesController#create as HTML
2737
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"nHqcXCR62zZMtXyfv84K4xAJ/4MZut+9OTHvrG6aZLYv3ujxoQxlQlxqVLcwez3hyH+18Qs6bLkGXXlV/N80dQ==", "country"=>{"code"=>"asdasd", "name"=>"", "active"=>""}, "commit"=>"SAVE"}
2738
+  (0.0ms) begin transaction
2739
+ SQL (0.1ms) INSERT INTO "countries" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2015-04-30 02:40:26.511261"], ["updated_at", "2015-04-30 02:40:26.511261"]]
2740
+  (34.2ms) commit transaction
2741
+ Redirected to http://localhost:3000/countries
2742
+ Completed 302 Found in 37ms (ActiveRecord: 34.3ms)
2743
+
2744
+
2745
+ Started GET "/countries" for ::1 at 2015-04-29 20:40:26 -0600
2746
+ Processing by CountriesController#index as HTML
2747
+ Country Load (0.1ms) SELECT DISTINCT "countries".* FROM "countries" LIMIT 25 OFFSET 0
2748
+  (0.1ms) SELECT DISTINCT COUNT(DISTINCT "countries"."id") FROM "countries"
2749
+ Rendered countries/index.html.haml within layouts/application (4.2ms)
2750
+ Completed 200 OK in 10ms (Views: 10.0ms | ActiveRecord: 0.2ms)
2751
+
2752
+
2753
+ Started GET "/countries/new" for ::1 at 2015-04-29 20:41:35 -0600
2754
+ Processing by CountriesController#new as HTML
2755
+ Rendered countries/_form.html.haml (8.2ms)
2756
+ Rendered countries/new.html.haml within layouts/application (8.6ms)
2757
+ Completed 200 OK in 15ms (Views: 14.4ms | ActiveRecord: 0.3ms)
2758
+
2759
+
2760
+ Started POST "/countries" for ::1 at 2015-04-29 20:41:41 -0600
2761
+ Processing by CountriesController#create as HTML
2762
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"PL3JLXdwm58s0v4VZBFjalcOfs22WUjMPomFM1ULaKSPGb2A8gYl6zwN1j3rpFRoj3g0v6TZ+8gB5RPKx044Zw==", "country"=>{"code"=>"fffffff", "name"=>"", "active"=>""}, "commit"=>"SAVE"}
2763
+  (0.0ms) begin transaction
2764
+ SQL (0.1ms) INSERT INTO "countries" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["code", "fffffff"], ["name", ""], ["created_at", "2015-04-30 02:41:41.031580"], ["updated_at", "2015-04-30 02:41:41.031580"]]
2765
+  (29.4ms) commit transaction
2766
+ Redirected to http://localhost:3000/countries
2767
+ Completed 302 Found in 32ms (ActiveRecord: 29.6ms)
2768
+
2769
+
2770
+ Started GET "/countries" for ::1 at 2015-04-29 20:41:41 -0600
2771
+ Processing by CountriesController#index as HTML
2772
+ Country Load (0.1ms) SELECT DISTINCT "countries".* FROM "countries" LIMIT 25 OFFSET 0
2773
+  (0.1ms) SELECT DISTINCT COUNT(DISTINCT "countries"."id") FROM "countries"
2774
+ Rendered countries/index.html.haml within layouts/application (4.2ms)
2775
+ Completed 200 OK in 11ms (Views: 10.5ms | ActiveRecord: 0.2ms)
2776
+
2777
+
2778
+ Started GET "/countries?utf8=%E2%9C%93&q%5Bname_cont%5D=ff&commit=Search" for ::1 at 2015-04-29 20:42:47 -0600
2779
+ Processing by CountriesController#index as HTML
2780
+ Parameters: {"utf8"=>"✓", "q"=>{"name_cont"=>"ff"}, "commit"=>"Search"}
2781
+ Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms)
2782
+
2783
+ NoMethodError (undefined method `woot' for #<CountriesController:0x007f32e9dbd1e8>):
2784
+ activesupport (4.2.1) lib/active_support/callbacks.rb:432:in `block in make_lambda'
2785
+ activesupport (4.2.1) lib/active_support/callbacks.rb:164:in `call'
2786
+ activesupport (4.2.1) lib/active_support/callbacks.rb:164:in `block in halting'
2787
+ activesupport (4.2.1) lib/active_support/callbacks.rb:504:in `call'
2788
+ activesupport (4.2.1) lib/active_support/callbacks.rb:504:in `block in call'
2789
+ activesupport (4.2.1) lib/active_support/callbacks.rb:504:in `each'
2790
+ activesupport (4.2.1) lib/active_support/callbacks.rb:504:in `call'
2791
+ activesupport (4.2.1) lib/active_support/callbacks.rb:92:in `_run_callbacks'
2792
+ activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_process_action_callbacks'
2793
+ activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
2794
+ actionpack (4.2.1) lib/abstract_controller/callbacks.rb:19:in `process_action'
2795
+ actionpack (4.2.1) lib/action_controller/metal/rescue.rb:29:in `process_action'
2796
+ actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
2797
+ activesupport (4.2.1) lib/active_support/notifications.rb:164:in `block in instrument'
2798
+ activesupport (4.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
2799
+ activesupport (4.2.1) lib/active_support/notifications.rb:164:in `instrument'
2800
+ actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
2801
+ actionpack (4.2.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
2802
+ activerecord (4.2.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
2803
+ actionpack (4.2.1) lib/abstract_controller/base.rb:137:in `process'
2804
+ actionview (4.2.1) lib/action_view/rendering.rb:30:in `process'
2805
+ actionpack (4.2.1) lib/action_controller/metal.rb:196:in `dispatch'
2806
+ actionpack (4.2.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
2807
+ actionpack (4.2.1) lib/action_controller/metal.rb:237:in `block in action'
2808
+ actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `call'
2809
+ actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
2810
+ actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:43:in `serve'
2811
+ actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve'
2812
+ actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each'
2813
+ actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve'
2814
+ actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call'
2815
+ rack (1.6.0) lib/rack/etag.rb:24:in `call'
2816
+ rack (1.6.0) lib/rack/conditionalget.rb:25:in `call'
2817
+ rack (1.6.0) lib/rack/head.rb:13:in `call'
2818
+ actionpack (4.2.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
2819
+ actionpack (4.2.1) lib/action_dispatch/middleware/flash.rb:260:in `call'
2820
+ rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context'
2821
+ rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call'
2822
+ actionpack (4.2.1) lib/action_dispatch/middleware/cookies.rb:560:in `call'
2823
+ activerecord (4.2.1) lib/active_record/query_cache.rb:36:in `call'
2824
+ activerecord (4.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:649:in `call'
2825
+ activerecord (4.2.1) lib/active_record/migration.rb:378:in `call'
2826
+ actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
2827
+ activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call'
2828
+ activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks'
2829
+ activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks'
2830
+ activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
2831
+ actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
2832
+ actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call'
2833
+ actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
2834
+ actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
2835
+ actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
2836
+ railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app'
2837
+ railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call'
2838
+ activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
2839
+ activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged'
2840
+ activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged'
2841
+ railties (4.2.1) lib/rails/rack/logger.rb:20:in `call'
2842
+ actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
2843
+ rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
2844
+ rack (1.6.0) lib/rack/runtime.rb:18:in `call'
2845
+ activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
2846
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
2847
+ actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call'
2848
+ rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
2849
+ railties (4.2.1) lib/rails/engine.rb:518:in `call'
2850
+ railties (4.2.1) lib/rails/application.rb:164:in `call'
2851
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
2852
+ rack (1.6.0) lib/rack/content_length.rb:15:in `call'
2853
+ rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
2854
+ /home/developer/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
2855
+ /home/developer/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
2856
+ /home/developer/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
2857
+
2858
+
2859
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.0ms)
2860
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
2861
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
2862
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (13.2ms)
2863
+
2864
+
2865
+ Started GET "/countries?utf8=%E2%9C%93&q%5Bname_cont%5D=ff&commit=Search" for ::1 at 2015-04-29 20:43:02 -0600
2866
+ Processing by CountriesController#index as HTML
2867
+ Parameters: {"utf8"=>"✓", "q"=>{"name_cont"=>"ff"}, "commit"=>"Search"}
2868
+ Country Load (0.1ms) SELECT DISTINCT "countries".* FROM "countries" WHERE "countries"."name" LIKE '%ff%' LIMIT 25 OFFSET 0
2869
+  (0.1ms) SELECT DISTINCT COUNT(DISTINCT "countries"."id") FROM "countries" WHERE "countries"."name" LIKE '%ff%'
2870
+ Rendered countries/index.html.haml within layouts/application (6.0ms)
2871
+ Completed 200 OK in 12ms (Views: 11.6ms | ActiveRecord: 0.6ms)
2872
+
2873
+
2874
+ Started GET "/assets/countries.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for ::1 at 2015-04-29 20:43:02 -0600
2875
+
2876
+
2877
+ Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2015-04-29 20:43:02 -0600
2878
+
2879
+
2880
+ Started GET "/assets/application.self-fb28094035fc8f155b896e47c199355db7c84fc9d6214ed9800f1022ac2ece52.js?body=1" for ::1 at 2015-04-29 20:43:02 -0600
2881
+
2882
+
2883
+ Started GET "/assets/countries.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-04-29 20:43:02 -0600
2884
+
2885
+
2886
+ Started GET "/countries/new" for ::1 at 2015-04-29 20:43:08 -0600
2887
+ Processing by CountriesController#new as HTML
2888
+ Rendered countries/_form.html.haml (7.1ms)
2889
+ Rendered countries/new.html.haml within layouts/application (7.5ms)
2890
+ Completed 200 OK in 13ms (Views: 13.2ms | ActiveRecord: 0.0ms)
2891
+
2892
+
2893
+ Started POST "/countries" for ::1 at 2015-04-29 20:43:13 -0600
2894
+ Processing by CountriesController#create as HTML
2895
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"aW5LIzSeFrDiYXObhS+YWbZidADfpHPLpdl8LmYptQPayj+OseioxPK+W7MKmq9bbhQ+cs0kwM+aterX9GzlwA==", "country"=>{"code"=>"", "name"=>"asdffff", "active"=>""}, "commit"=>"SAVE"}
2896
+  (0.1ms) begin transaction
2897
+ SQL (0.1ms) INSERT INTO "countries" ("code", "name", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["code", ""], ["name", "asdffff"], ["created_at", "2015-04-30 02:43:13.018566"], ["updated_at", "2015-04-30 02:43:13.018566"]]
2898
+  (21.2ms) commit transaction
2899
+ Redirected to http://localhost:3000/countries
2900
+ Completed 302 Found in 24ms (ActiveRecord: 21.4ms)
2901
+
2902
+
2903
+ Started GET "/countries" for ::1 at 2015-04-29 20:43:13 -0600
2904
+ Processing by CountriesController#index as HTML
2905
+ Country Load (0.1ms) SELECT DISTINCT "countries".* FROM "countries" LIMIT 25 OFFSET 0
2906
+  (0.1ms) SELECT DISTINCT COUNT(DISTINCT "countries"."id") FROM "countries"
2907
+ Rendered countries/index.html.haml within layouts/application (4.2ms)
2908
+ Completed 200 OK in 11ms (Views: 10.2ms | ActiveRecord: 0.2ms)
2909
+
2910
+
2911
+ Started GET "/countries?utf8=%E2%9C%93&q%5Bname_cont%5D=f&commit=Search" for ::1 at 2015-04-29 20:43:17 -0600
2912
+ Processing by CountriesController#index as HTML
2913
+ Parameters: {"utf8"=>"✓", "q"=>{"name_cont"=>"f"}, "commit"=>"Search"}
2914
+ Country Load (0.1ms) SELECT DISTINCT "countries".* FROM "countries" WHERE "countries"."name" LIKE '%f%' LIMIT 25 OFFSET 0
2915
+  (0.1ms) SELECT DISTINCT COUNT(DISTINCT "countries"."id") FROM "countries" WHERE "countries"."name" LIKE '%f%'
2916
+ Rendered countries/index.html.haml within layouts/application (4.6ms)
2917
+ Completed 200 OK in 11ms (Views: 10.5ms | ActiveRecord: 0.5ms)
2918
+
2919
+
2920
+ Started GET "/countries?utf8=%E2%9C%93&q%5Bname_cont%5D=f&commit=Search" for ::1 at 2015-04-29 20:47:37 -0600
2921
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2922
+ Processing by CountriesController#index as HTML
2923
+ Parameters: {"utf8"=>"✓", "q"=>{"name_cont"=>"f"}, "commit"=>"Search"}
2924
+ Rendered countries/index.html.haml within layouts/application (3.4ms)
2925
+ Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.0ms)
2926
+
2927
+ ActionView::Template::Error (undefined method `permit!' for nil:NilClass):
2928
+ 1: = search_form_for countries_search do |f|
2929
+ 2: = f.label :name_cont
2930
+ 3: = f.search_field :name_cont
2931
+ 4: = f.submit
2932
+ app/views/countries/index.html.haml:1:in `_app_views_countries_index_html_haml___625186046589744656_42260040'
2933
+
2934
+
2935
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.3ms)
2936
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms)
2937
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (5.5ms)
2938
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (18.3ms)
2939
+
2940
+
2941
+ Started GET "/" for ::1 at 2015-04-29 20:48:53 -0600
2942
+ Processing by CountriesController#index as HTML
2943
+ Rendered countries/index.html.haml within layouts/application (0.5ms)
2944
+ Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms)
2945
+
2946
+ ActionView::Template::Error (undefined method `permit!' for nil:NilClass):
2947
+ 1: = search_form_for countries_search do |f|
2948
+ 2: = f.label :name_cont
2949
+ 3: = f.search_field :name_cont
2950
+ 4: = f.submit
2951
+ app/views/countries/index.html.haml:1:in `_app_views_countries_index_html_haml___625186046589744656_42260040'
2952
+
2953
+
2954
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.3ms)
2955
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms)
2956
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
2957
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (13.4ms)
2958
+
2959
+
2960
+ Started GET "/" for ::1 at 2015-04-29 20:49:03 -0600
2961
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2962
+ Processing by CountriesController#index as HTML
2963
+ Country Load (0.1ms) SELECT DISTINCT "countries".* FROM "countries" LIMIT 25 OFFSET 0
2964
+  (0.1ms) SELECT DISTINCT COUNT(DISTINCT "countries"."id") FROM "countries"
2965
+ Rendered countries/index.html.haml within layouts/application (195.2ms)
2966
+ Completed 200 OK in 276ms (Views: 275.8ms | ActiveRecord: 0.4ms)
2967
+
2968
+
2969
+ Started GET "/assets/countries.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for ::1 at 2015-04-29 20:49:03 -0600
2970
+
2971
+
2972
+ Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2015-04-29 20:49:03 -0600
2973
+
2974
+
2975
+ Started GET "/assets/countries.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-04-29 20:49:03 -0600
2976
+
2977
+
2978
+ Started GET "/assets/application.self-fb28094035fc8f155b896e47c199355db7c84fc9d6214ed9800f1022ac2ece52.js?body=1" for ::1 at 2015-04-29 20:49:03 -0600
2979
+
2980
+
2981
+ Started GET "/?page=2" for ::1 at 2015-04-29 20:49:17 -0600
2982
+ Processing by CountriesController#index as HTML
2983
+ Parameters: {"page"=>"2"}
2984
+ Country Load (0.1ms) SELECT DISTINCT "countries".* FROM "countries" LIMIT 25 OFFSET 0
2985
+  (0.1ms) SELECT DISTINCT COUNT(DISTINCT "countries"."id") FROM "countries"
2986
+ Rendered countries/index.html.haml within layouts/application (4.2ms)
2987
+ Completed 200 OK in 11ms (Views: 11.1ms | ActiveRecord: 0.2ms)
2988
+
2989
+
2990
+ Started GET "/?page=2" for ::1 at 2015-04-29 20:50:41 -0600
2991
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2992
+ Processing by CountriesController#index as HTML
2993
+ Parameters: {"page"=>"2"}
2994
+ Country Load (0.1ms) SELECT DISTINCT "countries".* FROM "countries" LIMIT 25 OFFSET 25
2995
+  (0.1ms) SELECT DISTINCT COUNT(DISTINCT "countries"."id") FROM "countries"
2996
+ Rendered countries/index.html.haml within layouts/application (194.8ms)
2997
+ Completed 200 OK in 276ms (Views: 275.1ms | ActiveRecord: 0.4ms)
2998
+
2999
+
3000
+ Started GET "/?page=2" for ::1 at 2015-04-29 20:50:41 -0600
3001
+ Processing by CountriesController#index as HTML
3002
+ Parameters: {"page"=>"2"}
3003
+ Country Load (0.1ms) SELECT DISTINCT "countries".* FROM "countries" LIMIT 25 OFFSET 25
3004
+  (0.1ms) SELECT DISTINCT COUNT(DISTINCT "countries"."id") FROM "countries"
3005
+ Rendered countries/index.html.haml within layouts/application (5.7ms)
3006
+ Completed 200 OK in 14ms (Views: 13.9ms | ActiveRecord: 0.3ms)
3007
+
3008
+
3009
+ Started GET "/?page=2" for ::1 at 2015-04-29 20:50:42 -0600
3010
+ Processing by CountriesController#index as HTML
3011
+ Parameters: {"page"=>"2"}
3012
+ Country Load (0.1ms) SELECT DISTINCT "countries".* FROM "countries" LIMIT 25 OFFSET 25
3013
+  (0.1ms) SELECT DISTINCT COUNT(DISTINCT "countries"."id") FROM "countries"
3014
+ Rendered countries/index.html.haml within layouts/application (3.5ms)
3015
+ Completed 200 OK in 11ms (Views: 10.5ms | ActiveRecord: 0.2ms)
3016
+
3017
+
3018
+ Started GET "/assets/countries.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for ::1 at 2015-04-29 20:50:42 -0600
3019
+
3020
+
3021
+ Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2015-04-29 20:50:42 -0600
3022
+
3023
+
3024
+ Started GET "/assets/countries.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-04-29 20:50:42 -0600
3025
+
3026
+
3027
+ Started GET "/assets/application.self-fb28094035fc8f155b896e47c199355db7c84fc9d6214ed9800f1022ac2ece52.js?body=1" for ::1 at 2015-04-29 20:50:42 -0600
3028
+
3029
+
3030
+ Started GET "/?page=2" for ::1 at 2015-04-29 20:50:43 -0600
3031
+ Processing by CountriesController#index as HTML
3032
+ Parameters: {"page"=>"2"}
3033
+ Country Load (0.1ms) SELECT DISTINCT "countries".* FROM "countries" LIMIT 25 OFFSET 25
3034
+  (0.1ms) SELECT DISTINCT COUNT(DISTINCT "countries"."id") FROM "countries"
3035
+ Rendered countries/index.html.haml within layouts/application (3.6ms)
3036
+ Completed 200 OK in 15ms (Views: 14.4ms | ActiveRecord: 0.2ms)
3037
+
3038
+
3039
+ Started GET "/assets/countries.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for ::1 at 2015-04-29 20:50:43 -0600
3040
+
3041
+
3042
+ Started GET "/assets/countries.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-04-29 20:50:43 -0600
3043
+
3044
+
3045
+ Started GET "/assets/application.self-fb28094035fc8f155b896e47c199355db7c84fc9d6214ed9800f1022ac2ece52.js?body=1" for ::1 at 2015-04-29 20:50:43 -0600
3046
+
3047
+
3048
+ Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2015-04-29 20:50:43 -0600
3049
+
3050
+
3051
+ Started GET "/?page=2" for ::1 at 2015-04-29 20:50:45 -0600
3052
+ Processing by CountriesController#index as HTML
3053
+ Parameters: {"page"=>"2"}
3054
+ Country Load (0.1ms) SELECT DISTINCT "countries".* FROM "countries" LIMIT 25 OFFSET 25
3055
+  (0.1ms) SELECT DISTINCT COUNT(DISTINCT "countries"."id") FROM "countries"
3056
+ Rendered countries/index.html.haml within layouts/application (4.5ms)
3057
+ Completed 200 OK in 13ms (Views: 13.0ms | ActiveRecord: 0.2ms)
3058
+
3059
+
3060
+ Started GET "/?page=1" for ::1 at 2015-04-29 20:50:52 -0600
3061
+ Processing by CountriesController#index as HTML
3062
+ Parameters: {"page"=>"1"}
3063
+ Country Load (0.1ms) SELECT DISTINCT "countries".* FROM "countries" LIMIT 25 OFFSET 0
3064
+  (0.1ms) SELECT DISTINCT COUNT(DISTINCT "countries"."id") FROM "countries"
3065
+ Rendered countries/index.html.haml within layouts/application (8.5ms)
3066
+ Completed 200 OK in 18ms (Views: 17.3ms | ActiveRecord: 0.2ms)
3067
+
3068
+
3069
+ Started GET "/?page=1" for ::1 at 2015-04-29 20:51:29 -0600
3070
+ Processing by CountriesController#index as HTML
3071
+ Parameters: {"page"=>"1"}
3072
+ Rendered countries/index.html.haml within layouts/application (2.2ms)
3073
+ Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms)
3074
+
3075
+ ActionView::Template::Error (The class Countryp does not exists):
3076
+ 1: = search_form_for countries_search do |f|
3077
+ 2: = f.label :name_cont
3078
+ 3: = f.search_field :name_cont
3079
+ 4: = f.submit
3080
+ app/views/countries/index.html.haml:1:in `_app_views_countries_index_html_haml___2771513615588001571_43875680'
3081
+
3082
+
3083
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.1ms)
3084
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms)
3085
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms)
3086
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (13.3ms)
3087
+
3088
+
3089
+ Started GET "/?page=1" for ::1 at 2015-04-29 20:53:53 -0600
3090
+ Processing by CountriesController#index as HTML
3091
+ Parameters: {"page"=>"1"}
3092
+ Rendered countries/index.html.haml within layouts/application (0.6ms)
3093
+ Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
3094
+
3095
+ ActionView::Template::Error (The class Countryp does not exists):
3096
+ 1: = search_form_for countries_search do |f|
3097
+ 2: = f.label :name_cont
3098
+ 3: = f.search_field :name_cont
3099
+ 4: = f.submit
3100
+ app/views/countries/index.html.haml:1:in `_app_views_countries_index_html_haml___2771513615588001571_43875680'
3101
+
3102
+
3103
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.1ms)
3104
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms)
3105
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms)
3106
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (13.3ms)
3107
+
3108
+
3109
+ Started GET "/?page=1" for ::1 at 2015-04-29 20:54:01 -0600
3110
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
3111
+ Processing by CountriesController#index as HTML
3112
+ Parameters: {"page"=>"1"}
3113
+ Rendered countries/index.html.haml within layouts/application (2.7ms)
3114
+ Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.0ms)
3115
+
3116
+ ActionView::Template::Error (The class Countryp does not exists. Please specify a valid model):
3117
+ 1: = search_form_for countries_search do |f|
3118
+ 2: = f.label :name_cont
3119
+ 3: = f.search_field :name_cont
3120
+ 4: = f.submit
3121
+ app/views/countries/index.html.haml:1:in `_app_views_countries_index_html_haml___2835219000482733649_33385460'
3122
+
3123
+
3124
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.1ms)
3125
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms)
3126
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (5.5ms)
3127
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (18.0ms)
3128
+
3129
+
3130
+ Started GET "/?page=1" for ::1 at 2015-04-29 20:54:46 -0600
3131
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
3132
+ Processing by CountriesController#index as HTML
3133
+ Parameters: {"page"=>"1"}
3134
+ Country Load (0.1ms) SELECT DISTINCT "countries".* FROM "countries" LIMIT 25 OFFSET 0
3135
+  (0.1ms) SELECT DISTINCT COUNT(DISTINCT "countries"."id") FROM "countries"
3136
+ Rendered countries/index.html.haml within layouts/application (195.8ms)
3137
+ Completed 200 OK in 277ms (Views: 276.7ms | ActiveRecord: 0.4ms)
3138
+
3139
+
3140
+ Started GET "/?page=1" for ::1 at 2015-04-29 20:54:47 -0600
3141
+ Processing by CountriesController#index as HTML
3142
+ Parameters: {"page"=>"1"}
3143
+ Country Load (0.1ms) SELECT DISTINCT "countries".* FROM "countries" LIMIT 25 OFFSET 0
3144
+  (0.1ms) SELECT DISTINCT COUNT(DISTINCT "countries"."id") FROM "countries"
3145
+ Rendered countries/index.html.haml within layouts/application (4.2ms)
3146
+ Completed 200 OK in 12ms (Views: 11.4ms | ActiveRecord: 0.2ms)
3147
+
3148
+
3149
+ Started GET "/assets/countries.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for ::1 at 2015-04-29 20:54:47 -0600
3150
+
3151
+
3152
+ Started GET "/assets/application.self-fb28094035fc8f155b896e47c199355db7c84fc9d6214ed9800f1022ac2ece52.js?body=1" for ::1 at 2015-04-29 20:54:47 -0600
3153
+
3154
+
3155
+ Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2015-04-29 20:54:47 -0600
3156
+
3157
+
3158
+ Started GET "/assets/countries.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-04-29 20:54:47 -0600
3159
+
3160
+
3161
+ Started GET "/countries/new" for ::1 at 2015-04-29 21:05:39 -0600
3162
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
3163
+ Processing by CountriesController#new as HTML
3164
+ Rendered countries/_form.html.haml (209.0ms)
3165
+ Rendered countries/new.html.haml within layouts/application (211.1ms)
3166
+ Completed 200 OK in 289ms (Views: 289.0ms | ActiveRecord: 0.2ms)
3167
+
3168
+
3169
+ Started POST "/countries" for ::1 at 2015-04-29 21:05:43 -0600
3170
+ Processing by CountriesController#create as HTML
3171
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"4cowcNwm458eaqGTsgxoVis+6QQkFQErbOxxbhF62gxSbkTdWVBd6w61ibs9uV9U80ijdjaVsi9TgOeXgz+Kzw==", "country"=>{"code"=>"", "name"=>"fdddddddddddddddddd", "active"=>""}, "commit"=>"SAVE"}
3172
+ Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
3173
+
3174
+ ActiveModel::ForbiddenAttributesError (ActiveModel::ForbiddenAttributesError):
3175
+ activemodel (4.2.1) lib/active_model/forbidden_attributes_protection.rb:21:in `sanitize_for_mass_assignment'
3176
+ activerecord (4.2.1) lib/active_record/attribute_assignment.rb:33:in `assign_attributes'
3177
+ /home/shared-data/projects/ruby/engines/resources/lib/resources/rest_actions.rb:54:in `save_resource'
3178
+ /home/shared-data/projects/ruby/engines/resources/lib/resources/rest_actions.rb:29:in `create'
3179
+ actionpack (4.2.1) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
3180
+ actionpack (4.2.1) lib/abstract_controller/base.rb:198:in `process_action'
3181
+ actionpack (4.2.1) lib/action_controller/metal/rendering.rb:10:in `process_action'
3182
+ actionpack (4.2.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
3183
+ activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call'
3184
+ activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call'
3185
+ activesupport (4.2.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
3186
+ activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call'
3187
+ activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call'
3188
+ activesupport (4.2.1) lib/active_support/callbacks.rb:92:in `_run_callbacks'
3189
+ activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_process_action_callbacks'
3190
+ activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
3191
+ actionpack (4.2.1) lib/abstract_controller/callbacks.rb:19:in `process_action'
3192
+ actionpack (4.2.1) lib/action_controller/metal/rescue.rb:29:in `process_action'
3193
+ actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
3194
+ activesupport (4.2.1) lib/active_support/notifications.rb:164:in `block in instrument'
3195
+ activesupport (4.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
3196
+ activesupport (4.2.1) lib/active_support/notifications.rb:164:in `instrument'
3197
+ actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
3198
+ actionpack (4.2.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
3199
+ activerecord (4.2.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
3200
+ actionpack (4.2.1) lib/abstract_controller/base.rb:137:in `process'
3201
+ actionview (4.2.1) lib/action_view/rendering.rb:30:in `process'
3202
+ actionpack (4.2.1) lib/action_controller/metal.rb:196:in `dispatch'
3203
+ actionpack (4.2.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
3204
+ actionpack (4.2.1) lib/action_controller/metal.rb:237:in `block in action'
3205
+ actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `call'
3206
+ actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
3207
+ actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:43:in `serve'
3208
+ actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve'
3209
+ actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each'
3210
+ actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve'
3211
+ actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call'
3212
+ rack (1.6.0) lib/rack/etag.rb:24:in `call'
3213
+ rack (1.6.0) lib/rack/conditionalget.rb:38:in `call'
3214
+ rack (1.6.0) lib/rack/head.rb:13:in `call'
3215
+ actionpack (4.2.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
3216
+ actionpack (4.2.1) lib/action_dispatch/middleware/flash.rb:260:in `call'
3217
+ rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context'
3218
+ rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call'
3219
+ actionpack (4.2.1) lib/action_dispatch/middleware/cookies.rb:560:in `call'
3220
+ activerecord (4.2.1) lib/active_record/query_cache.rb:36:in `call'
3221
+ activerecord (4.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:649:in `call'
3222
+ activerecord (4.2.1) lib/active_record/migration.rb:378:in `call'
3223
+ actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
3224
+ activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call'
3225
+ activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks'
3226
+ activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks'
3227
+ activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
3228
+ actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
3229
+ actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call'
3230
+ actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
3231
+ actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
3232
+ actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
3233
+ railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app'
3234
+ railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call'
3235
+ activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
3236
+ activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged'
3237
+ activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged'
3238
+ railties (4.2.1) lib/rails/rack/logger.rb:20:in `call'
3239
+ actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
3240
+ rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
3241
+ rack (1.6.0) lib/rack/runtime.rb:18:in `call'
3242
+ activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
3243
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
3244
+ actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call'
3245
+ rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
3246
+ railties (4.2.1) lib/rails/engine.rb:518:in `call'
3247
+ railties (4.2.1) lib/rails/application.rb:164:in `call'
3248
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
3249
+ rack (1.6.0) lib/rack/content_length.rb:15:in `call'
3250
+ rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
3251
+ /home/developer/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
3252
+ /home/developer/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
3253
+ /home/developer/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
3254
+
3255
+
3256
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.5ms)
3257
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms)
3258
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms)
3259
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (14.7ms)
3260
+
3261
+
3262
+ Started POST "/countries" for ::1 at 2015-04-29 21:06:55 -0600
3263
+ Processing by CountriesController#create as HTML
3264
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"4cowcNwm458eaqGTsgxoVis+6QQkFQErbOxxbhF62gxSbkTdWVBd6w61ibs9uV9U80ijdjaVsi9TgOeXgz+Kzw==", "country"=>{"code"=>"", "name"=>"fdddddddddddddddddd", "active"=>""}, "commit"=>"SAVE"}
3265
+ Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
3266
+
3267
+ SyntaxError (/home/shared-data/projects/ruby/engines/resources/test/dummy/app/models/country.rb:4: syntax error, unexpected '}', expecting =>):
3268
+ app/models/country.rb:4: syntax error, unexpected '}', expecting =>
3269
+
3270
+
3271
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.0ms)
3272
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms)
3273
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.6ms)
3274
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (13.3ms)
3275
+
3276
+
3277
+ Started POST "/countries" for ::1 at 2015-04-29 21:07:29 -0600
3278
+ Processing by CountriesController#create as HTML
3279
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"4cowcNwm458eaqGTsgxoVis+6QQkFQErbOxxbhF62gxSbkTdWVBd6w61ibs9uV9U80ijdjaVsi9TgOeXgz+Kzw==", "country"=>{"code"=>"", "name"=>"fdddddddddddddddddd", "active"=>""}, "commit"=>"SAVE"}
3280
+ Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
3281
+
3282
+ SyntaxError (/home/shared-data/projects/ruby/engines/resources/test/dummy/app/models/country.rb:4: syntax error, unexpected '}', expecting =>):
3283
+ app/models/country.rb:4: syntax error, unexpected '}', expecting =>
3284
+
3285
+
3286
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.6ms)
3287
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.7ms)
3288
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.6ms)
3289
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (18.1ms)
3290
+
3291
+
3292
+ Started POST "/countries" for ::1 at 2015-04-29 21:08:38 -0600
3293
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
3294
+ Processing by CountriesController#create as HTML
3295
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"4cowcNwm458eaqGTsgxoVis+6QQkFQErbOxxbhF62gxSbkTdWVBd6w61ibs9uV9U80ijdjaVsi9TgOeXgz+Kzw==", "country"=>{"code"=>"", "name"=>"fdddddddddddddddddd", "active"=>""}, "commit"=>"SAVE"}
3296
+ Unpermitted parameters: code, active
3297
+  (0.1ms) begin transaction
3298
+ SQL (0.2ms) INSERT INTO "countries" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "fdddddddddddddddddd"], ["created_at", "2015-04-30 03:08:38.055481"], ["updated_at", "2015-04-30 03:08:38.055481"]]
3299
+  (17.5ms) commit transaction
3300
+ Redirected to http://localhost:3000/countries
3301
+ Completed 302 Found in 33ms (ActiveRecord: 18.0ms)
3302
+
3303
+
3304
+ Started GET "/countries" for ::1 at 2015-04-29 21:08:38 -0600
3305
+ Processing by CountriesController#index as HTML
3306
+ Country Load (0.1ms) SELECT DISTINCT "countries".* FROM "countries" LIMIT 25 OFFSET 0
3307
+  (0.1ms) SELECT DISTINCT COUNT(DISTINCT "countries"."id") FROM "countries"
3308
+ Rendered countries/index.html.haml within layouts/application (190.3ms)
3309
+ Completed 200 OK in 270ms (Views: 269.6ms | ActiveRecord: 0.2ms)
3310
+
3311
+
3312
+ Started GET "/assets/countries.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for ::1 at 2015-04-29 21:08:38 -0600
3313
+
3314
+
3315
+ Started GET "/assets/application.self-fb28094035fc8f155b896e47c199355db7c84fc9d6214ed9800f1022ac2ece52.js?body=1" for ::1 at 2015-04-29 21:08:38 -0600
3316
+
3317
+
3318
+ Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2015-04-29 21:08:38 -0600
3319
+
3320
+
3321
+ Started GET "/assets/countries.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-04-29 21:08:38 -0600
3322
+
3323
+
3324
+ Started GET "/countries/new" for ::1 at 2015-04-29 21:08:43 -0600
3325
+ Processing by CountriesController#new as HTML
3326
+ Rendered countries/_form.html.haml (30.3ms)
3327
+ Rendered countries/new.html.haml within layouts/application (31.2ms)
3328
+ Completed 200 OK in 39ms (Views: 39.0ms | ActiveRecord: 0.0ms)
3329
+
3330
+
3331
+ Started POST "/countries" for ::1 at 2015-04-29 21:08:49 -0600
3332
+ Processing by CountriesController#create as HTML
3333
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"TCBnvXJf5rdYxSgO9dLV0nsgxlyQlbEQWLWhshraTCH/hBMQ9ylYw0gaACZ6Z+LQo1aMLoIVAhRn2TdLiJ8c4g==", "country"=>{"code"=>"1111111111111", "name"=>"12222222222222222", "active"=>"33333333333333"}, "commit"=>"SAVE"}
3334
+ Unpermitted parameters: code, active
3335
+  (0.0ms) begin transaction
3336
+ SQL (0.1ms) INSERT INTO "countries" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "12222222222222222"], ["created_at", "2015-04-30 03:08:49.411300"], ["updated_at", "2015-04-30 03:08:49.411300"]]
3337
+  (13.8ms) commit transaction
3338
+ Redirected to http://localhost:3000/countries
3339
+ Completed 302 Found in 17ms (ActiveRecord: 14.0ms)
3340
+
3341
+
3342
+ Started GET "/countries" for ::1 at 2015-04-29 21:08:49 -0600
3343
+ Processing by CountriesController#index as HTML
3344
+ Country Load (0.2ms) SELECT DISTINCT "countries".* FROM "countries" LIMIT 25 OFFSET 0
3345
+  (0.1ms) SELECT DISTINCT COUNT(DISTINCT "countries"."id") FROM "countries"
3346
+ Rendered countries/index.html.haml within layouts/application (5.8ms)
3347
+ Completed 200 OK in 15ms (Views: 14.8ms | ActiveRecord: 0.3ms)
3348
+
3349
+
3350
+ Started GET "/countries/new" for ::1 at 2015-04-29 21:08:55 -0600
3351
+ Processing by CountriesController#new as HTML
3352
+ Rendered countries/_form.html.haml (6.5ms)
3353
+ Rendered countries/new.html.haml within layouts/application (7.0ms)
3354
+ Completed 200 OK in 16ms (Views: 15.8ms | ActiveRecord: 0.0ms)
3355
+
3356
+
3357
+ Started GET "/countries/new" for ::1 at 2015-04-29 21:08:55 -0600
3358
+ Processing by CountriesController#new as HTML
3359
+ Rendered countries/_form.html.haml (8.6ms)
3360
+ Rendered countries/new.html.haml within layouts/application (9.1ms)
3361
+ Completed 200 OK in 17ms (Views: 17.2ms | ActiveRecord: 0.0ms)
3362
+
3363
+
3364
+ Started POST "/countries" for ::1 at 2015-04-29 21:09:01 -0600
3365
+ Processing by CountriesController#create as HTML
3366
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"UfKbeNtFIC9i4K5BOTU4OeYCWzP+SqfwVcfY7sXqhM/iVu/VXjOeW3I/hmm2gA87PnQRQezKFPRqq04XV6/UDA==", "country"=>{"code"=>"1", "name"=>"2", "active"=>"3"}, "commit"=>"SAVE"}
3367
+ Unpermitted parameters: code, active
3368
+  (0.1ms) begin transaction
3369
+ SQL (0.1ms) INSERT INTO "countries" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "2"], ["created_at", "2015-04-30 03:09:01.283212"], ["updated_at", "2015-04-30 03:09:01.283212"]]
3370
+  (22.7ms) commit transaction
3371
+ Redirected to http://localhost:3000/countries
3372
+ Completed 302 Found in 26ms (ActiveRecord: 22.9ms)
3373
+
3374
+
3375
+ Started GET "/countries" for ::1 at 2015-04-29 21:09:01 -0600
3376
+ Processing by CountriesController#index as HTML
3377
+ Country Load (0.2ms) SELECT DISTINCT "countries".* FROM "countries" LIMIT 25 OFFSET 0
3378
+  (0.1ms) SELECT DISTINCT COUNT(DISTINCT "countries"."id") FROM "countries"
3379
+ Rendered countries/index.html.haml within layouts/application (6.9ms)
3380
+ Completed 200 OK in 17ms (Views: 16.9ms | ActiveRecord: 0.3ms)
3381
+
3382
+
3383
+ Started GET "/countries/new" for ::1 at 2015-04-29 21:09:48 -0600
3384
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
3385
+ Processing by CountriesController#new as HTML
3386
+ Rendered countries/_form.html.haml (209.5ms)
3387
+ Rendered countries/new.html.haml within layouts/application (211.7ms)
3388
+ Completed 200 OK in 288ms (Views: 288.1ms | ActiveRecord: 0.2ms)
3389
+
3390
+
3391
+ Started GET "/assets/countries.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for ::1 at 2015-04-29 21:09:48 -0600
3392
+
3393
+
3394
+ Started GET "/assets/application.self-fb28094035fc8f155b896e47c199355db7c84fc9d6214ed9800f1022ac2ece52.js?body=1" for ::1 at 2015-04-29 21:09:48 -0600
3395
+
3396
+
3397
+ Started GET "/assets/countries.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-04-29 21:09:48 -0600
3398
+
3399
+
3400
+ Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2015-04-29 21:09:48 -0600
3401
+
3402
+
3403
+ Started POST "/countries" for ::1 at 2015-04-29 21:09:56 -0600
3404
+ Processing by CountriesController#create as HTML
3405
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"PmRTKIRk9Ywv0NKBQSJKcuX88B68/rqCTbTjV3uemk6NwCeFARJL+D8P+qnOl31wPYq6bK5+CYZy2HWu6dvKjQ==", "country"=>{"code"=>"1", "name"=>"2", "active"=>"3"}, "commit"=>"SAVE"}
3406
+  (0.1ms) begin transaction
3407
+ SQL (0.2ms) INSERT INTO "countries" ("name", "code", "active", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "2"], ["code", "1"], ["active", 3], ["created_at", "2015-04-30 03:09:56.339546"], ["updated_at", "2015-04-30 03:09:56.339546"]]
3408
+  (35.6ms) commit transaction
3409
+ Redirected to http://localhost:3000/countries
3410
+ Completed 302 Found in 41ms (ActiveRecord: 35.9ms)
3411
+
3412
+
3413
+ Started GET "/countries" for ::1 at 2015-04-29 21:09:56 -0600
3414
+ Processing by CountriesController#index as HTML
3415
+ Country Load (0.2ms) SELECT DISTINCT "countries".* FROM "countries" LIMIT 25 OFFSET 0
3416
+  (0.1ms) SELECT DISTINCT COUNT(DISTINCT "countries"."id") FROM "countries"
3417
+ Rendered countries/index.html.haml within layouts/application (11.2ms)
3418
+ Completed 200 OK in 20ms (Views: 19.9ms | ActiveRecord: 0.4ms)
3419
+
3420
+
3421
+ Started GET "/countries/new" for ::1 at 2015-04-29 21:10:03 -0600
3422
+ Processing by CountriesController#new as HTML
3423
+ Rendered countries/_form.html.haml (10.3ms)
3424
+ Rendered countries/new.html.haml within layouts/application (10.7ms)
3425
+ Completed 200 OK in 24ms (Views: 24.2ms | ActiveRecord: 0.0ms)
3426
+
3427
+
3428
+ Started POST "/countries" for ::1 at 2015-04-29 21:10:11 -0600
3429
+ Processing by CountriesController#create as HTML
3430
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"Id/PbtXMMdW3zBvc1TVO3OcESB+RjabGhLYcKpZzUPSSe7vDULqPoacTM/RagHneP3ICbYMNFcK72orTBDYANw==", "country"=>{"code"=>"SV", "name"=>"el salvador", "active"=>"1"}, "commit"=>"SAVE"}
3431
+  (0.1ms) begin transaction
3432
+ SQL (0.1ms) INSERT INTO "countries" ("name", "code", "active", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "el salvador"], ["code", "SV"], ["active", 1], ["created_at", "2015-04-30 03:10:11.688094"], ["updated_at", "2015-04-30 03:10:11.688094"]]
3433
+  (34.8ms) commit transaction
3434
+ Redirected to http://localhost:3000/countries
3435
+ Completed 302 Found in 38ms (ActiveRecord: 35.0ms)
3436
+
3437
+
3438
+ Started GET "/countries" for ::1 at 2015-04-29 21:10:11 -0600
3439
+ Processing by CountriesController#index as HTML
3440
+ Country Load (0.2ms) SELECT DISTINCT "countries".* FROM "countries" LIMIT 25 OFFSET 0
3441
+  (0.1ms) SELECT DISTINCT COUNT(DISTINCT "countries"."id") FROM "countries"
3442
+ Rendered countries/index.html.haml within layouts/application (6.3ms)
3443
+ Completed 200 OK in 15ms (Views: 14.9ms | ActiveRecord: 0.2ms)
3444
+
3445
+
3446
+ Started GET "/countries/new" for ::1 at 2015-04-29 21:14:55 -0600
3447
+ Processing by CountriesController#new as HTML
3448
+ Rendered countries/_form.html.haml (12.5ms)
3449
+ Rendered countries/new.html.haml within layouts/application (12.8ms)
3450
+ Completed 200 OK in 25ms (Views: 24.2ms | ActiveRecord: 0.3ms)
3451
+
3452
+
3453
+
3454
+
3455
+ Started POST "/countries" for ::1 at 2015-04-29 21:15:08 -0600
3456
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
3457
+ Processing by CountriesController#create as HTML
3458
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"+d1K07ZZS6CXjGM09IxGi7x8t0wP3JvnVo+/hqgw1MFKeT5+My/11IdTSxx7OXGJZAr9Ph1cKONp4yl/OnWEAg==", "country"=>{"code"=>"", "name"=>"sss", "active"=>""}, "commit"=>"SAVE"}
3459
+ Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.2ms)
3460
+
3461
+ ActiveModel::ForbiddenAttributesError (ActiveModel::ForbiddenAttributesError):
3462
+ activemodel (4.2.1) lib/active_model/forbidden_attributes_protection.rb:21:in `sanitize_for_mass_assignment'
3463
+ activerecord (4.2.1) lib/active_record/attribute_assignment.rb:33:in `assign_attributes'
3464
+ /home/shared-data/projects/ruby/engines/resources/lib/resources/rest_actions.rb:54:in `save_resource'
3465
+ /home/shared-data/projects/ruby/engines/resources/lib/resources/rest_actions.rb:29:in `create'
3466
+ actionpack (4.2.1) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
3467
+ actionpack (4.2.1) lib/abstract_controller/base.rb:198:in `process_action'
3468
+ actionpack (4.2.1) lib/action_controller/metal/rendering.rb:10:in `process_action'
3469
+ actionpack (4.2.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
3470
+ activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call'
3471
+ activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call'
3472
+ activesupport (4.2.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
3473
+ activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call'
3474
+ activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call'
3475
+ activesupport (4.2.1) lib/active_support/callbacks.rb:92:in `_run_callbacks'
3476
+ activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_process_action_callbacks'
3477
+ activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
3478
+ actionpack (4.2.1) lib/abstract_controller/callbacks.rb:19:in `process_action'
3479
+ actionpack (4.2.1) lib/action_controller/metal/rescue.rb:29:in `process_action'
3480
+ actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
3481
+ activesupport (4.2.1) lib/active_support/notifications.rb:164:in `block in instrument'
3482
+ activesupport (4.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
3483
+ activesupport (4.2.1) lib/active_support/notifications.rb:164:in `instrument'
3484
+ actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
3485
+ actionpack (4.2.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
3486
+ activerecord (4.2.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
3487
+ actionpack (4.2.1) lib/abstract_controller/base.rb:137:in `process'
3488
+ actionview (4.2.1) lib/action_view/rendering.rb:30:in `process'
3489
+ actionpack (4.2.1) lib/action_controller/metal.rb:196:in `dispatch'
3490
+ actionpack (4.2.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
3491
+ actionpack (4.2.1) lib/action_controller/metal.rb:237:in `block in action'
3492
+ actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `call'
3493
+ actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
3494
+ actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:43:in `serve'
3495
+ actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve'
3496
+ actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each'
3497
+ actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve'
3498
+ actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call'
3499
+ rack (1.6.0) lib/rack/etag.rb:24:in `call'
3500
+ rack (1.6.0) lib/rack/conditionalget.rb:38:in `call'
3501
+ rack (1.6.0) lib/rack/head.rb:13:in `call'
3502
+ actionpack (4.2.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
3503
+ actionpack (4.2.1) lib/action_dispatch/middleware/flash.rb:260:in `call'
3504
+ rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context'
3505
+ rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call'
3506
+ actionpack (4.2.1) lib/action_dispatch/middleware/cookies.rb:560:in `call'
3507
+ activerecord (4.2.1) lib/active_record/query_cache.rb:36:in `call'
3508
+ activerecord (4.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:649:in `call'
3509
+ activerecord (4.2.1) lib/active_record/migration.rb:378:in `call'
3510
+ actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
3511
+ activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call'
3512
+ activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks'
3513
+ activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks'
3514
+ activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
3515
+ actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
3516
+ actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call'
3517
+ actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
3518
+ actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
3519
+ actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
3520
+ railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app'
3521
+ railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call'
3522
+ activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
3523
+ activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged'
3524
+ activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged'
3525
+ railties (4.2.1) lib/rails/rack/logger.rb:20:in `call'
3526
+ actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
3527
+ rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
3528
+ rack (1.6.0) lib/rack/runtime.rb:18:in `call'
3529
+ activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
3530
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
3531
+ actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call'
3532
+ rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
3533
+ railties (4.2.1) lib/rails/engine.rb:518:in `call'
3534
+ railties (4.2.1) lib/rails/application.rb:164:in `call'
3535
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
3536
+ rack (1.6.0) lib/rack/content_length.rb:15:in `call'
3537
+ rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
3538
+ /home/developer/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
3539
+ /home/developer/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
3540
+ /home/developer/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
3541
+
3542
+
3543
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.2ms)
3544
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms)
3545
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.6ms)
3546
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (13.8ms)
3547
+
3548
+
3549
+ Started POST "/countries" for ::1 at 2015-04-29 21:23:58 -0600
3550
+ Processing by CountriesController#create as HTML
3551
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"+d1K07ZZS6CXjGM09IxGi7x8t0wP3JvnVo+/hqgw1MFKeT5+My/11IdTSxx7OXGJZAr9Ph1cKONp4yl/OnWEAg==", "country"=>{"code"=>"", "name"=>"sss", "active"=>""}, "commit"=>"SAVE"}
3552
+  (0.1ms) begin transaction
3553
+ SQL (0.2ms) INSERT INTO "countries" ("name", "code", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "sss"], ["code", ""], ["created_at", "2015-04-30 03:23:58.998631"], ["updated_at", "2015-04-30 03:23:58.998631"]]
3554
+  (20.2ms) commit transaction
3555
+ Redirected to http://localhost:3000/countries
3556
+ Completed 302 Found in 28ms (ActiveRecord: 20.7ms)
3557
+
3558
+
3559
+ Started GET "/countries" for ::1 at 2015-04-29 21:23:59 -0600
3560
+ Processing by CountriesController#index as HTML
3561
+ Country Load (0.2ms) SELECT DISTINCT "countries".* FROM "countries" LIMIT 25 OFFSET 0
3562
+  (0.1ms) SELECT DISTINCT COUNT(DISTINCT "countries"."id") FROM "countries"
3563
+ Rendered countries/index.html.haml within layouts/application (228.9ms)
3564
+ Completed 200 OK in 306ms (Views: 305.6ms | ActiveRecord: 0.2ms)
3565
+
3566
+
3567
+ Started GET "/assets/countries.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for ::1 at 2015-04-29 21:23:59 -0600
3568
+
3569
+
3570
+ Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2015-04-29 21:23:59 -0600
3571
+
3572
+
3573
+ Started GET "/assets/application.self-fb28094035fc8f155b896e47c199355db7c84fc9d6214ed9800f1022ac2ece52.js?body=1" for ::1 at 2015-04-29 21:23:59 -0600
3574
+
3575
+
3576
+ Started GET "/assets/countries.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-04-29 21:23:59 -0600
3577
+  (21.2ms) DELETE FROM "countries";
3578
+  (0.1ms) SELECT name FROM sqlite_master WHERE type='table' AND name='sqlite_sequence';
3579
+  (17.6ms) DELETE FROM sqlite_sequence where name = 'countries';
3580
+
3581
+
3582
+ Started GET "/admin/countries" for ::1 at 2015-04-29 21:49:40 -0600
3583
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
3584
+ Processing by Admin::CountriesController#index as HTML
3585
+ Rendered admin/countries/index.html.haml within layouts/application (6.4ms)
3586
+ Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.0ms)
3587
+
3588
+ ActionView::Template::Error (undefined local variable or method `countries_search' for #<#<Class:0x00000004c9fe38>:0x00000004c9f3c0>):
3589
+ 1: = search_form_for [:admin, countries_search] do |f|
3590
+ 2: = f.label :name_cont
3591
+ 3: = f.search_field :name_cont
3592
+ 4: = f.submit
3593
+ app/views/admin/countries/index.html.haml:1:in `_app_views_admin_countries_index_html_haml__2989064257374867102_40051020'
3594
+
3595
+
3596
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.1ms)
3597
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms)
3598
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (5.6ms)
3599
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (18.1ms)
3600
+
3601
+
3602
+ Started GET "/admin/countries" for ::1 at 2015-04-29 21:50:08 -0600
3603
+ Processing by Admin::CountriesController#index as HTML
3604
+ Country Load (0.1ms) SELECT DISTINCT "countries".* FROM "countries" LIMIT 25 OFFSET 0
3605
+  (0.1ms) SELECT DISTINCT COUNT(DISTINCT "countries"."id") FROM "countries"
3606
+ Rendered admin/countries/index.html.haml within layouts/application (221.5ms)
3607
+ Completed 200 OK in 303ms (Views: 302.8ms | ActiveRecord: 0.5ms)
3608
+
3609
+
3610
+ Started GET "/admin/countries" for ::1 at 2015-04-29 21:50:09 -0600
3611
+ Processing by Admin::CountriesController#index as HTML
3612
+ Country Load (0.1ms) SELECT DISTINCT "countries".* FROM "countries" LIMIT 25 OFFSET 0
3613
+  (0.1ms) SELECT DISTINCT COUNT(DISTINCT "countries"."id") FROM "countries"
3614
+ Rendered admin/countries/index.html.haml within layouts/application (3.2ms)
3615
+ Completed 200 OK in 12ms (Views: 11.8ms | ActiveRecord: 0.2ms)
3616
+
3617
+
3618
+ Started GET "/assets/admin/countries.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for ::1 at 2015-04-29 21:50:09 -0600
3619
+
3620
+
3621
+ Started GET "/assets/countries.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for ::1 at 2015-04-29 21:50:09 -0600
3622
+
3623
+
3624
+ Started GET "/assets/countries.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-04-29 21:50:09 -0600
3625
+
3626
+
3627
+ Started GET "/assets/application.self-fb28094035fc8f155b896e47c199355db7c84fc9d6214ed9800f1022ac2ece52.js?body=1" for ::1 at 2015-04-29 21:50:09 -0600
3628
+
3629
+
3630
+ Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2015-04-29 21:50:09 -0600
3631
+
3632
+
3633
+ Started GET "/assets/admin/countries.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-04-29 21:50:09 -0600
3634
+
3635
+
3636
+ Started GET "/admin/countries/new" for ::1 at 2015-04-29 21:50:17 -0600
3637
+ Processing by Admin::CountriesController#new as HTML
3638
+ Rendered admin/countries/_form.html.haml (24.0ms)
3639
+ Rendered admin/countries/new.html.haml within layouts/application (24.8ms)
3640
+ Completed 200 OK in 33ms (Views: 32.9ms | ActiveRecord: 0.0ms)
3641
+
3642
+
3643
+ Started GET "/admin/countries/new" for ::1 at 2015-04-29 21:50:17 -0600
3644
+ Processing by Admin::CountriesController#new as HTML
3645
+ Rendered admin/countries/_form.html.haml (5.2ms)
3646
+ Rendered admin/countries/new.html.haml within layouts/application (5.6ms)
3647
+ Completed 200 OK in 13ms (Views: 13.1ms | ActiveRecord: 0.0ms)
3648
+
3649
+
3650
+ Started POST "/admin/countries" for ::1 at 2015-04-29 21:50:26 -0600
3651
+ Processing by Admin::CountriesController#create as HTML
3652
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"1U1PC6Ji6hRJ0l9+EhXk1ENYqETa0Ffh+3X4RYfUMXlm6TumJxRUYFkNd1adoNPWmy7iNshQ5OXEGW68FZFhug==", "country"=>{"code"=>"fffffff", "name"=>"sdfsdfsdf", "active"=>"1111"}, "commit"=>"SAVE"}
3653
+  (0.1ms) begin transaction
3654
+  (0.0ms) rollback transaction
3655
+ Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.1ms)
3656
+
3657
+ RangeError (1111 is out of range for ActiveRecord::Type::Integer with limit 1):
3658
+ activerecord (4.2.1) lib/active_record/type/integer.rb:45:in `ensure_in_range'
3659
+ activerecord (4.2.1) lib/active_record/type/integer.rb:23:in `type_cast_for_database'
3660
+ activerecord (4.2.1) lib/active_record/connection_adapters/abstract/quoting.rb:28:in `type_cast'
3661
+ activerecord (4.2.1) lib/active_record/connection_adapters/sqlite3_adapter.rb:290:in `block in exec_query'
3662
+ activerecord (4.2.1) lib/active_record/connection_adapters/sqlite3_adapter.rb:289:in `map'
3663
+ activerecord (4.2.1) lib/active_record/connection_adapters/sqlite3_adapter.rb:289:in `exec_query'
3664
+ activerecord (4.2.1) lib/active_record/connection_adapters/abstract/database_statements.rb:76:in `exec_insert'
3665
+ activerecord (4.2.1) lib/active_record/connection_adapters/abstract/database_statements.rb:108:in `insert'
3666
+ activerecord (4.2.1) lib/active_record/connection_adapters/abstract/query_cache.rb:14:in `insert'
3667
+ activerecord (4.2.1) lib/active_record/relation.rb:64:in `insert'
3668
+ activerecord (4.2.1) lib/active_record/persistence.rb:522:in `_create_record'
3669
+ activerecord (4.2.1) lib/active_record/counter_cache.rb:139:in `_create_record'
3670
+ activerecord (4.2.1) lib/active_record/locking/optimistic.rb:75:in `_create_record'
3671
+ activerecord (4.2.1) lib/active_record/attribute_methods/dirty.rb:131:in `_create_record'
3672
+ activerecord (4.2.1) lib/active_record/callbacks.rb:306:in `block in _create_record'
3673
+ activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call'
3674
+ activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks'
3675
+ activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_create_callbacks'
3676
+ activerecord (4.2.1) lib/active_record/callbacks.rb:306:in `_create_record'
3677
+ activerecord (4.2.1) lib/active_record/timestamp.rb:57:in `_create_record'
3678
+ activerecord (4.2.1) lib/active_record/persistence.rb:502:in `create_or_update'
3679
+ activerecord (4.2.1) lib/active_record/callbacks.rb:302:in `block in create_or_update'
3680
+ activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call'
3681
+ activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks'
3682
+ activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_save_callbacks'
3683
+ activerecord (4.2.1) lib/active_record/callbacks.rb:302:in `create_or_update'
3684
+ activerecord (4.2.1) lib/active_record/persistence.rb:120:in `save'
3685
+ activerecord (4.2.1) lib/active_record/validations.rb:37:in `save'
3686
+ activerecord (4.2.1) lib/active_record/attribute_methods/dirty.rb:21:in `save'
3687
+ activerecord (4.2.1) lib/active_record/transactions.rb:286:in `block (2 levels) in save'
3688
+ activerecord (4.2.1) lib/active_record/transactions.rb:347:in `block in with_transaction_returning_status'
3689
+ activerecord (4.2.1) lib/active_record/connection_adapters/abstract/database_statements.rb:213:in `block in transaction'
3690
+ activerecord (4.2.1) lib/active_record/connection_adapters/abstract/transaction.rb:188:in `within_new_transaction'
3691
+ activerecord (4.2.1) lib/active_record/connection_adapters/abstract/database_statements.rb:213:in `transaction'
3692
+ activerecord (4.2.1) lib/active_record/transactions.rb:220:in `transaction'
3693
+ activerecord (4.2.1) lib/active_record/transactions.rb:344:in `with_transaction_returning_status'
3694
+ activerecord (4.2.1) lib/active_record/transactions.rb:286:in `block in save'
3695
+ activerecord (4.2.1) lib/active_record/transactions.rb:301:in `rollback_active_record_state!'
3696
+ activerecord (4.2.1) lib/active_record/transactions.rb:285:in `save'
3697
+ /home/shared-data/projects/ruby/engines/resources/lib/resources/rest_actions.rb:55:in `save_resource'
3698
+ /home/shared-data/projects/ruby/engines/resources/lib/resources/rest_actions.rb:29:in `create'
3699
+ actionpack (4.2.1) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
3700
+ actionpack (4.2.1) lib/abstract_controller/base.rb:198:in `process_action'
3701
+ actionpack (4.2.1) lib/action_controller/metal/rendering.rb:10:in `process_action'
3702
+ actionpack (4.2.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
3703
+ activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call'
3704
+ activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call'
3705
+ activesupport (4.2.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
3706
+ activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call'
3707
+ activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call'
3708
+ activesupport (4.2.1) lib/active_support/callbacks.rb:92:in `_run_callbacks'
3709
+ activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_process_action_callbacks'
3710
+ activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
3711
+ actionpack (4.2.1) lib/abstract_controller/callbacks.rb:19:in `process_action'
3712
+ actionpack (4.2.1) lib/action_controller/metal/rescue.rb:29:in `process_action'
3713
+ actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
3714
+ activesupport (4.2.1) lib/active_support/notifications.rb:164:in `block in instrument'
3715
+ activesupport (4.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
3716
+ activesupport (4.2.1) lib/active_support/notifications.rb:164:in `instrument'
3717
+ actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
3718
+ actionpack (4.2.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
3719
+ activerecord (4.2.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
3720
+ actionpack (4.2.1) lib/abstract_controller/base.rb:137:in `process'
3721
+ actionview (4.2.1) lib/action_view/rendering.rb:30:in `process'
3722
+ actionpack (4.2.1) lib/action_controller/metal.rb:196:in `dispatch'
3723
+ actionpack (4.2.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
3724
+ actionpack (4.2.1) lib/action_controller/metal.rb:237:in `block in action'
3725
+ actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `call'
3726
+ actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
3727
+ actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:43:in `serve'
3728
+ actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve'
3729
+ actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each'
3730
+ actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve'
3731
+ actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call'
3732
+ rack (1.6.0) lib/rack/etag.rb:24:in `call'
3733
+ rack (1.6.0) lib/rack/conditionalget.rb:38:in `call'
3734
+ rack (1.6.0) lib/rack/head.rb:13:in `call'
3735
+ actionpack (4.2.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
3736
+ actionpack (4.2.1) lib/action_dispatch/middleware/flash.rb:260:in `call'
3737
+ rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context'
3738
+ rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call'
3739
+ actionpack (4.2.1) lib/action_dispatch/middleware/cookies.rb:560:in `call'
3740
+ activerecord (4.2.1) lib/active_record/query_cache.rb:36:in `call'
3741
+ activerecord (4.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:649:in `call'
3742
+ activerecord (4.2.1) lib/active_record/migration.rb:378:in `call'
3743
+ actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
3744
+ activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call'
3745
+ activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks'
3746
+ activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks'
3747
+ activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
3748
+ actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
3749
+ actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call'
3750
+ actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
3751
+ actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
3752
+ actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
3753
+ railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app'
3754
+ railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call'
3755
+ activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
3756
+ activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged'
3757
+ activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged'
3758
+ railties (4.2.1) lib/rails/rack/logger.rb:20:in `call'
3759
+ actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
3760
+ rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
3761
+ rack (1.6.0) lib/rack/runtime.rb:18:in `call'
3762
+ activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
3763
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
3764
+ actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call'
3765
+ rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
3766
+ railties (4.2.1) lib/rails/engine.rb:518:in `call'
3767
+ railties (4.2.1) lib/rails/application.rb:164:in `call'
3768
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
3769
+ rack (1.6.0) lib/rack/content_length.rb:15:in `call'
3770
+ rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
3771
+ /home/developer/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
3772
+ /home/developer/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
3773
+ /home/developer/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
3774
+
3775
+
3776
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.5ms)
3777
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms)
3778
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.6ms)
3779
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (13.6ms)
3780
+
3781
+
3782
+ Started GET "/admin/countries" for ::1 at 2015-04-29 21:50:33 -0600
3783
+ Processing by Admin::CountriesController#index as HTML
3784
+ Country Load (0.1ms) SELECT DISTINCT "countries".* FROM "countries" LIMIT 25 OFFSET 0
3785
+  (0.1ms) SELECT DISTINCT COUNT(DISTINCT "countries"."id") FROM "countries"
3786
+ Rendered admin/countries/index.html.haml within layouts/application (3.6ms)
3787
+ Completed 200 OK in 15ms (Views: 14.5ms | ActiveRecord: 0.2ms)
3788
+
3789
+
3790
+ Started GET "/admin/countries/new" for ::1 at 2015-04-29 21:50:34 -0600
3791
+ Processing by Admin::CountriesController#new as HTML
3792
+ Rendered admin/countries/_form.html.haml (6.5ms)
3793
+ Rendered admin/countries/new.html.haml within layouts/application (6.9ms)
3794
+ Completed 200 OK in 25ms (Views: 25.0ms | ActiveRecord: 0.0ms)
3795
+
3796
+
3797
+ Started POST "/admin/countries" for ::1 at 2015-04-29 21:50:40 -0600
3798
+ Processing by Admin::CountriesController#create as HTML
3799
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"vT+E+Q9dTopuzNKFm0HsnoJiY9E6eztTYLHQ+coKsDUOm/BUiivw/n4T+q0U9NucWhQpoyj7iFdf3UYAWE/g9g==", "country"=>{"code"=>"sdfsdfsdf", "name"=>"sdfsdfsdf", "active"=>"1"}, "commit"=>"SAVE"}
3800
+  (0.0ms) begin transaction
3801
+ SQL (0.2ms) INSERT INTO "countries" ("name", "code", "active", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "sdfsdfsdf"], ["code", "sdfsdfsdf"], ["active", 1], ["created_at", "2015-04-30 03:50:40.118434"], ["updated_at", "2015-04-30 03:50:40.118434"]]
3802
+  (32.0ms) commit transaction
3803
+ Redirected to http://localhost:3000/admin/countries
3804
+ Completed 302 Found in 36ms (ActiveRecord: 32.2ms)
3805
+
3806
+
3807
+ Started GET "/admin/countries" for ::1 at 2015-04-29 21:50:40 -0600
3808
+ Processing by Admin::CountriesController#index as HTML
3809
+ Country Load (0.1ms) SELECT DISTINCT "countries".* FROM "countries" LIMIT 25 OFFSET 0
3810
+  (0.1ms) SELECT DISTINCT COUNT(DISTINCT "countries"."id") FROM "countries"
3811
+ Rendered admin/countries/index.html.haml within layouts/application (4.8ms)
3812
+ Completed 200 OK in 17ms (Views: 16.5ms | ActiveRecord: 0.2ms)
3813
+
3814
+
3815
+ Started GET "/countries" for ::1 at 2015-04-29 21:52:17 -0600
3816
+ Processing by CountriesController#index as HTML
3817
+ Rendered countries/index.html.haml within layouts/application (8.0ms)
3818
+ Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.0ms)
3819
+
3820
+ ActionView::Template::Error (undefined local variable or method `countries_search' for #<#<Class:0x007f818a0d0468>:0x007f818a0b6ab8>):
3821
+ 1: = search_form_for countries_search do |f|
3822
+ 2: = f.label :name_cont
3823
+ 3: = f.search_field :name_cont
3824
+ 4: = f.submit
3825
+ app/views/countries/index.html.haml:1:in `_app_views_countries_index_html_haml__4125760764725592288_70097171693340'
3826
+
3827
+
3828
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.1ms)
3829
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms)
3830
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
3831
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (13.2ms)
3832
+
3833
+
3834
+ Started GET "/countries" for ::1 at 2015-04-29 21:52:56 -0600
3835
+ Processing by CountriesController#index as HTML
3836
+ Country Load (0.1ms) SELECT "countries".* FROM "countries"
3837
+ Rendered countries/index.html.haml within layouts/application (7.7ms)
3838
+ Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.4ms)
3839
+
3840
+ ActionView::Template::Error (undefined method `total_pages' for #<Country::ActiveRecord_Relation:0x007f8188f6bd30>):
3841
+ 18: = link_to "edit", edit_country_path(resource)
3842
+ 19: = link_to "delete", country_path(resource), method: :delete
3843
+ 20:
3844
+ 21: = paginate resources
3845
+ app/views/countries/index.html.haml:21:in `_app_views_countries_index_html_haml__4125760764725592288_70097163353360'
3846
+
3847
+
3848
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.3ms)
3849
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms)
3850
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
3851
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (13.9ms)
3852
+
3853
+
3854
+ Started GET "/countries" for ::1 at 2015-04-29 21:52:57 -0600
3855
+ Processing by CountriesController#index as HTML
3856
+ Country Load (0.1ms) SELECT "countries".* FROM "countries"
3857
+ Rendered countries/index.html.haml within layouts/application (2.5ms)
3858
+ Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.1ms)
3859
+
3860
+ ActionView::Template::Error (undefined method `total_pages' for #<Country::ActiveRecord_Relation:0x007f818a0fd288>):
3861
+ 18: = link_to "edit", edit_country_path(resource)
3862
+ 19: = link_to "delete", country_path(resource), method: :delete
3863
+ 20:
3864
+ 21: = paginate resources
3865
+ app/views/countries/index.html.haml:21:in `_app_views_countries_index_html_haml__4125760764725592288_70097163353360'
3866
+
3867
+
3868
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.3ms)
3869
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms)
3870
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms)
3871
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (13.9ms)
3872
+
3873
+
3874
+ Started GET "/countries" for ::1 at 2015-04-29 21:53:07 -0600
3875
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
3876
+ Processing by CountriesController#index as HTML
3877
+ Country Load (0.1ms) SELECT "countries".* FROM "countries" LIMIT 25 OFFSET 0
3878
+  (0.0ms) SELECT COUNT(*) FROM "countries"
3879
+ Rendered countries/index.html.haml within layouts/application (196.8ms)
3880
+ Completed 200 OK in 280ms (Views: 279.9ms | ActiveRecord: 0.4ms)
3881
+
3882
+
3883
+ Started GET "/countries" for ::1 at 2015-04-29 21:53:08 -0600
3884
+ Processing by CountriesController#index as HTML
3885
+ Country Load (0.1ms) SELECT "countries".* FROM "countries" LIMIT 25 OFFSET 0
3886
+  (0.1ms) SELECT COUNT(*) FROM "countries"
3887
+ Rendered countries/index.html.haml within layouts/application (4.2ms)
3888
+ Completed 200 OK in 15ms (Views: 14.3ms | ActiveRecord: 0.2ms)
3889
+
3890
+
3891
+ Started GET "/assets/admin/countries.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for ::1 at 2015-04-29 21:53:08 -0600
3892
+
3893
+
3894
+ Started GET "/assets/countries.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for ::1 at 2015-04-29 21:53:08 -0600
3895
+
3896
+
3897
+ Started GET "/assets/countries.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-04-29 21:53:08 -0600
3898
+
3899
+
3900
+ Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2015-04-29 21:53:08 -0600
3901
+
3902
+
3903
+ Started GET "/assets/application.self-fb28094035fc8f155b896e47c199355db7c84fc9d6214ed9800f1022ac2ece52.js?body=1" for ::1 at 2015-04-29 21:53:08 -0600
3904
+
3905
+
3906
+ Started GET "/assets/admin/countries.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-04-29 21:53:08 -0600
3907
+
3908
+
3909
+ Started GET "/countries/new" for ::1 at 2015-04-29 21:53:13 -0600
3910
+ Processing by CountriesController#new as HTML
3911
+ Rendered countries/_form.html.haml (6.6ms)
3912
+ Rendered countries/new.html.haml within layouts/application (7.5ms)
3913
+ Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.0ms)
3914
+
3915
+ ActionView::Template::Error (undefined method `country_saved?' for #<#<Class:0x00000003da6828>:0x00000003ce8d28>):
3916
+ 1: = country_saved? ? "true" : "false"
3917
+ 2: = simple_form_for country do |f|
3918
+ 3: = f.input :code
3919
+ 4: = f.input :name
3920
+ app/views/countries/_form.html.haml:1:in `_app_views_countries__form_html_haml___4097845319116800218_31647800'
3921
+ app/views/countries/new.html.haml:1:in `_app_views_countries_new_html_haml___2951493240904393731_31920240'
3922
+
3923
+
3924
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.4ms)
3925
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms)
3926
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms)
3927
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (15.6ms)
3928
+
3929
+
3930
+ Started GET "/countries/new" for ::1 at 2015-04-29 21:53:13 -0600
3931
+ Processing by CountriesController#new as HTML
3932
+ Rendered countries/_form.html.haml (4.6ms)
3933
+ Rendered countries/new.html.haml within layouts/application (5.0ms)
3934
+ Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.0ms)
3935
+
3936
+ ActionView::Template::Error (undefined method `country_saved?' for #<#<Class:0x00000003da6828>:0x000000049f67e0>):
3937
+ 1: = country_saved? ? "true" : "false"
3938
+ 2: = simple_form_for country do |f|
3939
+ 3: = f.input :code
3940
+ 4: = f.input :name
3941
+ app/views/countries/_form.html.haml:1:in `_app_views_countries__form_html_haml___4097845319116800218_31647800'
3942
+ app/views/countries/new.html.haml:1:in `_app_views_countries_new_html_haml___2951493240904393731_31920240'
3943
+
3944
+
3945
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.7ms)
3946
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms)
3947
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
3948
+ Rendered /home/developer/.rvm/gems/ruby-2.2.2@rails4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (14.1ms)
3949
+
3950
+
3951
+ Started GET "/countries/new" for ::1 at 2015-04-29 21:53:54 -0600
3952
+ Processing by CountriesController#new as HTML
3953
+ Rendered countries/_form.html.haml (17.8ms)
3954
+ Rendered countries/new.html.haml within layouts/application (18.2ms)
3955
+ Completed 200 OK in 26ms (Views: 26.4ms | ActiveRecord: 0.0ms)
3956
+
3957
+
3958
+ Started GET "/assets/admin/countries.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for ::1 at 2015-04-29 21:53:54 -0600
3959
+
3960
+
3961
+ Started GET "/assets/application.self-fb28094035fc8f155b896e47c199355db7c84fc9d6214ed9800f1022ac2ece52.js?body=1" for ::1 at 2015-04-29 21:53:54 -0600
3962
+
3963
+
3964
+ Started GET "/assets/countries.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for ::1 at 2015-04-29 21:53:54 -0600
3965
+
3966
+
3967
+ Started GET "/assets/countries.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-04-29 21:53:54 -0600
3968
+
3969
+
3970
+ Started GET "/assets/admin/countries.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-04-29 21:53:54 -0600
3971
+
3972
+
3973
+ Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2015-04-29 21:53:54 -0600
3974
+
3975
+
3976
+ Started POST "/countries" for ::1 at 2015-04-29 21:54:03 -0600
3977
+ Processing by CountriesController#create as HTML
3978
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"SroapmkvkWcj9hVBxM4MMrEiT6P+630mDlOPpZrCFkr5Hm4L7FkvEzMpPWlLezswaVQF0exrziIxPxlcCIdGiQ==", "resource"=>{"code"=>"", "name"=>"Flujo de trabajo GIT", "active"=>""}, "commit"=>"SAVE"}
3979
+  (0.1ms) begin transaction
3980
+ SQL (0.2ms) INSERT INTO "countries" ("name", "code", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["name", "Flujo de trabajo GIT"], ["code", ""], ["created_at", "2015-04-30 03:54:03.005273"], ["updated_at", "2015-04-30 03:54:03.005273"]]
3981
+  (30.7ms) commit transaction
3982
+ Redirected to http://localhost:3000/countries
3983
+ Completed 302 Found in 34ms (ActiveRecord: 30.9ms)
3984
+
3985
+
3986
+ Started GET "/countries" for ::1 at 2015-04-29 21:54:03 -0600
3987
+ Processing by CountriesController#index as HTML
3988
+ Country Load (0.1ms) SELECT "countries".* FROM "countries" LIMIT 25 OFFSET 0
3989
+  (0.0ms) SELECT COUNT(*) FROM "countries"
3990
+ Rendered countries/index.html.haml within layouts/application (3.5ms)
3991
+ Completed 200 OK in 11ms (Views: 11.2ms | ActiveRecord: 0.2ms)