callback_request_bootstrap 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (168) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.rdoc +100 -0
  4. data/Rakefile +37 -0
  5. data/app/assets/javascripts/callback_request_bootstrap/application.js +3 -0
  6. data/app/assets/stylesheets/callback_request_bootstrap/application.css.scss +3 -0
  7. data/app/assets/stylesheets/callback_request_bootstrap/requests.scss +4 -0
  8. data/app/controllers/callback_request_bootstrap/application_controller.rb +4 -0
  9. data/app/controllers/callback_request_bootstrap/requests_controller.rb +96 -0
  10. data/app/helpers/callback_request_bootstrap/application_helper.rb +4 -0
  11. data/app/helpers/callback_request_bootstrap/requests_helper.rb +19 -0
  12. data/app/models/callback_request_bootstrap/request.rb +5 -0
  13. data/app/views/callback_request_bootstrap/requests/_create_result.html.erb +8 -0
  14. data/app/views/callback_request_bootstrap/requests/_form.basic.html.erb +43 -0
  15. data/app/views/callback_request_bootstrap/requests/_form.html.erb +0 -0
  16. data/app/views/callback_request_bootstrap/requests/_form.simple_form.html.erb +49 -0
  17. data/app/views/callback_request_bootstrap/requests/_js_modal.html.erb +26 -0
  18. data/app/views/callback_request_bootstrap/requests/_modal.html.erb +20 -0
  19. data/app/views/callback_request_bootstrap/requests/create.js.erb +7 -0
  20. data/app/views/callback_request_bootstrap/requests/edit.html.erb +6 -0
  21. data/app/views/callback_request_bootstrap/requests/new.html.erb +1 -0
  22. data/app/views/layouts/callback_request_bootstrap/application.html.erb +14 -0
  23. data/config/initializers/simple_form.rb +166 -0
  24. data/config/initializers/simple_form_bootstrap.rb +136 -0
  25. data/config/locales/callback_request.en.yml +16 -0
  26. data/config/locales/callback_request.ru.yml +16 -0
  27. data/config/locales/simple_form.en.yml +31 -0
  28. data/config/routes.rb +5 -0
  29. data/lib/callback_request_bootstrap/engine.rb +12 -0
  30. data/lib/callback_request_bootstrap/version.rb +3 -0
  31. data/lib/callback_request_bootstrap.rb +4 -0
  32. data/lib/generators/callback_request_bootstrap/install_generator.rb +25 -0
  33. data/lib/generators/callback_request_bootstrap/templates/migrations/create_requests.rb +16 -0
  34. data/lib/tasks/callback_request_bootstrap_tasks.rake +4 -0
  35. data/test/callback_request_bootstrap_test.rb +7 -0
  36. data/test/dummy/README.rdoc +28 -0
  37. data/test/dummy/Rakefile +6 -0
  38. data/test/dummy/app/assets/javascripts/application.js +3 -0
  39. data/test/dummy/app/assets/javascripts/jquery-1.11.2.min.js +4 -0
  40. data/test/dummy/app/assets/javascripts/jquery-2.1.3.min.js +4 -0
  41. data/test/dummy/app/assets/stylesheets/application.css.scss +1 -0
  42. data/test/dummy/app/controllers/application_controller.rb +8 -0
  43. data/test/dummy/app/controllers/debug_controller.rb +6 -0
  44. data/test/dummy/app/helpers/application_helper.rb +2 -0
  45. data/test/dummy/app/views/debug/index.html.erb +16 -0
  46. data/test/dummy/app/views/layouts/application.html.erb +15 -0
  47. data/test/dummy/bin/bundle +3 -0
  48. data/test/dummy/bin/rails +4 -0
  49. data/test/dummy/bin/rake +4 -0
  50. data/test/dummy/bin/setup +29 -0
  51. data/test/dummy/config/application.rb +26 -0
  52. data/test/dummy/config/boot.rb +5 -0
  53. data/test/dummy/config/database.yml +54 -0
  54. data/test/dummy/config/environment.rb +5 -0
  55. data/test/dummy/config/environments/development.rb +41 -0
  56. data/test/dummy/config/environments/production.rb +79 -0
  57. data/test/dummy/config/environments/test.rb +42 -0
  58. data/test/dummy/config/initializers/assets.rb +11 -0
  59. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  60. data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
  61. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  62. data/test/dummy/config/initializers/inflections.rb +16 -0
  63. data/test/dummy/config/initializers/mime_types.rb +4 -0
  64. data/test/dummy/config/initializers/session_store.rb +3 -0
  65. data/test/dummy/config/initializers/simple_form.rb +166 -0
  66. data/test/dummy/config/initializers/simple_form_bootstrap.rb +136 -0
  67. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  68. data/test/dummy/config/locales/en.yml +23 -0
  69. data/test/dummy/config/locales/simple_form.en.yml +31 -0
  70. data/test/dummy/config/routes.rb +7 -0
  71. data/test/dummy/config/secrets.yml +22 -0
  72. data/test/dummy/config.ru +4 -0
  73. data/test/dummy/db/migrate/20150403222226_create_requests.rb +16 -0
  74. data/test/dummy/db/schema.rb +27 -0
  75. data/test/dummy/log/development.log +1570 -0
  76. data/test/dummy/public/404.html +67 -0
  77. data/test/dummy/public/422.html +67 -0
  78. data/test/dummy/public/500.html +66 -0
  79. data/test/dummy/public/favicon.ico +0 -0
  80. data/test/dummy/tmp/cache/assets/development/sass/6aced6a4ee939748ecf9b1329793d18e21f3e7f3/application.css.scssc +0 -0
  81. data/test/dummy/tmp/cache/assets/development/sass/718ee869a0f2dfa88cd3e1aac130baf9697d6696/_alerts.scssc +0 -0
  82. data/test/dummy/tmp/cache/assets/development/sass/718ee869a0f2dfa88cd3e1aac130baf9697d6696/_badges.scssc +0 -0
  83. data/test/dummy/tmp/cache/assets/development/sass/718ee869a0f2dfa88cd3e1aac130baf9697d6696/_breadcrumbs.scssc +0 -0
  84. data/test/dummy/tmp/cache/assets/development/sass/718ee869a0f2dfa88cd3e1aac130baf9697d6696/_button-groups.scssc +0 -0
  85. data/test/dummy/tmp/cache/assets/development/sass/718ee869a0f2dfa88cd3e1aac130baf9697d6696/_buttons.scssc +0 -0
  86. data/test/dummy/tmp/cache/assets/development/sass/718ee869a0f2dfa88cd3e1aac130baf9697d6696/_carousel.scssc +0 -0
  87. data/test/dummy/tmp/cache/assets/development/sass/718ee869a0f2dfa88cd3e1aac130baf9697d6696/_close.scssc +0 -0
  88. data/test/dummy/tmp/cache/assets/development/sass/718ee869a0f2dfa88cd3e1aac130baf9697d6696/_code.scssc +0 -0
  89. data/test/dummy/tmp/cache/assets/development/sass/718ee869a0f2dfa88cd3e1aac130baf9697d6696/_component-animations.scssc +0 -0
  90. data/test/dummy/tmp/cache/assets/development/sass/718ee869a0f2dfa88cd3e1aac130baf9697d6696/_dropdowns.scssc +0 -0
  91. data/test/dummy/tmp/cache/assets/development/sass/718ee869a0f2dfa88cd3e1aac130baf9697d6696/_forms.scssc +0 -0
  92. data/test/dummy/tmp/cache/assets/development/sass/718ee869a0f2dfa88cd3e1aac130baf9697d6696/_glyphicons.scssc +0 -0
  93. data/test/dummy/tmp/cache/assets/development/sass/718ee869a0f2dfa88cd3e1aac130baf9697d6696/_grid.scssc +0 -0
  94. data/test/dummy/tmp/cache/assets/development/sass/718ee869a0f2dfa88cd3e1aac130baf9697d6696/_input-groups.scssc +0 -0
  95. data/test/dummy/tmp/cache/assets/development/sass/718ee869a0f2dfa88cd3e1aac130baf9697d6696/_jumbotron.scssc +0 -0
  96. data/test/dummy/tmp/cache/assets/development/sass/718ee869a0f2dfa88cd3e1aac130baf9697d6696/_labels.scssc +0 -0
  97. data/test/dummy/tmp/cache/assets/development/sass/718ee869a0f2dfa88cd3e1aac130baf9697d6696/_list-group.scssc +0 -0
  98. data/test/dummy/tmp/cache/assets/development/sass/718ee869a0f2dfa88cd3e1aac130baf9697d6696/_media.scssc +0 -0
  99. data/test/dummy/tmp/cache/assets/development/sass/718ee869a0f2dfa88cd3e1aac130baf9697d6696/_mixins.scssc +0 -0
  100. data/test/dummy/tmp/cache/assets/development/sass/718ee869a0f2dfa88cd3e1aac130baf9697d6696/_modals.scssc +0 -0
  101. data/test/dummy/tmp/cache/assets/development/sass/718ee869a0f2dfa88cd3e1aac130baf9697d6696/_navbar.scssc +0 -0
  102. data/test/dummy/tmp/cache/assets/development/sass/718ee869a0f2dfa88cd3e1aac130baf9697d6696/_navs.scssc +0 -0
  103. data/test/dummy/tmp/cache/assets/development/sass/718ee869a0f2dfa88cd3e1aac130baf9697d6696/_normalize.scssc +0 -0
  104. data/test/dummy/tmp/cache/assets/development/sass/718ee869a0f2dfa88cd3e1aac130baf9697d6696/_pager.scssc +0 -0
  105. data/test/dummy/tmp/cache/assets/development/sass/718ee869a0f2dfa88cd3e1aac130baf9697d6696/_pagination.scssc +0 -0
  106. data/test/dummy/tmp/cache/assets/development/sass/718ee869a0f2dfa88cd3e1aac130baf9697d6696/_panels.scssc +0 -0
  107. data/test/dummy/tmp/cache/assets/development/sass/718ee869a0f2dfa88cd3e1aac130baf9697d6696/_popovers.scssc +0 -0
  108. data/test/dummy/tmp/cache/assets/development/sass/718ee869a0f2dfa88cd3e1aac130baf9697d6696/_print.scssc +0 -0
  109. data/test/dummy/tmp/cache/assets/development/sass/718ee869a0f2dfa88cd3e1aac130baf9697d6696/_progress-bars.scssc +0 -0
  110. data/test/dummy/tmp/cache/assets/development/sass/718ee869a0f2dfa88cd3e1aac130baf9697d6696/_responsive-embed.scssc +0 -0
  111. data/test/dummy/tmp/cache/assets/development/sass/718ee869a0f2dfa88cd3e1aac130baf9697d6696/_responsive-utilities.scssc +0 -0
  112. data/test/dummy/tmp/cache/assets/development/sass/718ee869a0f2dfa88cd3e1aac130baf9697d6696/_scaffolding.scssc +0 -0
  113. data/test/dummy/tmp/cache/assets/development/sass/718ee869a0f2dfa88cd3e1aac130baf9697d6696/_tables.scssc +0 -0
  114. data/test/dummy/tmp/cache/assets/development/sass/718ee869a0f2dfa88cd3e1aac130baf9697d6696/_thumbnails.scssc +0 -0
  115. data/test/dummy/tmp/cache/assets/development/sass/718ee869a0f2dfa88cd3e1aac130baf9697d6696/_tooltip.scssc +0 -0
  116. data/test/dummy/tmp/cache/assets/development/sass/718ee869a0f2dfa88cd3e1aac130baf9697d6696/_type.scssc +0 -0
  117. data/test/dummy/tmp/cache/assets/development/sass/718ee869a0f2dfa88cd3e1aac130baf9697d6696/_utilities.scssc +0 -0
  118. data/test/dummy/tmp/cache/assets/development/sass/718ee869a0f2dfa88cd3e1aac130baf9697d6696/_variables.scssc +0 -0
  119. data/test/dummy/tmp/cache/assets/development/sass/718ee869a0f2dfa88cd3e1aac130baf9697d6696/_wells.scssc +0 -0
  120. data/test/dummy/tmp/cache/assets/development/sass/7d96349ccfefec93f54a58b723a0db98810ff74d/_alerts.scssc +0 -0
  121. data/test/dummy/tmp/cache/assets/development/sass/7d96349ccfefec93f54a58b723a0db98810ff74d/_background-variant.scssc +0 -0
  122. data/test/dummy/tmp/cache/assets/development/sass/7d96349ccfefec93f54a58b723a0db98810ff74d/_border-radius.scssc +0 -0
  123. data/test/dummy/tmp/cache/assets/development/sass/7d96349ccfefec93f54a58b723a0db98810ff74d/_buttons.scssc +0 -0
  124. data/test/dummy/tmp/cache/assets/development/sass/7d96349ccfefec93f54a58b723a0db98810ff74d/_center-block.scssc +0 -0
  125. data/test/dummy/tmp/cache/assets/development/sass/7d96349ccfefec93f54a58b723a0db98810ff74d/_clearfix.scssc +0 -0
  126. data/test/dummy/tmp/cache/assets/development/sass/7d96349ccfefec93f54a58b723a0db98810ff74d/_forms.scssc +0 -0
  127. data/test/dummy/tmp/cache/assets/development/sass/7d96349ccfefec93f54a58b723a0db98810ff74d/_gradients.scssc +0 -0
  128. data/test/dummy/tmp/cache/assets/development/sass/7d96349ccfefec93f54a58b723a0db98810ff74d/_grid-framework.scssc +0 -0
  129. data/test/dummy/tmp/cache/assets/development/sass/7d96349ccfefec93f54a58b723a0db98810ff74d/_grid.scssc +0 -0
  130. data/test/dummy/tmp/cache/assets/development/sass/7d96349ccfefec93f54a58b723a0db98810ff74d/_hide-text.scssc +0 -0
  131. data/test/dummy/tmp/cache/assets/development/sass/7d96349ccfefec93f54a58b723a0db98810ff74d/_image.scssc +0 -0
  132. data/test/dummy/tmp/cache/assets/development/sass/7d96349ccfefec93f54a58b723a0db98810ff74d/_labels.scssc +0 -0
  133. data/test/dummy/tmp/cache/assets/development/sass/7d96349ccfefec93f54a58b723a0db98810ff74d/_list-group.scssc +0 -0
  134. data/test/dummy/tmp/cache/assets/development/sass/7d96349ccfefec93f54a58b723a0db98810ff74d/_nav-divider.scssc +0 -0
  135. data/test/dummy/tmp/cache/assets/development/sass/7d96349ccfefec93f54a58b723a0db98810ff74d/_nav-vertical-align.scssc +0 -0
  136. data/test/dummy/tmp/cache/assets/development/sass/7d96349ccfefec93f54a58b723a0db98810ff74d/_opacity.scssc +0 -0
  137. data/test/dummy/tmp/cache/assets/development/sass/7d96349ccfefec93f54a58b723a0db98810ff74d/_pagination.scssc +0 -0
  138. data/test/dummy/tmp/cache/assets/development/sass/7d96349ccfefec93f54a58b723a0db98810ff74d/_panels.scssc +0 -0
  139. data/test/dummy/tmp/cache/assets/development/sass/7d96349ccfefec93f54a58b723a0db98810ff74d/_progress-bar.scssc +0 -0
  140. data/test/dummy/tmp/cache/assets/development/sass/7d96349ccfefec93f54a58b723a0db98810ff74d/_reset-filter.scssc +0 -0
  141. data/test/dummy/tmp/cache/assets/development/sass/7d96349ccfefec93f54a58b723a0db98810ff74d/_resize.scssc +0 -0
  142. data/test/dummy/tmp/cache/assets/development/sass/7d96349ccfefec93f54a58b723a0db98810ff74d/_responsive-visibility.scssc +0 -0
  143. data/test/dummy/tmp/cache/assets/development/sass/7d96349ccfefec93f54a58b723a0db98810ff74d/_size.scssc +0 -0
  144. data/test/dummy/tmp/cache/assets/development/sass/7d96349ccfefec93f54a58b723a0db98810ff74d/_tab-focus.scssc +0 -0
  145. data/test/dummy/tmp/cache/assets/development/sass/7d96349ccfefec93f54a58b723a0db98810ff74d/_table-row.scssc +0 -0
  146. data/test/dummy/tmp/cache/assets/development/sass/7d96349ccfefec93f54a58b723a0db98810ff74d/_text-emphasis.scssc +0 -0
  147. data/test/dummy/tmp/cache/assets/development/sass/7d96349ccfefec93f54a58b723a0db98810ff74d/_text-overflow.scssc +0 -0
  148. data/test/dummy/tmp/cache/assets/development/sass/7d96349ccfefec93f54a58b723a0db98810ff74d/_vendor-prefixes.scssc +0 -0
  149. data/test/dummy/tmp/cache/assets/development/sass/824891e7a161e94d30c60631d5ad49ffcc066f58/_bootstrap.scssc +0 -0
  150. data/test/dummy/tmp/cache/assets/development/sprockets/0ae8a82e6f3efa698815c72449c15720 +0 -0
  151. data/test/dummy/tmp/cache/assets/development/sprockets/2e95403dcbb917ca6437eeab5a90767d +0 -0
  152. data/test/dummy/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
  153. data/test/dummy/tmp/cache/assets/development/sprockets/3bcbaeef523408af8f5632a3f0d822ea +0 -0
  154. data/test/dummy/tmp/cache/assets/development/sprockets/6ba936e2555107029a6818a003401730 +0 -0
  155. data/test/dummy/tmp/cache/assets/development/sprockets/8ab512c9b33ac90e699b73469d71f061 +0 -0
  156. data/test/dummy/tmp/cache/assets/development/sprockets/9224343996967db929488ae8237b8253 +0 -0
  157. data/test/dummy/tmp/cache/assets/development/sprockets/b00d18a2eb4a905fd47dd3e8fc26134a +0 -0
  158. data/test/dummy/tmp/cache/assets/development/sprockets/b4e755bffedb46ef020e7196a0cc36dd +0 -0
  159. data/test/dummy/tmp/cache/assets/development/sprockets/bcca522c6302f184f12fe0e8a7d7e71a +0 -0
  160. data/test/dummy/tmp/cache/assets/development/sprockets/c13fc73ceafa45876a901b3e775b83ae +0 -0
  161. data/test/dummy/tmp/cache/assets/development/sprockets/c7d3f57d1eaa1109e44c8e3944e5c59b +0 -0
  162. data/test/dummy/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
  163. data/test/dummy/tmp/cache/assets/development/sprockets/e58ed93e38d0c962a358bd32577c8cfe +0 -0
  164. data/test/dummy/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
  165. data/test/dummy/tmp/pids/server.pid +1 -0
  166. data/test/integration/navigation_test.rb +10 -0
  167. data/test/test_helper.rb +20 -0
  168. metadata +386 -0
@@ -0,0 +1,31 @@
1
+ en:
2
+ simple_form:
3
+ "yes": 'Yes'
4
+ "no": 'No'
5
+ required:
6
+ text: 'required'
7
+ mark: '*'
8
+ # You can uncomment the line below if you need to overwrite the whole required html.
9
+ # When using html, text and mark won't be used.
10
+ # html: '<abbr title="required">*</abbr>'
11
+ error_notification:
12
+ default_message: "Please review the problems below:"
13
+ # Examples
14
+ # labels:
15
+ # defaults:
16
+ # password: 'Password'
17
+ # user:
18
+ # new:
19
+ # email: 'E-mail to sign in.'
20
+ # edit:
21
+ # email: 'E-mail.'
22
+ # hints:
23
+ # defaults:
24
+ # username: 'User name to sign in.'
25
+ # password: 'No special characters, please.'
26
+ # include_blanks:
27
+ # defaults:
28
+ # age: 'Rather not say'
29
+ # prompts:
30
+ # defaults:
31
+ # age: 'Select your age'
@@ -0,0 +1,7 @@
1
+ Rails.application.routes.draw do
2
+
3
+ mount CallbackRequestBootstrap::Engine => "/callback"
4
+
5
+ get 'debug/index'
6
+
7
+ end
@@ -0,0 +1,22 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key is used for verifying the integrity of signed cookies.
4
+ # If you change this key, all old signed cookies will become invalid!
5
+
6
+ # Make sure the secret is at least 30 characters and all random,
7
+ # no regular words or you'll be exposed to dictionary attacks.
8
+ # You can use `rake secret` to generate a secure secret key.
9
+
10
+ # Make sure the secrets in this file are kept private
11
+ # if you're sharing your code publicly.
12
+
13
+ development:
14
+ secret_key_base: a85e65ce6150e8abd49143b3a39b44d80fc414a1ed3289ea92ed4f0c86300709a0ea2512a5bad6eb91ff3f831b4ad604933396d5cc9111d3048168d830e9be19
15
+
16
+ test:
17
+ secret_key_base: 7eee842a84c4381f31200c4d5c32040de266d161759a2d671f75c7e8e435c6ef97efede37ee0dfd95f45d4d95c02904400afa9227525697308e10f7994ebec53
18
+
19
+ # Do not keep production secrets in the repository,
20
+ # instead read values from the environment.
21
+ production:
22
+ secret_key_base: <%= ENV["SECRET_KEY_BASE"] %>
@@ -0,0 +1,4 @@
1
+ # This file is used by Rack-based servers to start the application.
2
+
3
+ require ::File.expand_path('../config/environment', __FILE__)
4
+ run Rails.application
@@ -0,0 +1,16 @@
1
+ class CreateRequests < ActiveRecord::Migration
2
+ def self.up
3
+ create_table :requests do |t|
4
+ t.string :name
5
+ t.string :phone
6
+ t.string :email
7
+ t.text :notes
8
+ t.timestamps
9
+ end
10
+ add_index :requests, [:phone]
11
+ end
12
+
13
+ def self.down
14
+ drop_table :requests
15
+ end
16
+ end
@@ -0,0 +1,27 @@
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: 20150403222226) do
15
+
16
+ create_table "requests", force: :cascade do |t|
17
+ t.string "name", limit: 255
18
+ t.string "phone", limit: 255
19
+ t.string "email", limit: 255
20
+ t.text "notes", limit: 65535
21
+ t.datetime "created_at"
22
+ t.datetime "updated_at"
23
+ end
24
+
25
+ add_index "requests", ["phone"], name: "index_requests_on_phone", using: :btree
26
+
27
+ end
@@ -0,0 +1,1570 @@
1
+
2
+
3
+ Started GET "/debug/index?class=btn" for 127.0.0.1 at 2015-04-03 20:36:39 +0300
4
+
5
+ ActionController::RoutingError (Couldn't find CallbackRequestBootstrap::RequestsHelper, expected it to be defined in helpers/callback_request_bootstrap/requests_helper.rb):
6
+ app/controllers/application_controller.rb:7:in `<class:ApplicationController>'
7
+ app/controllers/application_controller.rb:1:in `<top (required)>'
8
+ app/controllers/debug_controller.rb:1:in `<top (required)>'
9
+
10
+
11
+ Rendered D:/Ruby200p451x32/lib/ruby/gems/2.0.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (12.0ms)
12
+ Rendered D:/Ruby200p451x32/lib/ruby/gems/2.0.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.0ms)
13
+ Rendered D:/Ruby200p451x32/lib/ruby/gems/2.0.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.0ms)
14
+ Rendered D:/Ruby200p451x32/lib/ruby/gems/2.0.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (90.0ms)
15
+ Rendered D:/Ruby200p451x32/lib/ruby/gems/2.0.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (69.0ms)
16
+ Rendered D:/Ruby200p451x32/lib/ruby/gems/2.0.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (367.0ms)
17
+
18
+
19
+ Started GET "/debug/index?class=btn" for 127.0.0.1 at 2015-04-03 20:36:59 +0300
20
+ Processing by DebugController#index as HTML
21
+ Parameters: {"class"=>"btn"}
22
+ Rendered debug/index.html.erb within layouts/application (62.0ms)
23
+ Completed 500 Internal Server Error in 71ms (ActiveRecord: 0.0ms)
24
+
25
+ ActionView::Template::Error (undefined local variable or method `callback_form' for #<#<Class:0x54d08a8>:0x54dbb28>):
26
+ 6:
27
+ 7: <br>
28
+ 8:
29
+ 9: <%=link_to "Show form", callback_form.new_request_path,:class=>'btn' %>
30
+ 10:
31
+ 11: <br>
32
+ 12:
33
+ app/views/debug/index.html.erb:9:in `_app_views_debug_index_html_erb___118475272_44485008'
34
+
35
+
36
+ Rendered D:/Ruby200p451x32/lib/ruby/gems/2.0.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.0ms)
37
+ Rendered D:/Ruby200p451x32/lib/ruby/gems/2.0.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (14.0ms)
38
+ Rendered D:/Ruby200p451x32/lib/ruby/gems/2.0.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (4.0ms)
39
+ Rendered D:/Ruby200p451x32/lib/ruby/gems/2.0.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (74.0ms)
40
+
41
+
42
+ Started GET "/debug/index?class=btn" for 127.0.0.1 at 2015-04-03 20:38:58 +0300
43
+ Processing by DebugController#index as HTML
44
+ Parameters: {"class"=>"btn"}
45
+ Rendered debug/index.html.erb within layouts/application (48.0ms)
46
+ Completed 500 Internal Server Error in 58ms (ActiveRecord: 0.0ms)
47
+
48
+ ActionView::Template::Error (Missing partial callback_form/requests/_js_modal with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :coffee]}. Searched in:
49
+ * "W:/myrails/mygems/callback_request_bootstrap/test/dummy/app/views"
50
+ * "W:/myrails/mygems/callback_request_bootstrap/app/views"
51
+ ):
52
+ 11: <br>
53
+ 12:
54
+ 13:
55
+ 14: <%= render 'callback_form/requests/js_modal'%>
56
+ app/views/debug/index.html.erb:14:in `_app_views_debug_index_html_erb___118475272_37174164'
57
+
58
+
59
+ Rendered D:/Ruby200p451x32/lib/ruby/gems/2.0.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (2.0ms)
60
+ Rendered D:/Ruby200p451x32/lib/ruby/gems/2.0.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (22.0ms)
61
+ Rendered D:/Ruby200p451x32/lib/ruby/gems/2.0.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.0ms)
62
+ Rendered D:/Ruby200p451x32/lib/ruby/gems/2.0.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (74.0ms)
63
+
64
+
65
+ Started GET "/debug/index?class=btn" for 127.0.0.1 at 2015-04-03 20:39:09 +0300
66
+ Processing by DebugController#index as HTML
67
+ Parameters: {"class"=>"btn"}
68
+ Rendered W:/myrails/mygems/callback_request_bootstrap/app/views/callback_request_bootstrap/requests/_js_modal.html.erb (9.0ms)
69
+ Rendered debug/index.html.erb within layouts/application (16.0ms)
70
+ Completed 500 Internal Server Error in 24ms (ActiveRecord: 0.0ms)
71
+
72
+ ActionView::Template::Error (Missing partial callback_form/requests/_modal with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :coffee]}. Searched in:
73
+ * "W:/myrails/mygems/callback_request_bootstrap/test/dummy/app/views"
74
+ * "W:/myrails/mygems/callback_request_bootstrap/app/views"
75
+ ):
76
+ 1: <%= render 'callback_form/requests/modal' %>
77
+ 2:
78
+ 3:
79
+ 4: <%-#= javascript_include_tag 'callback_form/requests' -%>
80
+ app/views/debug/index.html.erb:14:in `_app_views_debug_index_html_erb___118475272_37250724'
81
+
82
+
83
+ Rendered D:/Ruby200p451x32/lib/ruby/gems/2.0.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (2.0ms)
84
+ Rendered D:/Ruby200p451x32/lib/ruby/gems/2.0.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (19.0ms)
85
+ Rendered D:/Ruby200p451x32/lib/ruby/gems/2.0.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (4.0ms)
86
+ Rendered D:/Ruby200p451x32/lib/ruby/gems/2.0.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (59.0ms)
87
+
88
+
89
+ Started GET "/debug/index?class=btn" for 127.0.0.1 at 2015-04-03 20:39:56 +0300
90
+ Processing by DebugController#index as HTML
91
+ Parameters: {"class"=>"btn"}
92
+ Rendered W:/myrails/mygems/callback_request_bootstrap/app/views/callback_request_bootstrap/requests/_modal.html.erb (1.0ms)
93
+ Rendered W:/myrails/mygems/callback_request_bootstrap/app/views/callback_request_bootstrap/requests/_js_modal.html.erb (35.0ms)
94
+ Rendered debug/index.html.erb within layouts/application (44.0ms)
95
+ Completed 500 Internal Server Error in 53ms (ActiveRecord: 0.0ms)
96
+
97
+ ActionView::Template::Error (undefined local variable or method `callback_form' for #<#<Class:0x54d08a8>:0x46cda18>):
98
+ 7: $('#modCallback .divContFormCallback').html('');
99
+ 8: $('#modCallback').modal('show');
100
+ 9:
101
+ 10: $.get("<%=callback_form.new_request_path()%>", {modal: "1"},
102
+ 11: function(data) {
103
+ 12: $('#modCallback .divContFormCallback').html(data);
104
+ 13:
105
+ app/views/debug/index.html.erb:14:in `_app_views_debug_index_html_erb___118475272_37250724'
106
+
107
+
108
+ Rendered D:/Ruby200p451x32/lib/ruby/gems/2.0.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (2.0ms)
109
+ Rendered D:/Ruby200p451x32/lib/ruby/gems/2.0.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (22.0ms)
110
+ Rendered D:/Ruby200p451x32/lib/ruby/gems/2.0.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (5.0ms)
111
+ Rendered D:/Ruby200p451x32/lib/ruby/gems/2.0.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (76.0ms)
112
+
113
+
114
+ Started GET "/debug/index?class=btn" for 127.0.0.1 at 2015-04-03 20:40:10 +0300
115
+ Processing by DebugController#index as HTML
116
+ Parameters: {"class"=>"btn"}
117
+ Rendered W:/myrails/mygems/callback_request_bootstrap/app/views/callback_request_bootstrap/requests/_modal.html.erb (1.0ms)
118
+ Rendered W:/myrails/mygems/callback_request_bootstrap/app/views/callback_request_bootstrap/requests/_js_modal.html.erb (11.0ms)
119
+ Rendered debug/index.html.erb within layouts/application (22.0ms)
120
+ Completed 200 OK in 14801ms (Views: 14799.8ms | ActiveRecord: 0.0ms)
121
+
122
+
123
+ Started GET "/assets/application-b8186a4a5f2ceafc0e3ec24e6a8769db.css?body=1" for 127.0.0.1 at 2015-04-03 20:40:25 +0300
124
+
125
+
126
+ Started GET "/assets/jquery-2.1.3.min-081439c47c59b5a03e286d1fbbd00553.js?body=1" for 127.0.0.1 at 2015-04-03 20:40:25 +0300
127
+
128
+
129
+ Started GET "/assets/jquery_ujs-e27bd20a10d28155845a22d71ef94f2f.js?body=1" for 127.0.0.1 at 2015-04-03 20:40:25 +0300
130
+
131
+
132
+ Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-04-03 20:40:25 +0300
133
+
134
+
135
+ Started GET "/assets/application-cdf0d2fe55534695da80231db2809a80.js?body=1" for 127.0.0.1 at 2015-04-03 20:40:25 +0300
136
+
137
+
138
+ Started GET "/debug/index?class=btn" for 127.0.0.1 at 2015-04-03 20:44:17 +0300
139
+ Processing by DebugController#index as HTML
140
+ Parameters: {"class"=>"btn"}
141
+ Rendered debug/index.html.erb within layouts/application (14.0ms)
142
+ Completed 500 Internal Server Error in 22ms (ActiveRecord: 0.0ms)
143
+
144
+ ActionView::Template::Error (undefined method `link_to_callback_modal' for #<#<Class:0x54e0718>:0x54eb638>):
145
+ 2: <div class='container'>
146
+ 3:
147
+ 4:
148
+ 5: <%=link_to_callback_modal "Show modal", :class=>'btn' %>
149
+ 6:
150
+ 7: <br>
151
+ 8:
152
+ app/views/debug/index.html.erb:5:in `_app_views_debug_index_html_erb___118475272_44517804'
153
+
154
+
155
+ Rendered D:/Ruby200p451x32/lib/ruby/gems/2.0.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.0ms)
156
+ Rendered D:/Ruby200p451x32/lib/ruby/gems/2.0.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (22.0ms)
157
+ Rendered D:/Ruby200p451x32/lib/ruby/gems/2.0.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.0ms)
158
+ Rendered D:/Ruby200p451x32/lib/ruby/gems/2.0.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (73.0ms)
159
+
160
+
161
+ Started GET "/debug/index?class=btn" for 127.0.0.1 at 2015-04-03 20:45:29 +0300
162
+ Processing by DebugController#index as HTML
163
+ Parameters: {"class"=>"btn"}
164
+ Rendered W:/myrails/mygems/callback_request_bootstrap/app/views/callback_request_bootstrap/requests/_modal.html.erb (1.0ms)
165
+ Rendered W:/myrails/mygems/callback_request_bootstrap/app/views/callback_request_bootstrap/requests/_js_modal.html.erb (6.0ms)
166
+ Rendered debug/index.html.erb within layouts/application (23.0ms)
167
+ Completed 200 OK in 263ms (Views: 262.0ms | ActiveRecord: 0.0ms)
168
+
169
+
170
+ Started GET "/assets/application-b8186a4a5f2ceafc0e3ec24e6a8769db.css?body=1" for 127.0.0.1 at 2015-04-03 20:45:30 +0300
171
+
172
+
173
+ Started GET "/assets/jquery-2.1.3.min-081439c47c59b5a03e286d1fbbd00553.js?body=1" for 127.0.0.1 at 2015-04-03 20:45:30 +0300
174
+
175
+
176
+ Started GET "/assets/jquery_ujs-e27bd20a10d28155845a22d71ef94f2f.js?body=1" for 127.0.0.1 at 2015-04-03 20:45:30 +0300
177
+
178
+
179
+ Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-04-03 20:45:30 +0300
180
+
181
+
182
+ Started GET "/assets/application-cdf0d2fe55534695da80231db2809a80.js?body=1" for 127.0.0.1 at 2015-04-03 20:45:30 +0300
183
+
184
+
185
+ Started GET "/debug/index?class=btn" for 127.0.0.1 at 2015-04-03 20:47:05 +0300
186
+ Processing by DebugController#index as HTML
187
+ Parameters: {"class"=>"btn"}
188
+ Rendered W:/myrails/mygems/callback_request_bootstrap/app/views/callback_request_bootstrap/requests/_modal.html.erb (0.0ms)
189
+ Rendered W:/myrails/mygems/callback_request_bootstrap/app/views/callback_request_bootstrap/requests/_js_modal.html.erb (6.0ms)
190
+ Rendered debug/index.html.erb within layouts/application (13.0ms)
191
+ Completed 200 OK in 256ms (Views: 255.0ms | ActiveRecord: 0.0ms)
192
+
193
+
194
+ Started GET "/assets/application-b8186a4a5f2ceafc0e3ec24e6a8769db.css?body=1" for 127.0.0.1 at 2015-04-03 20:47:05 +0300
195
+
196
+
197
+ Started GET "/assets/jquery-2.1.3.min-081439c47c59b5a03e286d1fbbd00553.js?body=1" for 127.0.0.1 at 2015-04-03 20:47:05 +0300
198
+
199
+
200
+ Started GET "/assets/jquery_ujs-e27bd20a10d28155845a22d71ef94f2f.js?body=1" for 127.0.0.1 at 2015-04-03 20:47:05 +0300
201
+
202
+
203
+ Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-04-03 20:47:05 +0300
204
+
205
+
206
+ Started GET "/assets/application-cdf0d2fe55534695da80231db2809a80.js?body=1" for 127.0.0.1 at 2015-04-03 20:47:05 +0300
207
+
208
+
209
+ Started GET "/debug/index?class=btn" for 127.0.0.1 at 2015-04-03 20:47:14 +0300
210
+ Processing by DebugController#index as HTML
211
+ Parameters: {"class"=>"btn"}
212
+ Rendered W:/myrails/mygems/callback_request_bootstrap/app/views/callback_request_bootstrap/requests/_modal.html.erb (0.0ms)
213
+ Rendered W:/myrails/mygems/callback_request_bootstrap/app/views/callback_request_bootstrap/requests/_js_modal.html.erb (5.0ms)
214
+ Rendered debug/index.html.erb within layouts/application (15.0ms)
215
+ Completed 200 OK in 182ms (Views: 181.0ms | ActiveRecord: 0.0ms)
216
+
217
+
218
+ Started GET "/assets/application-b8186a4a5f2ceafc0e3ec24e6a8769db.css?body=1" for 127.0.0.1 at 2015-04-03 20:47:14 +0300
219
+
220
+
221
+ Started GET "/assets/application-cdf0d2fe55534695da80231db2809a80.js?body=1" for 127.0.0.1 at 2015-04-03 20:47:14 +0300
222
+
223
+
224
+ Started GET "/assets/jquery_ujs-e27bd20a10d28155845a22d71ef94f2f.js?body=1" for 127.0.0.1 at 2015-04-03 20:47:14 +0300
225
+
226
+
227
+ Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-04-03 20:47:14 +0300
228
+
229
+
230
+ Started GET "/assets/jquery-2.1.3.min-081439c47c59b5a03e286d1fbbd00553.js?body=1" for 127.0.0.1 at 2015-04-03 20:47:14 +0300
231
+
232
+
233
+ Started GET "/callback/requests/new?modal=1" for 127.0.0.1 at 2015-04-03 20:47:17 +0300
234
+ Processing by CallbackRequestBootstrap::RequestsController#new as */*
235
+ Parameters: {"modal"=>"1"}
236
+ Completed 500 Internal Server Error in 180ms (ActiveRecord: 0.0ms)
237
+
238
+ LoadError (Unable to autoload constant CallbackRequestBootstrap::Request, expected W:/myrails/mygems/callback_request_bootstrap/app/models/callback_request_bootstrap/request.rb to define it):
239
+ activesupport (4.2.1) lib/active_support/dependencies.rb:495:in `load_missing_constant'
240
+ activesupport (4.2.1) lib/active_support/dependencies.rb:184:in `const_missing'
241
+ activesupport (4.2.1) lib/active_support/dependencies.rb:526:in `load_missing_constant'
242
+ activesupport (4.2.1) lib/active_support/dependencies.rb:184:in `const_missing'
243
+ W:/myrails/mygems/callback_request_bootstrap/app/controllers/callback_request_bootstrap/requests_controller.rb:19:in `new'
244
+ actionpack (4.2.1) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
245
+ actionpack (4.2.1) lib/abstract_controller/base.rb:198:in `process_action'
246
+ actionpack (4.2.1) lib/action_controller/metal/rendering.rb:10:in `process_action'
247
+ actionpack (4.2.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
248
+ activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call'
249
+ activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call'
250
+ activesupport (4.2.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
251
+ activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call'
252
+ activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call'
253
+ activesupport (4.2.1) lib/active_support/callbacks.rb:92:in `_run_callbacks'
254
+ activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_process_action_callbacks'
255
+ activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
256
+ actionpack (4.2.1) lib/abstract_controller/callbacks.rb:19:in `process_action'
257
+ actionpack (4.2.1) lib/action_controller/metal/rescue.rb:29:in `process_action'
258
+ actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
259
+ activesupport (4.2.1) lib/active_support/notifications.rb:164:in `block in instrument'
260
+ activesupport (4.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
261
+ activesupport (4.2.1) lib/active_support/notifications.rb:164:in `instrument'
262
+ actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
263
+ actionpack (4.2.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
264
+ activerecord (4.2.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
265
+ actionpack (4.2.1) lib/abstract_controller/base.rb:137:in `process'
266
+ actionview (4.2.1) lib/action_view/rendering.rb:30:in `process'
267
+ actionpack (4.2.1) lib/action_controller/metal.rb:196:in `dispatch'
268
+ actionpack (4.2.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
269
+ actionpack (4.2.1) lib/action_controller/metal.rb:237:in `block in action'
270
+ actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `call'
271
+ actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
272
+ actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:43:in `serve'
273
+ actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve'
274
+ actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each'
275
+ actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve'
276
+ actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call'
277
+ railties (4.2.1) lib/rails/engine.rb:518:in `call'
278
+ railties (4.2.1) lib/rails/railtie.rb:194:in `public_send'
279
+ railties (4.2.1) lib/rails/railtie.rb:194:in `method_missing'
280
+ actionpack (4.2.1) lib/action_dispatch/routing/mapper.rb:51:in `serve'
281
+ actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve'
282
+ actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each'
283
+ actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve'
284
+ actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call'
285
+ rack (1.6.0) lib/rack/etag.rb:24:in `call'
286
+ rack (1.6.0) lib/rack/conditionalget.rb:25:in `call'
287
+ rack (1.6.0) lib/rack/head.rb:13:in `call'
288
+ actionpack (4.2.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
289
+ actionpack (4.2.1) lib/action_dispatch/middleware/flash.rb:260:in `call'
290
+ rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context'
291
+ rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call'
292
+ actionpack (4.2.1) lib/action_dispatch/middleware/cookies.rb:560:in `call'
293
+ activerecord (4.2.1) lib/active_record/query_cache.rb:36:in `call'
294
+ activerecord (4.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:649:in `call'
295
+ activerecord (4.2.1) lib/active_record/migration.rb:378:in `call'
296
+ actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
297
+ activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call'
298
+ activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks'
299
+ activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks'
300
+ activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
301
+ actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
302
+ actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call'
303
+ actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
304
+ actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
305
+ actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
306
+ railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app'
307
+ railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call'
308
+ activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
309
+ activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged'
310
+ activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged'
311
+ railties (4.2.1) lib/rails/rack/logger.rb:20:in `call'
312
+ actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
313
+ rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
314
+ rack (1.6.0) lib/rack/runtime.rb:18:in `call'
315
+ activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
316
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
317
+ actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call'
318
+ rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
319
+ railties (4.2.1) lib/rails/engine.rb:518:in `call'
320
+ railties (4.2.1) lib/rails/application.rb:164:in `call'
321
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
322
+ rack (1.6.0) lib/rack/content_length.rb:15:in `call'
323
+ rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
324
+ D:/Ruby200p451x32/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
325
+ D:/Ruby200p451x32/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
326
+ D:/Ruby200p451x32/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
327
+
328
+
329
+ Rendered D:/Ruby200p451x32/lib/ruby/gems/2.0.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (2.0ms)
330
+ Rendered D:/Ruby200p451x32/lib/ruby/gems/2.0.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.text.erb (2.0ms)
331
+ Rendered D:/Ruby200p451x32/lib/ruby/gems/2.0.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.text.erb (3.0ms)
332
+ Rendered D:/Ruby200p451x32/lib/ruby/gems/2.0.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.text.erb (48.0ms)
333
+
334
+
335
+ Started GET "/debug/index?class=btn" for 127.0.0.1 at 2015-04-03 20:47:50 +0300
336
+ Processing by DebugController#index as HTML
337
+ Parameters: {"class"=>"btn"}
338
+ Rendered W:/myrails/mygems/callback_request_bootstrap/app/views/callback_request_bootstrap/requests/_modal.html.erb (0.0ms)
339
+ Rendered W:/myrails/mygems/callback_request_bootstrap/app/views/callback_request_bootstrap/requests/_js_modal.html.erb (5.0ms)
340
+ Rendered debug/index.html.erb within layouts/application (12.0ms)
341
+ Completed 200 OK in 281ms (Views: 280.0ms | ActiveRecord: 0.0ms)
342
+
343
+
344
+ Started GET "/assets/application-b8186a4a5f2ceafc0e3ec24e6a8769db.css?body=1" for 127.0.0.1 at 2015-04-03 20:47:51 +0300
345
+
346
+
347
+ Started GET "/assets/jquery-2.1.3.min-081439c47c59b5a03e286d1fbbd00553.js?body=1" for 127.0.0.1 at 2015-04-03 20:47:51 +0300
348
+
349
+
350
+ Started GET "/assets/jquery_ujs-e27bd20a10d28155845a22d71ef94f2f.js?body=1" for 127.0.0.1 at 2015-04-03 20:47:51 +0300
351
+
352
+
353
+ Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-04-03 20:47:51 +0300
354
+
355
+
356
+ Started GET "/assets/application-cdf0d2fe55534695da80231db2809a80.js?body=1" for 127.0.0.1 at 2015-04-03 20:47:51 +0300
357
+
358
+
359
+ Started GET "/callback/requests/new?modal=1" for 127.0.0.1 at 2015-04-03 20:47:53 +0300
360
+ Processing by CallbackRequestBootstrap::RequestsController#new as */*
361
+ Parameters: {"modal"=>"1"}
362
+ Completed 500 Internal Server Error in 7199ms (ActiveRecord: 0.0ms)
363
+
364
+ LoadError (Unable to autoload constant CallbackRequestBootstrap::Request, expected W:/myrails/mygems/callback_request_bootstrap/app/models/callback_request_bootstrap/request.rb to define it):
365
+ activesupport (4.2.1) lib/active_support/dependencies.rb:495:in `load_missing_constant'
366
+ activesupport (4.2.1) lib/active_support/dependencies.rb:184:in `const_missing'
367
+ activesupport (4.2.1) lib/active_support/dependencies.rb:526:in `load_missing_constant'
368
+ activesupport (4.2.1) lib/active_support/dependencies.rb:184:in `const_missing'
369
+ W:/myrails/mygems/callback_request_bootstrap/app/controllers/callback_request_bootstrap/requests_controller.rb:19:in `new'
370
+ actionpack (4.2.1) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
371
+ actionpack (4.2.1) lib/abstract_controller/base.rb:198:in `process_action'
372
+ actionpack (4.2.1) lib/action_controller/metal/rendering.rb:10:in `process_action'
373
+ actionpack (4.2.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
374
+ activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call'
375
+ activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call'
376
+ activesupport (4.2.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
377
+ activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call'
378
+ activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call'
379
+ activesupport (4.2.1) lib/active_support/callbacks.rb:92:in `_run_callbacks'
380
+ activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_process_action_callbacks'
381
+ activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
382
+ actionpack (4.2.1) lib/abstract_controller/callbacks.rb:19:in `process_action'
383
+ actionpack (4.2.1) lib/action_controller/metal/rescue.rb:29:in `process_action'
384
+ actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
385
+ activesupport (4.2.1) lib/active_support/notifications.rb:164:in `block in instrument'
386
+ activesupport (4.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
387
+ activesupport (4.2.1) lib/active_support/notifications.rb:164:in `instrument'
388
+ actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
389
+ actionpack (4.2.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
390
+ activerecord (4.2.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
391
+ actionpack (4.2.1) lib/abstract_controller/base.rb:137:in `process'
392
+ actionview (4.2.1) lib/action_view/rendering.rb:30:in `process'
393
+ actionpack (4.2.1) lib/action_controller/metal.rb:196:in `dispatch'
394
+ actionpack (4.2.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
395
+ actionpack (4.2.1) lib/action_controller/metal.rb:237:in `block in action'
396
+ actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `call'
397
+ actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
398
+ actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:43:in `serve'
399
+ actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve'
400
+ actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each'
401
+ actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve'
402
+ actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call'
403
+ railties (4.2.1) lib/rails/engine.rb:518:in `call'
404
+ railties (4.2.1) lib/rails/railtie.rb:194:in `public_send'
405
+ railties (4.2.1) lib/rails/railtie.rb:194:in `method_missing'
406
+ actionpack (4.2.1) lib/action_dispatch/routing/mapper.rb:51:in `serve'
407
+ actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve'
408
+ actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each'
409
+ actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve'
410
+ actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call'
411
+ rack (1.6.0) lib/rack/etag.rb:24:in `call'
412
+ rack (1.6.0) lib/rack/conditionalget.rb:25:in `call'
413
+ rack (1.6.0) lib/rack/head.rb:13:in `call'
414
+ actionpack (4.2.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
415
+ actionpack (4.2.1) lib/action_dispatch/middleware/flash.rb:260:in `call'
416
+ rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context'
417
+ rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call'
418
+ actionpack (4.2.1) lib/action_dispatch/middleware/cookies.rb:560:in `call'
419
+ activerecord (4.2.1) lib/active_record/query_cache.rb:36:in `call'
420
+ activerecord (4.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:649:in `call'
421
+ activerecord (4.2.1) lib/active_record/migration.rb:378:in `call'
422
+ actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
423
+ activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call'
424
+ activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks'
425
+ activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks'
426
+ activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
427
+ actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
428
+ actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call'
429
+ actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
430
+ actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
431
+ actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
432
+ railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app'
433
+ railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call'
434
+ activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
435
+ activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged'
436
+ activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged'
437
+ railties (4.2.1) lib/rails/rack/logger.rb:20:in `call'
438
+ actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
439
+ rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
440
+ rack (1.6.0) lib/rack/runtime.rb:18:in `call'
441
+ activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
442
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
443
+ actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call'
444
+ rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
445
+ railties (4.2.1) lib/rails/engine.rb:518:in `call'
446
+ railties (4.2.1) lib/rails/application.rb:164:in `call'
447
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
448
+ rack (1.6.0) lib/rack/content_length.rb:15:in `call'
449
+ rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
450
+ D:/Ruby200p451x32/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
451
+ D:/Ruby200p451x32/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
452
+ D:/Ruby200p451x32/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
453
+
454
+
455
+ Rendered D:/Ruby200p451x32/lib/ruby/gems/2.0.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.0ms)
456
+ Rendered D:/Ruby200p451x32/lib/ruby/gems/2.0.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.text.erb (2.0ms)
457
+ Rendered D:/Ruby200p451x32/lib/ruby/gems/2.0.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.text.erb (4.0ms)
458
+ Rendered D:/Ruby200p451x32/lib/ruby/gems/2.0.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.text.erb (57.0ms)
459
+
460
+
461
+ Started GET "/debug/index?class=btn" for 127.0.0.1 at 2015-04-03 20:48:11 +0300
462
+ Processing by DebugController#index as HTML
463
+ Parameters: {"class"=>"btn"}
464
+ Rendered W:/myrails/mygems/callback_request_bootstrap/app/views/callback_request_bootstrap/requests/_modal.html.erb (0.0ms)
465
+ Rendered W:/myrails/mygems/callback_request_bootstrap/app/views/callback_request_bootstrap/requests/_js_modal.html.erb (6.0ms)
466
+ Rendered debug/index.html.erb within layouts/application (12.0ms)
467
+ Completed 200 OK in 254ms (Views: 253.0ms | ActiveRecord: 0.0ms)
468
+
469
+
470
+ Started GET "/assets/jquery_ujs-e27bd20a10d28155845a22d71ef94f2f.js?body=1" for 127.0.0.1 at 2015-04-03 20:48:12 +0300
471
+
472
+
473
+ Started GET "/assets/jquery-2.1.3.min-081439c47c59b5a03e286d1fbbd00553.js?body=1" for 127.0.0.1 at 2015-04-03 20:48:12 +0300
474
+
475
+
476
+ Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-04-03 20:48:12 +0300
477
+
478
+
479
+ Started GET "/assets/application-b8186a4a5f2ceafc0e3ec24e6a8769db.css?body=1" for 127.0.0.1 at 2015-04-03 20:48:12 +0300
480
+
481
+
482
+ Started GET "/assets/application-cdf0d2fe55534695da80231db2809a80.js?body=1" for 127.0.0.1 at 2015-04-03 20:48:12 +0300
483
+
484
+
485
+ Started GET "/callback/requests/new?modal=1" for 127.0.0.1 at 2015-04-03 20:48:14 +0300
486
+ Processing by CallbackRequestBootstrap::RequestsController#new as */*
487
+ Parameters: {"modal"=>"1"}
488
+ Mysql2::Error: Table 'my_rails_gem_callback_request_dev.callback_request_bootstrap_requests' doesn't exist: SHOW FULL FIELDS FROM `callback_request_bootstrap_requests`
489
+ Completed 500 Internal Server Error in 4247ms (ActiveRecord: 104.0ms)
490
+
491
+ ActiveRecord::StatementInvalid (Mysql2::Error: Table 'my_rails_gem_callback_request_dev.callback_request_bootstrap_requests' doesn't exist: SHOW FULL FIELDS FROM `callback_request_bootstrap_requests`):
492
+ activerecord (4.2.1) lib/active_record/connection_adapters/abstract_mysql_adapter.rb:299:in `query'
493
+ activerecord (4.2.1) lib/active_record/connection_adapters/abstract_mysql_adapter.rb:299:in `block in execute'
494
+ activerecord (4.2.1) lib/active_record/connection_adapters/abstract_adapter.rb:473:in `block in log'
495
+ activesupport (4.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
496
+ activerecord (4.2.1) lib/active_record/connection_adapters/abstract_adapter.rb:467:in `log'
497
+ activerecord (4.2.1) lib/active_record/connection_adapters/abstract_mysql_adapter.rb:299:in `execute'
498
+ activerecord (4.2.1) lib/active_record/connection_adapters/mysql2_adapter.rb:231:in `execute'
499
+ activerecord (4.2.1) lib/active_record/connection_adapters/abstract_mysql_adapter.rb:306:in `execute_and_free'
500
+ activerecord (4.2.1) lib/active_record/connection_adapters/abstract_mysql_adapter.rb:451:in `columns'
501
+ activerecord (4.2.1) lib/active_record/connection_adapters/schema_cache.rb:43:in `columns'
502
+ activerecord (4.2.1) lib/active_record/attributes.rb:93:in `columns'
503
+ activerecord (4.2.1) lib/active_record/attributes.rb:98:in `columns_hash'
504
+ activerecord (4.2.1) lib/active_record/inheritance.rb:205:in `subclass_from_attributes?'
505
+ activerecord (4.2.1) lib/active_record/inheritance.rb:54:in `new'
506
+ W:/myrails/mygems/callback_request_bootstrap/app/controllers/callback_request_bootstrap/requests_controller.rb:19:in `new'
507
+ actionpack (4.2.1) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
508
+ actionpack (4.2.1) lib/abstract_controller/base.rb:198:in `process_action'
509
+ actionpack (4.2.1) lib/action_controller/metal/rendering.rb:10:in `process_action'
510
+ actionpack (4.2.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
511
+ activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call'
512
+ activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call'
513
+ activesupport (4.2.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
514
+ activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call'
515
+ activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call'
516
+ activesupport (4.2.1) lib/active_support/callbacks.rb:92:in `_run_callbacks'
517
+ activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_process_action_callbacks'
518
+ activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
519
+ actionpack (4.2.1) lib/abstract_controller/callbacks.rb:19:in `process_action'
520
+ actionpack (4.2.1) lib/action_controller/metal/rescue.rb:29:in `process_action'
521
+ actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
522
+ activesupport (4.2.1) lib/active_support/notifications.rb:164:in `block in instrument'
523
+ activesupport (4.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
524
+ activesupport (4.2.1) lib/active_support/notifications.rb:164:in `instrument'
525
+ actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
526
+ actionpack (4.2.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
527
+ activerecord (4.2.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
528
+ actionpack (4.2.1) lib/abstract_controller/base.rb:137:in `process'
529
+ actionview (4.2.1) lib/action_view/rendering.rb:30:in `process'
530
+ actionpack (4.2.1) lib/action_controller/metal.rb:196:in `dispatch'
531
+ actionpack (4.2.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
532
+ actionpack (4.2.1) lib/action_controller/metal.rb:237:in `block in action'
533
+ actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `call'
534
+ actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
535
+ actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:43:in `serve'
536
+ actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve'
537
+ actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each'
538
+ actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve'
539
+ actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call'
540
+ railties (4.2.1) lib/rails/engine.rb:518:in `call'
541
+ railties (4.2.1) lib/rails/railtie.rb:194:in `public_send'
542
+ railties (4.2.1) lib/rails/railtie.rb:194:in `method_missing'
543
+ actionpack (4.2.1) lib/action_dispatch/routing/mapper.rb:51:in `serve'
544
+ actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve'
545
+ actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each'
546
+ actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve'
547
+ actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call'
548
+ rack (1.6.0) lib/rack/etag.rb:24:in `call'
549
+ rack (1.6.0) lib/rack/conditionalget.rb:25:in `call'
550
+ rack (1.6.0) lib/rack/head.rb:13:in `call'
551
+ actionpack (4.2.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
552
+ actionpack (4.2.1) lib/action_dispatch/middleware/flash.rb:260:in `call'
553
+ rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context'
554
+ rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call'
555
+ actionpack (4.2.1) lib/action_dispatch/middleware/cookies.rb:560:in `call'
556
+ activerecord (4.2.1) lib/active_record/query_cache.rb:36:in `call'
557
+ activerecord (4.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:649:in `call'
558
+ activerecord (4.2.1) lib/active_record/migration.rb:378:in `call'
559
+ actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
560
+ activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call'
561
+ activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks'
562
+ activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks'
563
+ activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
564
+ actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
565
+ actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call'
566
+ actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
567
+ actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
568
+ actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
569
+ railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app'
570
+ railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call'
571
+ activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
572
+ activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged'
573
+ activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged'
574
+ railties (4.2.1) lib/rails/rack/logger.rb:20:in `call'
575
+ actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
576
+ rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
577
+ rack (1.6.0) lib/rack/runtime.rb:18:in `call'
578
+ activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
579
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
580
+ actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call'
581
+ rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
582
+ railties (4.2.1) lib/rails/engine.rb:518:in `call'
583
+ railties (4.2.1) lib/rails/application.rb:164:in `call'
584
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
585
+ rack (1.6.0) lib/rack/content_length.rb:15:in `call'
586
+ rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
587
+ D:/Ruby200p451x32/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
588
+ D:/Ruby200p451x32/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
589
+ D:/Ruby200p451x32/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
590
+
591
+
592
+ Rendered D:/Ruby200p451x32/lib/ruby/gems/2.0.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.0ms)
593
+ Rendered D:/Ruby200p451x32/lib/ruby/gems/2.0.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.text.erb (2.0ms)
594
+ Rendered D:/Ruby200p451x32/lib/ruby/gems/2.0.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.text.erb (4.0ms)
595
+ Rendered D:/Ruby200p451x32/lib/ruby/gems/2.0.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.text.erb (138.0ms)
596
+
597
+
598
+ Started GET "/debug/index?class=btn" for 127.0.0.1 at 2015-04-03 20:48:54 +0300
599
+ Processing by DebugController#index as HTML
600
+ Parameters: {"class"=>"btn"}
601
+ Rendered W:/myrails/mygems/callback_request_bootstrap/app/views/callback_request_bootstrap/requests/_modal.html.erb (0.0ms)
602
+ Rendered W:/myrails/mygems/callback_request_bootstrap/app/views/callback_request_bootstrap/requests/_js_modal.html.erb (4.0ms)
603
+ Rendered debug/index.html.erb within layouts/application (10.0ms)
604
+ Completed 200 OK in 235ms (Views: 233.0ms | ActiveRecord: 0.0ms)
605
+
606
+
607
+ Started GET "/assets/application-b8186a4a5f2ceafc0e3ec24e6a8769db.css?body=1" for 127.0.0.1 at 2015-04-03 20:48:55 +0300
608
+
609
+
610
+ Started GET "/assets/jquery-2.1.3.min-081439c47c59b5a03e286d1fbbd00553.js?body=1" for 127.0.0.1 at 2015-04-03 20:48:55 +0300
611
+
612
+
613
+ Started GET "/assets/jquery_ujs-e27bd20a10d28155845a22d71ef94f2f.js?body=1" for 127.0.0.1 at 2015-04-03 20:48:55 +0300
614
+
615
+
616
+ Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-04-03 20:48:55 +0300
617
+
618
+
619
+ Started GET "/assets/application-cdf0d2fe55534695da80231db2809a80.js?body=1" for 127.0.0.1 at 2015-04-03 20:48:55 +0300
620
+
621
+
622
+ Started GET "/callback/requests/new?modal=1" for 127.0.0.1 at 2015-04-03 20:50:00 +0300
623
+ Processing by CallbackRequestBootstrap::RequestsController#new as */*
624
+ Parameters: {"modal"=>"1"}
625
+ Mysql2::Error: Table 'my_rails_gem_callback_request_dev.requests' doesn't exist: SHOW FULL FIELDS FROM `requests`
626
+ Completed 500 Internal Server Error in 19ms (ActiveRecord: 12.0ms)
627
+
628
+ ActiveRecord::StatementInvalid (Mysql2::Error: Table 'my_rails_gem_callback_request_dev.requests' doesn't exist: SHOW FULL FIELDS FROM `requests`):
629
+ activerecord (4.2.1) lib/active_record/connection_adapters/abstract_mysql_adapter.rb:299:in `query'
630
+ activerecord (4.2.1) lib/active_record/connection_adapters/abstract_mysql_adapter.rb:299:in `block in execute'
631
+ activerecord (4.2.1) lib/active_record/connection_adapters/abstract_adapter.rb:473:in `block in log'
632
+ activesupport (4.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
633
+ activerecord (4.2.1) lib/active_record/connection_adapters/abstract_adapter.rb:467:in `log'
634
+ activerecord (4.2.1) lib/active_record/connection_adapters/abstract_mysql_adapter.rb:299:in `execute'
635
+ activerecord (4.2.1) lib/active_record/connection_adapters/mysql2_adapter.rb:231:in `execute'
636
+ activerecord (4.2.1) lib/active_record/connection_adapters/abstract_mysql_adapter.rb:306:in `execute_and_free'
637
+ activerecord (4.2.1) lib/active_record/connection_adapters/abstract_mysql_adapter.rb:451:in `columns'
638
+ activerecord (4.2.1) lib/active_record/connection_adapters/schema_cache.rb:43:in `columns'
639
+ activerecord (4.2.1) lib/active_record/attributes.rb:93:in `columns'
640
+ activerecord (4.2.1) lib/active_record/attributes.rb:98:in `columns_hash'
641
+ activerecord (4.2.1) lib/active_record/inheritance.rb:205:in `subclass_from_attributes?'
642
+ activerecord (4.2.1) lib/active_record/inheritance.rb:54:in `new'
643
+ W:/myrails/mygems/callback_request_bootstrap/app/controllers/callback_request_bootstrap/requests_controller.rb:19:in `new'
644
+ actionpack (4.2.1) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
645
+ actionpack (4.2.1) lib/abstract_controller/base.rb:198:in `process_action'
646
+ actionpack (4.2.1) lib/action_controller/metal/rendering.rb:10:in `process_action'
647
+ actionpack (4.2.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
648
+ activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call'
649
+ activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call'
650
+ activesupport (4.2.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
651
+ activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call'
652
+ activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call'
653
+ activesupport (4.2.1) lib/active_support/callbacks.rb:92:in `_run_callbacks'
654
+ activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_process_action_callbacks'
655
+ activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
656
+ actionpack (4.2.1) lib/abstract_controller/callbacks.rb:19:in `process_action'
657
+ actionpack (4.2.1) lib/action_controller/metal/rescue.rb:29:in `process_action'
658
+ actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
659
+ activesupport (4.2.1) lib/active_support/notifications.rb:164:in `block in instrument'
660
+ activesupport (4.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
661
+ activesupport (4.2.1) lib/active_support/notifications.rb:164:in `instrument'
662
+ actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
663
+ actionpack (4.2.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
664
+ activerecord (4.2.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
665
+ actionpack (4.2.1) lib/abstract_controller/base.rb:137:in `process'
666
+ actionview (4.2.1) lib/action_view/rendering.rb:30:in `process'
667
+ actionpack (4.2.1) lib/action_controller/metal.rb:196:in `dispatch'
668
+ actionpack (4.2.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
669
+ actionpack (4.2.1) lib/action_controller/metal.rb:237:in `block in action'
670
+ actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `call'
671
+ actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
672
+ actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:43:in `serve'
673
+ actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve'
674
+ actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each'
675
+ actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve'
676
+ actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call'
677
+ railties (4.2.1) lib/rails/engine.rb:518:in `call'
678
+ railties (4.2.1) lib/rails/railtie.rb:194:in `public_send'
679
+ railties (4.2.1) lib/rails/railtie.rb:194:in `method_missing'
680
+ actionpack (4.2.1) lib/action_dispatch/routing/mapper.rb:51:in `serve'
681
+ actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve'
682
+ actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each'
683
+ actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve'
684
+ actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call'
685
+ rack (1.6.0) lib/rack/etag.rb:24:in `call'
686
+ rack (1.6.0) lib/rack/conditionalget.rb:25:in `call'
687
+ rack (1.6.0) lib/rack/head.rb:13:in `call'
688
+ actionpack (4.2.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
689
+ actionpack (4.2.1) lib/action_dispatch/middleware/flash.rb:260:in `call'
690
+ rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context'
691
+ rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call'
692
+ actionpack (4.2.1) lib/action_dispatch/middleware/cookies.rb:560:in `call'
693
+ activerecord (4.2.1) lib/active_record/query_cache.rb:36:in `call'
694
+ activerecord (4.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:649:in `call'
695
+ activerecord (4.2.1) lib/active_record/migration.rb:378:in `call'
696
+ actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
697
+ activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call'
698
+ activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks'
699
+ activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks'
700
+ activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
701
+ actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
702
+ actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call'
703
+ actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
704
+ actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
705
+ actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
706
+ railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app'
707
+ railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call'
708
+ activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
709
+ activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged'
710
+ activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged'
711
+ railties (4.2.1) lib/rails/rack/logger.rb:20:in `call'
712
+ actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
713
+ rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
714
+ rack (1.6.0) lib/rack/runtime.rb:18:in `call'
715
+ activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
716
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
717
+ actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call'
718
+ rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
719
+ railties (4.2.1) lib/rails/engine.rb:518:in `call'
720
+ railties (4.2.1) lib/rails/application.rb:164:in `call'
721
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
722
+ rack (1.6.0) lib/rack/content_length.rb:15:in `call'
723
+ rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
724
+ D:/Ruby200p451x32/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
725
+ D:/Ruby200p451x32/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
726
+ D:/Ruby200p451x32/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
727
+
728
+
729
+ Rendered D:/Ruby200p451x32/lib/ruby/gems/2.0.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (2.0ms)
730
+ Rendered D:/Ruby200p451x32/lib/ruby/gems/2.0.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.text.erb (2.0ms)
731
+ Rendered D:/Ruby200p451x32/lib/ruby/gems/2.0.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.text.erb (6.0ms)
732
+ Rendered D:/Ruby200p451x32/lib/ruby/gems/2.0.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.text.erb (57.0ms)
733
+ ActiveRecord::SchemaMigration Load (0.0ms) SELECT `schema_migrations`.* FROM `schema_migrations`
734
+  (0.0ms) SELECT fk.referenced_table_name as 'to_table'
735
+ ,fk.referenced_column_name as 'primary_key'
736
+ ,fk.column_name as 'column'
737
+ ,fk.constraint_name as 'name'
738
+ FROM information_schema.key_column_usage fk
739
+ WHERE fk.referenced_column_name is not null
740
+ AND fk.table_schema = 'my_rails_gem_callback_request_dev'
741
+ AND fk.table_name = 'callback_form_requests'
742
+
743
+  (1.0ms) SHOW CREATE TABLE `callback_form_requests`
744
+ ActiveRecord::SchemaMigration Load (0.0ms) SELECT `schema_migrations`.* FROM `schema_migrations`
745
+  (1.0ms) SELECT fk.referenced_table_name as 'to_table'
746
+ ,fk.referenced_column_name as 'primary_key'
747
+ ,fk.column_name as 'column'
748
+ ,fk.constraint_name as 'name'
749
+ FROM information_schema.key_column_usage fk
750
+ WHERE fk.referenced_column_name is not null
751
+ AND fk.table_schema = 'my_rails_gem_callback_request_dev'
752
+ AND fk.table_name = 'callback_form_requests'
753
+
754
+  (0.0ms) SHOW CREATE TABLE `callback_form_requests`
755
+ ActiveRecord::SchemaMigration Load (0.0ms) SELECT `schema_migrations`.* FROM `schema_migrations`
756
+ Migrating to CreateRequests (20150403222226)
757
+ DEPRECATION WARNING: `#timestamp` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in up at D:/mmx/projects/www/myrails/mygems/callback_request_bootstrap/test/dummy/db/migrate/20150403222226_create_requests.rb:8)
758
+  (526.0ms) CREATE TABLE `requests` (`id` int(11) auto_increment PRIMARY KEY, `name` varchar(255), `phone` varchar(255), `email` varchar(255), `notes` text, `created_at` datetime, `updated_at` datetime) ENGINE=InnoDB
759
+  (207.0ms) CREATE INDEX `index_requests_on_phone` ON `requests` (`phone`) 
760
+  (0.0ms) BEGIN
761
+ SQL (2.0ms) INSERT INTO `schema_migrations` (`version`) VALUES ('20150403222226')
762
+  (2.0ms) COMMIT
763
+ ActiveRecord::SchemaMigration Load (0.0ms) SELECT `schema_migrations`.* FROM `schema_migrations`
764
+  (1.0ms) SELECT fk.referenced_table_name as 'to_table'
765
+ ,fk.referenced_column_name as 'primary_key'
766
+ ,fk.column_name as 'column'
767
+ ,fk.constraint_name as 'name'
768
+ FROM information_schema.key_column_usage fk
769
+ WHERE fk.referenced_column_name is not null
770
+ AND fk.table_schema = 'my_rails_gem_callback_request_dev'
771
+ AND fk.table_name = 'callback_form_requests'
772
+
773
+  (0.0ms) SHOW CREATE TABLE `callback_form_requests`
774
+  (0.0ms) SELECT fk.referenced_table_name as 'to_table'
775
+ ,fk.referenced_column_name as 'primary_key'
776
+ ,fk.column_name as 'column'
777
+ ,fk.constraint_name as 'name'
778
+ FROM information_schema.key_column_usage fk
779
+ WHERE fk.referenced_column_name is not null
780
+ AND fk.table_schema = 'my_rails_gem_callback_request_dev'
781
+ AND fk.table_name = 'requests'
782
+
783
+  (0.0ms) SHOW CREATE TABLE `requests`
784
+
785
+
786
+ Started GET "/debug/index?class=btn" for 127.0.0.1 at 2015-04-04 01:33:47 +0300
787
+ ActiveRecord::SchemaMigration Load (2.0ms) SELECT `schema_migrations`.* FROM `schema_migrations`
788
+ Processing by DebugController#index as HTML
789
+ Parameters: {"class"=>"btn"}
790
+ Rendered W:/myrails/mygems/callback_request_bootstrap/app/views/callback_request_bootstrap/requests/_modal.html.erb (0.0ms)
791
+ Rendered W:/myrails/mygems/callback_request_bootstrap/app/views/callback_request_bootstrap/requests/_js_modal.html.erb (3.0ms)
792
+ Rendered debug/index.html.erb within layouts/application (6.0ms)
793
+ Completed 200 OK in 251ms (Views: 250.0ms | ActiveRecord: 0.0ms)
794
+
795
+
796
+ Started GET "/assets/application-b8186a4a5f2ceafc0e3ec24e6a8769db.css?body=1" for 127.0.0.1 at 2015-04-04 01:33:47 +0300
797
+
798
+
799
+ Started GET "/assets/jquery-2.1.3.min-081439c47c59b5a03e286d1fbbd00553.js?body=1" for 127.0.0.1 at 2015-04-04 01:33:47 +0300
800
+
801
+
802
+ Started GET "/assets/jquery_ujs-e27bd20a10d28155845a22d71ef94f2f.js?body=1" for 127.0.0.1 at 2015-04-04 01:33:47 +0300
803
+
804
+
805
+ Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-04-04 01:33:47 +0300
806
+
807
+
808
+ Started GET "/assets/application-cdf0d2fe55534695da80231db2809a80.js?body=1" for 127.0.0.1 at 2015-04-04 01:33:47 +0300
809
+
810
+
811
+ Started GET "/callback/requests/new?modal=1" for 127.0.0.1 at 2015-04-04 01:33:49 +0300
812
+ Processing by CallbackRequestBootstrap::RequestsController#new as */*
813
+ Parameters: {"modal"=>"1"}
814
+ Rendered W:/myrails/mygems/callback_request_bootstrap/app/views/callback_request_bootstrap/requests/_form.simple_form.html.erb (884.1ms)
815
+ Rendered W:/myrails/mygems/callback_request_bootstrap/app/views/callback_request_bootstrap/requests/new.html.erb (895.1ms)
816
+ Completed 200 OK in 926ms (Views: 905.1ms | ActiveRecord: 9.0ms)
817
+
818
+
819
+ Started GET "/debug/index?class=btn" for 127.0.0.1 at 2015-04-04 01:35:10 +0300
820
+ Processing by DebugController#index as HTML
821
+ Parameters: {"class"=>"btn"}
822
+ Rendered W:/myrails/mygems/callback_request_bootstrap/app/views/callback_request_bootstrap/requests/_modal.html.erb (39.0ms)
823
+ Rendered W:/myrails/mygems/callback_request_bootstrap/app/views/callback_request_bootstrap/requests/_js_modal.html.erb (41.0ms)
824
+ Rendered debug/index.html.erb within layouts/application (44.0ms)
825
+ Completed 200 OK in 124ms (Views: 124.0ms | ActiveRecord: 0.0ms)
826
+
827
+
828
+ Started GET "/assets/application-b8186a4a5f2ceafc0e3ec24e6a8769db.css?body=1" for 127.0.0.1 at 2015-04-04 01:35:11 +0300
829
+
830
+
831
+ Started GET "/assets/jquery-2.1.3.min-081439c47c59b5a03e286d1fbbd00553.js?body=1" for 127.0.0.1 at 2015-04-04 01:35:11 +0300
832
+
833
+
834
+ Started GET "/assets/jquery_ujs-e27bd20a10d28155845a22d71ef94f2f.js?body=1" for 127.0.0.1 at 2015-04-04 01:35:11 +0300
835
+
836
+
837
+ Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-04-04 01:35:11 +0300
838
+
839
+
840
+ Started GET "/assets/application-cdf0d2fe55534695da80231db2809a80.js?body=1" for 127.0.0.1 at 2015-04-04 01:35:11 +0300
841
+
842
+
843
+ Started GET "/callback/requests/new?modal=1" for 127.0.0.1 at 2015-04-04 01:35:12 +0300
844
+ Processing by CallbackRequestBootstrap::RequestsController#new as */*
845
+ Parameters: {"modal"=>"1"}
846
+ Rendered W:/myrails/mygems/callback_request_bootstrap/app/views/callback_request_bootstrap/requests/_form.simple_form.html.erb (4.0ms)
847
+ Rendered W:/myrails/mygems/callback_request_bootstrap/app/views/callback_request_bootstrap/requests/new.html.erb (14.0ms)
848
+ Completed 200 OK in 42ms (Views: 25.0ms | ActiveRecord: 7.0ms)
849
+
850
+
851
+ Started GET "/debug/index?class=btn" for 127.0.0.1 at 2015-04-04 01:36:24 +0300
852
+ ActiveRecord::SchemaMigration Load (1.0ms) SELECT `schema_migrations`.* FROM `schema_migrations`
853
+ Processing by DebugController#index as HTML
854
+ Parameters: {"class"=>"btn"}
855
+ Rendered W:/myrails/mygems/callback_request_bootstrap/app/views/callback_request_bootstrap/requests/_modal.html.erb (12.0ms)
856
+ Rendered W:/myrails/mygems/callback_request_bootstrap/app/views/callback_request_bootstrap/requests/_js_modal.html.erb (15.0ms)
857
+ Rendered debug/index.html.erb within layouts/application (33.0ms)
858
+ Completed 200 OK in 285ms (Views: 285.0ms | ActiveRecord: 0.0ms)
859
+
860
+
861
+ Started GET "/assets/application-b8186a4a5f2ceafc0e3ec24e6a8769db.css?body=1" for 127.0.0.1 at 2015-04-04 01:36:25 +0300
862
+
863
+
864
+ Started GET "/assets/jquery-2.1.3.min-081439c47c59b5a03e286d1fbbd00553.js?body=1" for 127.0.0.1 at 2015-04-04 01:36:25 +0300
865
+
866
+
867
+ Started GET "/assets/jquery_ujs-e27bd20a10d28155845a22d71ef94f2f.js?body=1" for 127.0.0.1 at 2015-04-04 01:36:25 +0300
868
+
869
+
870
+ Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-04-04 01:36:25 +0300
871
+
872
+
873
+ Started GET "/assets/application-cdf0d2fe55534695da80231db2809a80.js?body=1" for 127.0.0.1 at 2015-04-04 01:36:25 +0300
874
+
875
+
876
+ Started GET "/callback/requests/new?modal=1" for 127.0.0.1 at 2015-04-04 01:36:26 +0300
877
+ Processing by CallbackRequestBootstrap::RequestsController#new as */*
878
+ Parameters: {"modal"=>"1"}
879
+ Rendered W:/myrails/mygems/callback_request_bootstrap/app/views/callback_request_bootstrap/requests/_form.simple_form.html.erb (91.0ms)
880
+ Rendered W:/myrails/mygems/callback_request_bootstrap/app/views/callback_request_bootstrap/requests/new.html.erb (102.0ms)
881
+ Completed 200 OK in 132ms (Views: 112.0ms | ActiveRecord: 8.0ms)
882
+
883
+
884
+ Started POST "/callback/requests" for 127.0.0.1 at 2015-04-04 01:36:37 +0300
885
+ Processing by CallbackRequestBootstrap::RequestsController#create as JS
886
+ Parameters: {"utf8"=>"✓", "modal"=>"1", "request"=>{"name"=>"4", "phone"=>"4", "notes"=>"4"}, "commit"=>"Отправить"}
887
+  (0.0ms) BEGIN
888
+ SQL (0.0ms) INSERT INTO `requests` (`name`, `phone`, `notes`, `created_at`, `updated_at`) VALUES ('4', '4', '4', '2015-04-03 22:36:37', '2015-04-03 22:36:37')
889
+  (1.0ms) COMMIT
890
+ Rendered W:/myrails/mygems/callback_request_bootstrap/app/views/callback_request_bootstrap/requests/_create_result.html.erb (1.0ms)
891
+ Rendered W:/myrails/mygems/callback_request_bootstrap/app/views/callback_request_bootstrap/requests/create.js.erb (4.0ms)
892
+ Completed 200 OK in 18ms (Views: 11.0ms | ActiveRecord: 1.0ms)
893
+
894
+
895
+ Started GET "/callback" for 127.0.0.1 at 2015-04-04 01:36:50 +0300
896
+
897
+ ActionController::RoutingError (No route matches [GET] "/callback"):
898
+ actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
899
+ actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
900
+ railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app'
901
+ railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call'
902
+ activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
903
+ activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged'
904
+ activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged'
905
+ railties (4.2.1) lib/rails/rack/logger.rb:20:in `call'
906
+ actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
907
+ rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
908
+ rack (1.6.0) lib/rack/runtime.rb:18:in `call'
909
+ activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
910
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
911
+ actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call'
912
+ rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
913
+ railties (4.2.1) lib/rails/engine.rb:518:in `call'
914
+ railties (4.2.1) lib/rails/application.rb:164:in `call'
915
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
916
+ rack (1.6.0) lib/rack/content_length.rb:15:in `call'
917
+ rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
918
+ D:/Ruby200p451x32/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
919
+ D:/Ruby200p451x32/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
920
+ D:/Ruby200p451x32/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
921
+
922
+
923
+ Rendered D:/Ruby200p451x32/lib/ruby/gems/2.0.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (14.0ms)
924
+ Rendered D:/Ruby200p451x32/lib/ruby/gems/2.0.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.0ms)
925
+ Rendered D:/Ruby200p451x32/lib/ruby/gems/2.0.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.0ms)
926
+ Rendered D:/Ruby200p451x32/lib/ruby/gems/2.0.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.0ms)
927
+ Rendered D:/Ruby200p451x32/lib/ruby/gems/2.0.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.0ms)
928
+ Rendered D:/Ruby200p451x32/lib/ruby/gems/2.0.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (88.0ms)
929
+
930
+
931
+ Started GET "/debug/index" for 127.0.0.1 at 2015-04-04 01:36:54 +0300
932
+ Processing by DebugController#index as HTML
933
+ Rendered W:/myrails/mygems/callback_request_bootstrap/app/views/callback_request_bootstrap/requests/_modal.html.erb (0.0ms)
934
+ Rendered W:/myrails/mygems/callback_request_bootstrap/app/views/callback_request_bootstrap/requests/_js_modal.html.erb (3.0ms)
935
+ Rendered debug/index.html.erb within layouts/application (6.0ms)
936
+ Completed 200 OK in 116ms (Views: 116.0ms | ActiveRecord: 0.0ms)
937
+
938
+
939
+ Started GET "/assets/jquery_ujs-e27bd20a10d28155845a22d71ef94f2f.js?body=1" for 127.0.0.1 at 2015-04-04 01:36:55 +0300
940
+
941
+
942
+ Started GET "/assets/jquery-2.1.3.min-081439c47c59b5a03e286d1fbbd00553.js?body=1" for 127.0.0.1 at 2015-04-04 01:36:55 +0300
943
+
944
+
945
+ Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-04-04 01:36:55 +0300
946
+
947
+
948
+ Started GET "/assets/application-b8186a4a5f2ceafc0e3ec24e6a8769db.css?body=1" for 127.0.0.1 at 2015-04-04 01:36:55 +0300
949
+
950
+
951
+ Started GET "/assets/application-cdf0d2fe55534695da80231db2809a80.js?body=1" for 127.0.0.1 at 2015-04-04 01:36:55 +0300
952
+
953
+
954
+ Started GET "/callback/requests/new?modal=1" for 127.0.0.1 at 2015-04-04 01:36:56 +0300
955
+ Processing by CallbackRequestBootstrap::RequestsController#new as */*
956
+ Parameters: {"modal"=>"1"}
957
+ Rendered W:/myrails/mygems/callback_request_bootstrap/app/views/callback_request_bootstrap/requests/_form.simple_form.html.erb (3.0ms)
958
+ Rendered W:/myrails/mygems/callback_request_bootstrap/app/views/callback_request_bootstrap/requests/new.html.erb (13.0ms)
959
+ Completed 200 OK in 24ms (Views: 24.0ms | ActiveRecord: 0.0ms)
960
+
961
+
962
+ Started POST "/callback/requests" for 127.0.0.1 at 2015-04-04 01:36:58 +0300
963
+ Processing by CallbackRequestBootstrap::RequestsController#create as JS
964
+ Parameters: {"utf8"=>"✓", "modal"=>"1", "request"=>{"name"=>"4", "phone"=>"4", "notes"=>"4"}, "commit"=>"Отправить"}
965
+  (0.0ms) BEGIN
966
+ SQL (33.0ms) INSERT INTO `requests` (`name`, `phone`, `notes`, `created_at`, `updated_at`) VALUES ('4', '4', '4', '2015-04-03 22:36:58', '2015-04-03 22:36:58')
967
+  (2.0ms) COMMIT
968
+ Rendered W:/myrails/mygems/callback_request_bootstrap/app/views/callback_request_bootstrap/requests/_create_result.html.erb (0.0ms)
969
+ Rendered W:/myrails/mygems/callback_request_bootstrap/app/views/callback_request_bootstrap/requests/create.js.erb (2.0ms)
970
+ Completed 200 OK in 64ms (Views: 18.0ms | ActiveRecord: 35.0ms)
971
+
972
+
973
+ Started GET "/debug/index?class=btn" for 127.0.0.1 at 2015-04-04 01:37:18 +0300
974
+ Processing by DebugController#index as HTML
975
+ Parameters: {"class"=>"btn"}
976
+ Rendered W:/myrails/mygems/callback_request_bootstrap/app/views/callback_request_bootstrap/requests/_modal.html.erb (0.0ms)
977
+ Rendered W:/myrails/mygems/callback_request_bootstrap/app/views/callback_request_bootstrap/requests/_js_modal.html.erb (2.0ms)
978
+ Rendered debug/index.html.erb within layouts/application (5.0ms)
979
+ Completed 200 OK in 112ms (Views: 112.0ms | ActiveRecord: 0.0ms)
980
+
981
+
982
+ Started GET "/assets/application-b8186a4a5f2ceafc0e3ec24e6a8769db.css?body=1" for 127.0.0.1 at 2015-04-04 01:37:18 +0300
983
+
984
+
985
+ Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-04-04 01:37:18 +0300
986
+
987
+
988
+ Started GET "/assets/application-cdf0d2fe55534695da80231db2809a80.js?body=1" for 127.0.0.1 at 2015-04-04 01:37:18 +0300
989
+
990
+
991
+ Started GET "/assets/jquery_ujs-e27bd20a10d28155845a22d71ef94f2f.js?body=1" for 127.0.0.1 at 2015-04-04 01:37:18 +0300
992
+
993
+
994
+ Started GET "/assets/jquery-2.1.3.min-081439c47c59b5a03e286d1fbbd00553.js?body=1" for 127.0.0.1 at 2015-04-04 01:37:18 +0300
995
+
996
+
997
+ Started GET "/debug/index?class=btn" for 127.0.0.1 at 2015-04-04 01:40:24 +0300
998
+ ActiveRecord::SchemaMigration Load (1.0ms) SELECT `schema_migrations`.* FROM `schema_migrations`
999
+ Processing by DebugController#index as HTML
1000
+ Parameters: {"class"=>"btn"}
1001
+ Rendered W:/myrails/mygems/callback_request_bootstrap/app/views/callback_request_bootstrap/requests/_modal.html.erb (14.0ms)
1002
+ Rendered W:/myrails/mygems/callback_request_bootstrap/app/views/callback_request_bootstrap/requests/_js_modal.html.erb (21.0ms)
1003
+ Rendered debug/index.html.erb within layouts/application (57.0ms)
1004
+ Completed 200 OK in 248ms (Views: 248.0ms | ActiveRecord: 0.0ms)
1005
+
1006
+
1007
+ Started GET "/assets/application-b8186a4a5f2ceafc0e3ec24e6a8769db.css?body=1" for 127.0.0.1 at 2015-04-04 01:40:24 +0300
1008
+
1009
+
1010
+ Started GET "/assets/jquery_ujs-e27bd20a10d28155845a22d71ef94f2f.js?body=1" for 127.0.0.1 at 2015-04-04 01:40:24 +0300
1011
+
1012
+
1013
+ Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-04-04 01:40:24 +0300
1014
+
1015
+
1016
+ Started GET "/assets/jquery-2.1.3.min-081439c47c59b5a03e286d1fbbd00553.js?body=1" for 127.0.0.1 at 2015-04-04 01:40:24 +0300
1017
+
1018
+
1019
+ Started GET "/assets/application-cdf0d2fe55534695da80231db2809a80.js?body=1" for 127.0.0.1 at 2015-04-04 01:40:24 +0300
1020
+
1021
+
1022
+ Started GET "/callback/requests/new?modal=1" for 127.0.0.1 at 2015-04-04 01:40:29 +0300
1023
+ Processing by CallbackRequestBootstrap::RequestsController#new as */*
1024
+ Parameters: {"modal"=>"1"}
1025
+ Rendered W:/myrails/mygems/callback_request_bootstrap/app/views/callback_request_bootstrap/requests/_form.simple_form.html.erb (120.0ms)
1026
+ Rendered W:/myrails/mygems/callback_request_bootstrap/app/views/callback_request_bootstrap/requests/new.html.erb (137.0ms)
1027
+ Completed 200 OK in 176ms (Views: 152.0ms | ActiveRecord: 10.0ms)
1028
+
1029
+
1030
+ Started POST "/callback/requests" for 127.0.0.1 at 2015-04-04 01:40:32 +0300
1031
+ Processing by CallbackRequestBootstrap::RequestsController#create as JS
1032
+ Parameters: {"utf8"=>"✓", "modal"=>"1", "request"=>{"name"=>"5", "phone"=>"5", "notes"=>"5"}, "commit"=>"Send request"}
1033
+  (0.0ms) BEGIN
1034
+ SQL (1.0ms) INSERT INTO `requests` (`name`, `phone`, `notes`, `created_at`, `updated_at`) VALUES ('5', '5', '5', '2015-04-03 22:40:32', '2015-04-03 22:40:32')
1035
+  (143.0ms) COMMIT
1036
+ Rendered W:/myrails/mygems/callback_request_bootstrap/app/views/callback_request_bootstrap/requests/_create_result.html.erb (2.0ms)
1037
+ Rendered W:/myrails/mygems/callback_request_bootstrap/app/views/callback_request_bootstrap/requests/create.js.erb (5.0ms)
1038
+ Completed 200 OK in 159ms (Views: 11.0ms | ActiveRecord: 144.0ms)
1039
+
1040
+
1041
+ Started GET "/debug/index" for 127.0.0.1 at 2015-04-04 01:40:36 +0300
1042
+ Processing by DebugController#index as HTML
1043
+ Rendered W:/myrails/mygems/callback_request_bootstrap/app/views/callback_request_bootstrap/requests/_modal.html.erb (0.0ms)
1044
+ Rendered W:/myrails/mygems/callback_request_bootstrap/app/views/callback_request_bootstrap/requests/_js_modal.html.erb (3.0ms)
1045
+ Rendered debug/index.html.erb within layouts/application (5.0ms)
1046
+ Completed 200 OK in 116ms (Views: 115.0ms | ActiveRecord: 0.0ms)
1047
+
1048
+
1049
+ Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-04-04 01:40:36 +0300
1050
+
1051
+
1052
+ Started GET "/assets/jquery_ujs-e27bd20a10d28155845a22d71ef94f2f.js?body=1" for 127.0.0.1 at 2015-04-04 01:40:36 +0300
1053
+
1054
+
1055
+ Started GET "/assets/jquery-2.1.3.min-081439c47c59b5a03e286d1fbbd00553.js?body=1" for 127.0.0.1 at 2015-04-04 01:40:36 +0300
1056
+
1057
+
1058
+ Started GET "/assets/application-cdf0d2fe55534695da80231db2809a80.js?body=1" for 127.0.0.1 at 2015-04-04 01:40:36 +0300
1059
+
1060
+
1061
+ Started GET "/assets/application-b8186a4a5f2ceafc0e3ec24e6a8769db.css?body=1" for 127.0.0.1 at 2015-04-04 01:40:36 +0300
1062
+
1063
+
1064
+ Started GET "/callback/requests/new?modal=1" for 127.0.0.1 at 2015-04-04 01:40:37 +0300
1065
+ Processing by CallbackRequestBootstrap::RequestsController#new as */*
1066
+ Parameters: {"modal"=>"1"}
1067
+ Rendered W:/myrails/mygems/callback_request_bootstrap/app/views/callback_request_bootstrap/requests/_form.simple_form.html.erb (3.0ms)
1068
+ Rendered W:/myrails/mygems/callback_request_bootstrap/app/views/callback_request_bootstrap/requests/new.html.erb (15.0ms)
1069
+ Completed 200 OK in 26ms (Views: 26.0ms | ActiveRecord: 0.0ms)
1070
+
1071
+
1072
+ Started GET "/debug/index" for 127.0.0.1 at 2015-04-04 01:52:25 +0300
1073
+ Processing by DebugController#index as HTML
1074
+ Rendered W:/myrails/mygems/callback_request_bootstrap/app/views/callback_request_bootstrap/requests/_modal.html.erb (0.0ms)
1075
+ Rendered W:/myrails/mygems/callback_request_bootstrap/app/views/callback_request_bootstrap/requests/_js_modal.html.erb (4.0ms)
1076
+ Rendered debug/index.html.erb within layouts/application (6.0ms)
1077
+ Completed 200 OK in 121ms (Views: 120.0ms | ActiveRecord: 0.0ms)
1078
+
1079
+
1080
+ Started GET "/assets/application-b8186a4a5f2ceafc0e3ec24e6a8769db.css?body=1" for 127.0.0.1 at 2015-04-04 01:52:25 +0300
1081
+
1082
+
1083
+ Started GET "/assets/application-cdf0d2fe55534695da80231db2809a80.js?body=1" for 127.0.0.1 at 2015-04-04 01:52:25 +0300
1084
+
1085
+
1086
+ Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-04-04 01:52:25 +0300
1087
+
1088
+
1089
+ Started GET "/assets/jquery-2.1.3.min-081439c47c59b5a03e286d1fbbd00553.js?body=1" for 127.0.0.1 at 2015-04-04 01:52:25 +0300
1090
+
1091
+
1092
+ Started GET "/assets/jquery_ujs-e27bd20a10d28155845a22d71ef94f2f.js?body=1" for 127.0.0.1 at 2015-04-04 01:52:25 +0300
1093
+
1094
+
1095
+ Started GET "/callback/requests/new?modal=1&autoclose=0" for 127.0.0.1 at 2015-04-04 01:52:27 +0300
1096
+ Processing by CallbackRequestBootstrap::RequestsController#new as */*
1097
+ Parameters: {"modal"=>"1", "autoclose"=>"0"}
1098
+ Rendered W:/myrails/mygems/callback_request_bootstrap/app/views/callback_request_bootstrap/requests/_form.simple_form.html.erb (4.0ms)
1099
+ Rendered W:/myrails/mygems/callback_request_bootstrap/app/views/callback_request_bootstrap/requests/new.html.erb (17.0ms)
1100
+ Completed 200 OK in 50ms (Views: 28.0ms | ActiveRecord: 11.0ms)
1101
+
1102
+
1103
+ Started POST "/callback/requests" for 127.0.0.1 at 2015-04-04 01:52:31 +0300
1104
+ Processing by CallbackRequestBootstrap::RequestsController#create as JS
1105
+ Parameters: {"utf8"=>"✓", "modal"=>"1", "request"=>{"name"=>"3", "phone"=>"3", "notes"=>"3"}, "commit"=>"Send request"}
1106
+  (0.0ms) BEGIN
1107
+ SQL (49.0ms) INSERT INTO `requests` (`name`, `phone`, `notes`, `created_at`, `updated_at`) VALUES ('3', '3', '3', '2015-04-03 22:52:31', '2015-04-03 22:52:31')
1108
+  (2.0ms) COMMIT
1109
+ Rendered W:/myrails/mygems/callback_request_bootstrap/app/views/callback_request_bootstrap/requests/_create_result.html.erb (0.0ms)
1110
+ Rendered W:/myrails/mygems/callback_request_bootstrap/app/views/callback_request_bootstrap/requests/create.js.erb (3.0ms)
1111
+ Completed 200 OK in 66ms (Views: 8.0ms | ActiveRecord: 51.0ms)
1112
+
1113
+
1114
+ Started GET "/debug/index" for 127.0.0.1 at 2015-04-04 01:53:38 +0300
1115
+ Processing by DebugController#index as HTML
1116
+ Rendered W:/myrails/mygems/callback_request_bootstrap/app/views/callback_request_bootstrap/requests/_modal.html.erb (0.0ms)
1117
+ Rendered W:/myrails/mygems/callback_request_bootstrap/app/views/callback_request_bootstrap/requests/_js_modal.html.erb (3.0ms)
1118
+ Rendered debug/index.html.erb within layouts/application (6.0ms)
1119
+ Completed 200 OK in 119ms (Views: 119.0ms | ActiveRecord: 0.0ms)
1120
+
1121
+
1122
+ Started GET "/assets/jquery-2.1.3.min-081439c47c59b5a03e286d1fbbd00553.js?body=1" for 127.0.0.1 at 2015-04-04 01:53:38 +0300
1123
+
1124
+
1125
+ Started GET "/assets/application-b8186a4a5f2ceafc0e3ec24e6a8769db.css?body=1" for 127.0.0.1 at 2015-04-04 01:53:38 +0300
1126
+
1127
+
1128
+ Started GET "/assets/jquery_ujs-e27bd20a10d28155845a22d71ef94f2f.js?body=1" for 127.0.0.1 at 2015-04-04 01:53:38 +0300
1129
+
1130
+
1131
+ Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-04-04 01:53:38 +0300
1132
+
1133
+
1134
+ Started GET "/assets/application-cdf0d2fe55534695da80231db2809a80.js?body=1" for 127.0.0.1 at 2015-04-04 01:53:38 +0300
1135
+
1136
+
1137
+ Started GET "/callback/requests/new?modal=1&autoclose=0" for 127.0.0.1 at 2015-04-04 01:53:40 +0300
1138
+ Processing by CallbackRequestBootstrap::RequestsController#new as */*
1139
+ Parameters: {"modal"=>"1", "autoclose"=>"0"}
1140
+ Rendered W:/myrails/mygems/callback_request_bootstrap/app/views/callback_request_bootstrap/requests/_form.simple_form.html.erb (3.0ms)
1141
+ Rendered W:/myrails/mygems/callback_request_bootstrap/app/views/callback_request_bootstrap/requests/new.html.erb (14.0ms)
1142
+ Completed 200 OK in 26ms (Views: 26.0ms | ActiveRecord: 0.0ms)
1143
+
1144
+
1145
+ Started GET "/debug/index" for 127.0.0.1 at 2015-04-04 01:54:24 +0300
1146
+ Processing by DebugController#index as HTML
1147
+ Rendered W:/myrails/mygems/callback_request_bootstrap/app/views/callback_request_bootstrap/requests/_modal.html.erb (0.0ms)
1148
+ Rendered W:/myrails/mygems/callback_request_bootstrap/app/views/callback_request_bootstrap/requests/_js_modal.html.erb (2.0ms)
1149
+ Rendered debug/index.html.erb within layouts/application (6.0ms)
1150
+ Completed 200 OK in 91ms (Views: 90.0ms | ActiveRecord: 0.0ms)
1151
+
1152
+
1153
+ Started GET "/assets/application-b8186a4a5f2ceafc0e3ec24e6a8769db.css?body=1" for 127.0.0.1 at 2015-04-04 01:54:24 +0300
1154
+
1155
+
1156
+ Started GET "/assets/jquery-2.1.3.min-081439c47c59b5a03e286d1fbbd00553.js?body=1" for 127.0.0.1 at 2015-04-04 01:54:24 +0300
1157
+
1158
+
1159
+ Started GET "/assets/jquery_ujs-e27bd20a10d28155845a22d71ef94f2f.js?body=1" for 127.0.0.1 at 2015-04-04 01:54:24 +0300
1160
+
1161
+
1162
+ Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-04-04 01:54:24 +0300
1163
+
1164
+
1165
+ Started GET "/assets/application-cdf0d2fe55534695da80231db2809a80.js?body=1" for 127.0.0.1 at 2015-04-04 01:54:24 +0300
1166
+
1167
+
1168
+ Started GET "/debug/index" for 127.0.0.1 at 2015-04-04 01:54:30 +0300
1169
+ Processing by DebugController#index as HTML
1170
+ Rendered W:/myrails/mygems/callback_request_bootstrap/app/views/callback_request_bootstrap/requests/_modal.html.erb (0.0ms)
1171
+ Rendered W:/myrails/mygems/callback_request_bootstrap/app/views/callback_request_bootstrap/requests/_js_modal.html.erb (2.0ms)
1172
+ Rendered debug/index.html.erb within layouts/application (6.0ms)
1173
+ Completed 200 OK in 132ms (Views: 131.0ms | ActiveRecord: 0.0ms)
1174
+
1175
+
1176
+ Started GET "/assets/application-b8186a4a5f2ceafc0e3ec24e6a8769db.css?body=1" for 127.0.0.1 at 2015-04-04 01:54:31 +0300
1177
+
1178
+
1179
+ Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-04-04 01:54:31 +0300
1180
+
1181
+
1182
+ Started GET "/assets/jquery-2.1.3.min-081439c47c59b5a03e286d1fbbd00553.js?body=1" for 127.0.0.1 at 2015-04-04 01:54:31 +0300
1183
+
1184
+
1185
+ Started GET "/assets/application-cdf0d2fe55534695da80231db2809a80.js?body=1" for 127.0.0.1 at 2015-04-04 01:54:31 +0300
1186
+
1187
+
1188
+ Started GET "/assets/jquery_ujs-e27bd20a10d28155845a22d71ef94f2f.js?body=1" for 127.0.0.1 at 2015-04-04 01:54:31 +0300
1189
+
1190
+
1191
+ Started GET "/debug/index" for 127.0.0.1 at 2015-04-04 01:54:47 +0300
1192
+ Processing by DebugController#index as HTML
1193
+ Rendered W:/myrails/mygems/callback_request_bootstrap/app/views/callback_request_bootstrap/requests/_modal.html.erb (0.0ms)
1194
+ Rendered W:/myrails/mygems/callback_request_bootstrap/app/views/callback_request_bootstrap/requests/_js_modal.html.erb (3.0ms)
1195
+ Rendered debug/index.html.erb within layouts/application (6.0ms)
1196
+ Completed 200 OK in 122ms (Views: 122.0ms | ActiveRecord: 0.0ms)
1197
+
1198
+
1199
+ Started GET "/assets/jquery-2.1.3.min-081439c47c59b5a03e286d1fbbd00553.js?body=1" for 127.0.0.1 at 2015-04-04 01:54:47 +0300
1200
+
1201
+
1202
+ Started GET "/assets/jquery_ujs-e27bd20a10d28155845a22d71ef94f2f.js?body=1" for 127.0.0.1 at 2015-04-04 01:54:47 +0300
1203
+
1204
+
1205
+ Started GET "/assets/application-cdf0d2fe55534695da80231db2809a80.js?body=1" for 127.0.0.1 at 2015-04-04 01:54:47 +0300
1206
+
1207
+
1208
+ Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-04-04 01:54:47 +0300
1209
+
1210
+
1211
+ Started GET "/assets/application-b8186a4a5f2ceafc0e3ec24e6a8769db.css?body=1" for 127.0.0.1 at 2015-04-04 01:54:47 +0300
1212
+
1213
+
1214
+ Started GET "/debug/index" for 127.0.0.1 at 2015-04-04 01:55:13 +0300
1215
+ Processing by DebugController#index as HTML
1216
+ Rendered W:/myrails/mygems/callback_request_bootstrap/app/views/callback_request_bootstrap/requests/_modal.html.erb (1.0ms)
1217
+ Rendered W:/myrails/mygems/callback_request_bootstrap/app/views/callback_request_bootstrap/requests/_js_modal.html.erb (4.0ms)
1218
+ Rendered debug/index.html.erb within layouts/application (8.0ms)
1219
+ Completed 200 OK in 190ms (Views: 190.0ms | ActiveRecord: 0.0ms)
1220
+
1221
+
1222
+ Started GET "/assets/jquery_ujs-e27bd20a10d28155845a22d71ef94f2f.js?body=1" for 127.0.0.1 at 2015-04-04 01:55:13 +0300
1223
+
1224
+
1225
+ Started GET "/assets/application-cdf0d2fe55534695da80231db2809a80.js?body=1" for 127.0.0.1 at 2015-04-04 01:55:13 +0300
1226
+
1227
+
1228
+ Started GET "/assets/jquery-2.1.3.min-081439c47c59b5a03e286d1fbbd00553.js?body=1" for 127.0.0.1 at 2015-04-04 01:55:13 +0300
1229
+
1230
+
1231
+ Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-04-04 01:55:13 +0300
1232
+
1233
+
1234
+ Started GET "/assets/application-b8186a4a5f2ceafc0e3ec24e6a8769db.css?body=1" for 127.0.0.1 at 2015-04-04 01:55:13 +0300
1235
+
1236
+
1237
+ Started GET "/debug/index" for 127.0.0.1 at 2015-04-04 01:55:26 +0300
1238
+ Processing by DebugController#index as HTML
1239
+ Rendered W:/myrails/mygems/callback_request_bootstrap/app/views/callback_request_bootstrap/requests/_modal.html.erb (0.0ms)
1240
+ Rendered W:/myrails/mygems/callback_request_bootstrap/app/views/callback_request_bootstrap/requests/_js_modal.html.erb (3.0ms)
1241
+ Rendered debug/index.html.erb within layouts/application (5.0ms)
1242
+ Completed 200 OK in 112ms (Views: 112.0ms | ActiveRecord: 0.0ms)
1243
+
1244
+
1245
+ Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-04-04 01:55:26 +0300
1246
+
1247
+
1248
+ Started GET "/assets/jquery-2.1.3.min-081439c47c59b5a03e286d1fbbd00553.js?body=1" for 127.0.0.1 at 2015-04-04 01:55:26 +0300
1249
+
1250
+
1251
+ Started GET "/assets/jquery_ujs-e27bd20a10d28155845a22d71ef94f2f.js?body=1" for 127.0.0.1 at 2015-04-04 01:55:26 +0300
1252
+
1253
+
1254
+ Started GET "/assets/application-cdf0d2fe55534695da80231db2809a80.js?body=1" for 127.0.0.1 at 2015-04-04 01:55:26 +0300
1255
+
1256
+
1257
+ Started GET "/assets/application-b8186a4a5f2ceafc0e3ec24e6a8769db.css?body=1" for 127.0.0.1 at 2015-04-04 01:55:26 +0300
1258
+
1259
+
1260
+ Started GET "/callback/requests/new?modal=1&autoclose=0" for 127.0.0.1 at 2015-04-04 01:55:28 +0300
1261
+ Processing by CallbackRequestBootstrap::RequestsController#new as */*
1262
+ Parameters: {"modal"=>"1", "autoclose"=>"0"}
1263
+ Rendered W:/myrails/mygems/callback_request_bootstrap/app/views/callback_request_bootstrap/requests/_form.simple_form.html.erb (3.0ms)
1264
+ Rendered W:/myrails/mygems/callback_request_bootstrap/app/views/callback_request_bootstrap/requests/new.html.erb (16.0ms)
1265
+ Completed 200 OK in 29ms (Views: 29.0ms | ActiveRecord: 0.0ms)
1266
+
1267
+
1268
+ Started GET "/debug/index" for 127.0.0.1 at 2015-04-04 01:55:40 +0300
1269
+ Processing by DebugController#index as HTML
1270
+ Rendered W:/myrails/mygems/callback_request_bootstrap/app/views/callback_request_bootstrap/requests/_modal.html.erb (0.0ms)
1271
+ Rendered W:/myrails/mygems/callback_request_bootstrap/app/views/callback_request_bootstrap/requests/_js_modal.html.erb (3.0ms)
1272
+ Rendered debug/index.html.erb within layouts/application (5.0ms)
1273
+ Completed 200 OK in 137ms (Views: 137.0ms | ActiveRecord: 0.0ms)
1274
+
1275
+
1276
+ Started GET "/assets/jquery-2.1.3.min-081439c47c59b5a03e286d1fbbd00553.js?body=1" for 127.0.0.1 at 2015-04-04 01:55:41 +0300
1277
+
1278
+
1279
+ Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-04-04 01:55:41 +0300
1280
+
1281
+
1282
+ Started GET "/assets/application-cdf0d2fe55534695da80231db2809a80.js?body=1" for 127.0.0.1 at 2015-04-04 01:55:41 +0300
1283
+
1284
+
1285
+ Started GET "/assets/application-b8186a4a5f2ceafc0e3ec24e6a8769db.css?body=1" for 127.0.0.1 at 2015-04-04 01:55:41 +0300
1286
+
1287
+
1288
+ Started GET "/assets/jquery_ujs-e27bd20a10d28155845a22d71ef94f2f.js?body=1" for 127.0.0.1 at 2015-04-04 01:55:41 +0300
1289
+
1290
+
1291
+ Started GET "/callback/requests/new?modal=1&autoclose=5" for 127.0.0.1 at 2015-04-04 01:55:44 +0300
1292
+ Processing by CallbackRequestBootstrap::RequestsController#new as */*
1293
+ Parameters: {"modal"=>"1", "autoclose"=>"5"}
1294
+ Rendered W:/myrails/mygems/callback_request_bootstrap/app/views/callback_request_bootstrap/requests/_form.simple_form.html.erb (3.0ms)
1295
+ Rendered W:/myrails/mygems/callback_request_bootstrap/app/views/callback_request_bootstrap/requests/new.html.erb (14.0ms)
1296
+ Completed 200 OK in 26ms (Views: 25.0ms | ActiveRecord: 0.0ms)
1297
+
1298
+
1299
+ Started POST "/callback/requests" for 127.0.0.1 at 2015-04-04 01:55:51 +0300
1300
+ Processing by CallbackRequestBootstrap::RequestsController#create as JS
1301
+ Parameters: {"utf8"=>"✓", "modal"=>"1", "request"=>{"name"=>"9", "phone"=>"9", "notes"=>"9"}, "commit"=>"Send request"}
1302
+  (0.0ms) BEGIN
1303
+ SQL (38.0ms) INSERT INTO `requests` (`name`, `phone`, `notes`, `created_at`, `updated_at`) VALUES ('9', '9', '9', '2015-04-03 22:55:51', '2015-04-03 22:55:51')
1304
+  (2.0ms) COMMIT
1305
+ Rendered W:/myrails/mygems/callback_request_bootstrap/app/views/callback_request_bootstrap/requests/_create_result.html.erb (0.0ms)
1306
+ Rendered W:/myrails/mygems/callback_request_bootstrap/app/views/callback_request_bootstrap/requests/create.js.erb (3.0ms)
1307
+ Completed 200 OK in 54ms (Views: 9.0ms | ActiveRecord: 40.0ms)
1308
+
1309
+
1310
+ Started GET "/debug/index" for 127.0.0.1 at 2015-04-04 01:56:07 +0300
1311
+ Processing by DebugController#index as HTML
1312
+ Rendered W:/myrails/mygems/callback_request_bootstrap/app/views/callback_request_bootstrap/requests/_modal.html.erb (0.0ms)
1313
+ Rendered W:/myrails/mygems/callback_request_bootstrap/app/views/callback_request_bootstrap/requests/_js_modal.html.erb (3.0ms)
1314
+ Rendered debug/index.html.erb within layouts/application (5.0ms)
1315
+ Completed 200 OK in 112ms (Views: 112.0ms | ActiveRecord: 0.0ms)
1316
+
1317
+
1318
+ Started GET "/assets/application-b8186a4a5f2ceafc0e3ec24e6a8769db.css?body=1" for 127.0.0.1 at 2015-04-04 01:56:07 +0300
1319
+
1320
+
1321
+ Started GET "/assets/application-cdf0d2fe55534695da80231db2809a80.js?body=1" for 127.0.0.1 at 2015-04-04 01:56:07 +0300
1322
+
1323
+
1324
+ Started GET "/assets/jquery_ujs-e27bd20a10d28155845a22d71ef94f2f.js?body=1" for 127.0.0.1 at 2015-04-04 01:56:07 +0300
1325
+
1326
+
1327
+ Started GET "/assets/jquery-2.1.3.min-081439c47c59b5a03e286d1fbbd00553.js?body=1" for 127.0.0.1 at 2015-04-04 01:56:07 +0300
1328
+
1329
+
1330
+ Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-04-04 01:56:07 +0300
1331
+
1332
+
1333
+ Started GET "/callback/requests/new?modal=1&autoclose=5" for 127.0.0.1 at 2015-04-04 01:56:09 +0300
1334
+ Processing by CallbackRequestBootstrap::RequestsController#new as */*
1335
+ Parameters: {"modal"=>"1", "autoclose"=>"5"}
1336
+ Rendered W:/myrails/mygems/callback_request_bootstrap/app/views/callback_request_bootstrap/requests/_form.simple_form.html.erb (3.0ms)
1337
+ Rendered W:/myrails/mygems/callback_request_bootstrap/app/views/callback_request_bootstrap/requests/new.html.erb (15.0ms)
1338
+ Completed 200 OK in 26ms (Views: 25.0ms | ActiveRecord: 0.0ms)
1339
+
1340
+
1341
+ Started POST "/callback/requests" for 127.0.0.1 at 2015-04-04 01:56:13 +0300
1342
+ Processing by CallbackRequestBootstrap::RequestsController#create as JS
1343
+ Parameters: {"utf8"=>"✓", "modal"=>"1", "request"=>{"name"=>"8", "phone"=>"8", "notes"=>"8"}, "commit"=>"Send request"}
1344
+  (0.0ms) BEGIN
1345
+ SQL (1.0ms) INSERT INTO `requests` (`name`, `phone`, `notes`, `created_at`, `updated_at`) VALUES ('8', '8', '8', '2015-04-03 22:56:13', '2015-04-03 22:56:13')
1346
+  (1.0ms) COMMIT
1347
+ Rendered W:/myrails/mygems/callback_request_bootstrap/app/views/callback_request_bootstrap/requests/_create_result.html.erb (0.0ms)
1348
+ Rendered W:/myrails/mygems/callback_request_bootstrap/app/views/callback_request_bootstrap/requests/create.js.erb (4.0ms)
1349
+ Completed 200 OK in 16ms (Views: 9.0ms | ActiveRecord: 2.0ms)
1350
+
1351
+
1352
+ Started GET "/callback/requests/new?modal=1&autoclose=5" for 127.0.0.1 at 2015-04-04 01:56:37 +0300
1353
+ Processing by CallbackRequestBootstrap::RequestsController#new as */*
1354
+ Parameters: {"modal"=>"1", "autoclose"=>"5"}
1355
+ Rendered W:/myrails/mygems/callback_request_bootstrap/app/views/callback_request_bootstrap/requests/_form.simple_form.html.erb (3.0ms)
1356
+ Rendered W:/myrails/mygems/callback_request_bootstrap/app/views/callback_request_bootstrap/requests/new.html.erb (13.0ms)
1357
+ Completed 200 OK in 26ms (Views: 25.0ms | ActiveRecord: 0.0ms)
1358
+
1359
+
1360
+ Started POST "/callback/requests" for 127.0.0.1 at 2015-04-04 01:56:41 +0300
1361
+ Processing by CallbackRequestBootstrap::RequestsController#create as JS
1362
+ Parameters: {"utf8"=>"✓", "modal"=>"1", "request"=>{"name"=>"8", "phone"=>"8", "notes"=>"8"}, "commit"=>"Send request"}
1363
+  (0.0ms) BEGIN
1364
+ SQL (35.0ms) INSERT INTO `requests` (`name`, `phone`, `notes`, `created_at`, `updated_at`) VALUES ('8', '8', '8', '2015-04-03 22:57:10', '2015-04-03 22:57:10')
1365
+  (2.0ms) COMMIT
1366
+ Rendered W:/myrails/mygems/callback_request_bootstrap/app/views/callback_request_bootstrap/requests/_create_result.html.erb (1.0ms)
1367
+ Rendered W:/myrails/mygems/callback_request_bootstrap/app/views/callback_request_bootstrap/requests/create.js.erb (3.0ms)
1368
+ Completed 200 OK in 29191ms (Views: 22.0ms | ActiveRecord: 37.0ms)
1369
+
1370
+
1371
+ Started GET "/debug/index" for 127.0.0.1 at 2015-04-04 01:57:52 +0300
1372
+ Processing by DebugController#index as HTML
1373
+ Rendered W:/myrails/mygems/callback_request_bootstrap/app/views/callback_request_bootstrap/requests/_modal.html.erb (0.0ms)
1374
+ Rendered W:/myrails/mygems/callback_request_bootstrap/app/views/callback_request_bootstrap/requests/_js_modal.html.erb (3.0ms)
1375
+ Rendered debug/index.html.erb within layouts/application (5.0ms)
1376
+ Completed 200 OK in 89ms (Views: 89.0ms | ActiveRecord: 0.0ms)
1377
+
1378
+
1379
+ Started GET "/assets/application-b8186a4a5f2ceafc0e3ec24e6a8769db.css?body=1" for 127.0.0.1 at 2015-04-04 01:57:52 +0300
1380
+
1381
+
1382
+ Started GET "/assets/jquery-2.1.3.min-081439c47c59b5a03e286d1fbbd00553.js?body=1" for 127.0.0.1 at 2015-04-04 01:57:52 +0300
1383
+
1384
+
1385
+ Started GET "/assets/jquery_ujs-e27bd20a10d28155845a22d71ef94f2f.js?body=1" for 127.0.0.1 at 2015-04-04 01:57:52 +0300
1386
+
1387
+
1388
+ Started GET "/assets/bootstrap/modal-77a0e72df31a788e4f6a3f28370eb69e.js?body=1" for 127.0.0.1 at 2015-04-04 01:57:52 +0300
1389
+
1390
+
1391
+ Started GET "/assets/application-cdf0d2fe55534695da80231db2809a80.js?body=1" for 127.0.0.1 at 2015-04-04 01:57:52 +0300
1392
+
1393
+
1394
+ Started GET "/callback/requests/new?modal=1&autoclose=5" for 127.0.0.1 at 2015-04-04 01:57:54 +0300
1395
+ Processing by CallbackRequestBootstrap::RequestsController#new as */*
1396
+ Parameters: {"modal"=>"1", "autoclose"=>"5"}
1397
+ Rendered W:/myrails/mygems/callback_request_bootstrap/app/views/callback_request_bootstrap/requests/_form.simple_form.html.erb (5.0ms)
1398
+ Rendered W:/myrails/mygems/callback_request_bootstrap/app/views/callback_request_bootstrap/requests/new.html.erb (16.0ms)
1399
+ Completed 200 OK in 49ms (Views: 30.0ms | ActiveRecord: 8.0ms)
1400
+
1401
+
1402
+ Started POST "/callback/requests" for 127.0.0.1 at 2015-04-04 01:57:57 +0300
1403
+ Processing by CallbackRequestBootstrap::RequestsController#create as JS
1404
+ Parameters: {"utf8"=>"✓", "modal"=>"1", "autoclose"=>"5", "request"=>{"name"=>"8", "phone"=>"8", "notes"=>"8"}, "commit"=>"Send request"}
1405
+  (2.0ms) BEGIN
1406
+ SQL (1.0ms) INSERT INTO `requests` (`name`, `phone`, `notes`, `created_at`, `updated_at`) VALUES ('8', '8', '8', '2015-04-03 22:58:02', '2015-04-03 22:58:02')
1407
+  (6.0ms) COMMIT
1408
+ Rendered W:/myrails/mygems/callback_request_bootstrap/app/views/callback_request_bootstrap/requests/_create_result.html.erb (0.0ms)
1409
+ Rendered W:/myrails/mygems/callback_request_bootstrap/app/views/callback_request_bootstrap/requests/create.js.erb (44.0ms)
1410
+ Completed 500 Internal Server Error in 5028ms (ActiveRecord: 9.0ms)
1411
+
1412
+ ActionView::Template::Error (comparison of String with 0 failed):
1413
+ 1: $('#div_callback_request').html("<%= j (render 'callback_request_bootstrap/requests/create_result') %>");
1414
+ 2:
1415
+ 3: <% if @autoclose > 0 %>
1416
+ 4: setTimeout(function(){$('#modCallback').modal('hide');}, autoclose);
1417
+ 5: <% end %>
1418
+ 6:
1419
+ W:/myrails/mygems/callback_request_bootstrap/app/views/callback_request_bootstrap/requests/create.js.erb:3:in `>'
1420
+ W:/myrails/mygems/callback_request_bootstrap/app/views/callback_request_bootstrap/requests/create.js.erb:3:in `____myrails_mygems_callback_request_bootstrap_app_views_callback_request_bootstrap_requests_create_js_erb___791095889_40913760'
1421
+ actionview (4.2.1) lib/action_view/template.rb:145:in `block in render'
1422
+ activesupport (4.2.1) lib/active_support/notifications.rb:166:in `instrument'
1423
+ actionview (4.2.1) lib/action_view/template.rb:333:in `instrument'
1424
+ actionview (4.2.1) lib/action_view/template.rb:143:in `render'
1425
+ actionview (4.2.1) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template'
1426
+ actionview (4.2.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument'
1427
+ activesupport (4.2.1) lib/active_support/notifications.rb:164:in `block in instrument'
1428
+ activesupport (4.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1429
+ activesupport (4.2.1) lib/active_support/notifications.rb:164:in `instrument'
1430
+ actionview (4.2.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument'
1431
+ actionview (4.2.1) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template'
1432
+ actionview (4.2.1) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout'
1433
+ actionview (4.2.1) lib/action_view/renderer/template_renderer.rb:52:in `render_template'
1434
+ actionview (4.2.1) lib/action_view/renderer/template_renderer.rb:14:in `render'
1435
+ actionview (4.2.1) lib/action_view/renderer/renderer.rb:42:in `render_template'
1436
+ actionview (4.2.1) lib/action_view/renderer/renderer.rb:23:in `render'
1437
+ actionview (4.2.1) lib/action_view/rendering.rb:100:in `_render_template'
1438
+ actionpack (4.2.1) lib/action_controller/metal/streaming.rb:217:in `_render_template'
1439
+ actionview (4.2.1) lib/action_view/rendering.rb:83:in `render_to_body'
1440
+ actionpack (4.2.1) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
1441
+ actionpack (4.2.1) lib/action_controller/metal/renderers.rb:37:in `render_to_body'
1442
+ actionpack (4.2.1) lib/abstract_controller/rendering.rb:25:in `render'
1443
+ actionpack (4.2.1) lib/action_controller/metal/rendering.rb:16:in `render'
1444
+ actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render'
1445
+ activesupport (4.2.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
1446
+ D:/Ruby200p451x32/lib/ruby/2.0.0/benchmark.rb:296:in `realtime'
1447
+ activesupport (4.2.1) lib/active_support/core_ext/benchmark.rb:12:in `ms'
1448
+ actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:44:in `block in render'
1449
+ actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime'
1450
+ activerecord (4.2.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
1451
+ actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:43:in `render'
1452
+ actionpack (4.2.1) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
1453
+ actionpack (4.2.1) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
1454
+ actionpack (4.2.1) lib/abstract_controller/base.rb:198:in `process_action'
1455
+ actionpack (4.2.1) lib/action_controller/metal/rendering.rb:10:in `process_action'
1456
+ actionpack (4.2.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
1457
+ activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call'
1458
+ activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call'
1459
+ activesupport (4.2.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
1460
+ activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call'
1461
+ activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call'
1462
+ activesupport (4.2.1) lib/active_support/callbacks.rb:92:in `_run_callbacks'
1463
+ activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_process_action_callbacks'
1464
+ activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
1465
+ actionpack (4.2.1) lib/abstract_controller/callbacks.rb:19:in `process_action'
1466
+ actionpack (4.2.1) lib/action_controller/metal/rescue.rb:29:in `process_action'
1467
+ actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
1468
+ activesupport (4.2.1) lib/active_support/notifications.rb:164:in `block in instrument'
1469
+ activesupport (4.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1470
+ activesupport (4.2.1) lib/active_support/notifications.rb:164:in `instrument'
1471
+ actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
1472
+ actionpack (4.2.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
1473
+ activerecord (4.2.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1474
+ actionpack (4.2.1) lib/abstract_controller/base.rb:137:in `process'
1475
+ actionview (4.2.1) lib/action_view/rendering.rb:30:in `process'
1476
+ actionpack (4.2.1) lib/action_controller/metal.rb:196:in `dispatch'
1477
+ actionpack (4.2.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
1478
+ actionpack (4.2.1) lib/action_controller/metal.rb:237:in `block in action'
1479
+ actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `call'
1480
+ actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
1481
+ actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:43:in `serve'
1482
+ actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve'
1483
+ actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each'
1484
+ actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve'
1485
+ actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call'
1486
+ railties (4.2.1) lib/rails/engine.rb:518:in `call'
1487
+ railties (4.2.1) lib/rails/railtie.rb:194:in `public_send'
1488
+ railties (4.2.1) lib/rails/railtie.rb:194:in `method_missing'
1489
+ actionpack (4.2.1) lib/action_dispatch/routing/mapper.rb:51:in `serve'
1490
+ actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve'
1491
+ actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each'
1492
+ actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve'
1493
+ actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call'
1494
+ rack (1.6.0) lib/rack/etag.rb:24:in `call'
1495
+ rack (1.6.0) lib/rack/conditionalget.rb:38:in `call'
1496
+ rack (1.6.0) lib/rack/head.rb:13:in `call'
1497
+ actionpack (4.2.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1498
+ actionpack (4.2.1) lib/action_dispatch/middleware/flash.rb:260:in `call'
1499
+ rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context'
1500
+ rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call'
1501
+ actionpack (4.2.1) lib/action_dispatch/middleware/cookies.rb:560:in `call'
1502
+ activerecord (4.2.1) lib/active_record/query_cache.rb:36:in `call'
1503
+ activerecord (4.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:649:in `call'
1504
+ activerecord (4.2.1) lib/active_record/migration.rb:378:in `call'
1505
+ actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1506
+ activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call'
1507
+ activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks'
1508
+ activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks'
1509
+ activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
1510
+ actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1511
+ actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call'
1512
+ actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
1513
+ actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1514
+ actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1515
+ railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app'
1516
+ railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call'
1517
+ activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1518
+ activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged'
1519
+ activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged'
1520
+ railties (4.2.1) lib/rails/rack/logger.rb:20:in `call'
1521
+ actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1522
+ rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
1523
+ rack (1.6.0) lib/rack/runtime.rb:18:in `call'
1524
+ activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
1525
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
1526
+ actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call'
1527
+ rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
1528
+ railties (4.2.1) lib/rails/engine.rb:518:in `call'
1529
+ railties (4.2.1) lib/rails/application.rb:164:in `call'
1530
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
1531
+ rack (1.6.0) lib/rack/content_length.rb:15:in `call'
1532
+ rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
1533
+ D:/Ruby200p451x32/lib/ruby/2.0.0/webrick/httpserver.rb:138:in `service'
1534
+ D:/Ruby200p451x32/lib/ruby/2.0.0/webrick/httpserver.rb:94:in `run'
1535
+ D:/Ruby200p451x32/lib/ruby/2.0.0/webrick/server.rb:295:in `block in start_thread'
1536
+
1537
+
1538
+ Rendered D:/Ruby200p451x32/lib/ruby/gems/2.0.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.text.erb (1.0ms)
1539
+ Rendered D:/Ruby200p451x32/lib/ruby/gems/2.0.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.text.erb (2.0ms)
1540
+ Rendered D:/Ruby200p451x32/lib/ruby/gems/2.0.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.text.erb (17.0ms)
1541
+
1542
+
1543
+ Started POST "/callback/requests" for 127.0.0.1 at 2015-04-04 01:58:22 +0300
1544
+ Processing by CallbackRequestBootstrap::RequestsController#create as JS
1545
+ Parameters: {"utf8"=>"✓", "modal"=>"1", "autoclose"=>"5", "request"=>{"name"=>"8", "phone"=>"8", "notes"=>"8"}, "commit"=>"Send request"}
1546
+  (0.0ms) BEGIN
1547
+ SQL (15.0ms) INSERT INTO `requests` (`name`, `phone`, `notes`, `created_at`, `updated_at`) VALUES ('8', '8', '8', '2015-04-03 22:58:22', '2015-04-03 22:58:22')
1548
+  (4.0ms) COMMIT
1549
+ Rendered W:/myrails/mygems/callback_request_bootstrap/app/views/callback_request_bootstrap/requests/_create_result.html.erb (0.0ms)
1550
+ Rendered W:/myrails/mygems/callback_request_bootstrap/app/views/callback_request_bootstrap/requests/create.js.erb (3.0ms)
1551
+ Completed 200 OK in 54ms (Views: 11.0ms | ActiveRecord: 27.0ms)
1552
+
1553
+
1554
+ Started GET "/callback/requests/new?modal=1&autoclose=5" for 127.0.0.1 at 2015-04-04 01:59:01 +0300
1555
+ Processing by CallbackRequestBootstrap::RequestsController#new as */*
1556
+ Parameters: {"modal"=>"1", "autoclose"=>"5"}
1557
+ Rendered W:/myrails/mygems/callback_request_bootstrap/app/views/callback_request_bootstrap/requests/_form.simple_form.html.erb (4.0ms)
1558
+ Rendered W:/myrails/mygems/callback_request_bootstrap/app/views/callback_request_bootstrap/requests/new.html.erb (15.0ms)
1559
+ Completed 200 OK in 25ms (Views: 25.0ms | ActiveRecord: 0.0ms)
1560
+
1561
+
1562
+ Started POST "/callback/requests" for 127.0.0.1 at 2015-04-04 01:59:05 +0300
1563
+ Processing by CallbackRequestBootstrap::RequestsController#create as JS
1564
+ Parameters: {"utf8"=>"✓", "modal"=>"1", "autoclose"=>"5", "request"=>{"name"=>"77", "phone"=>"7", "notes"=>"7"}, "commit"=>"Send request"}
1565
+  (0.0ms) BEGIN
1566
+ SQL (0.0ms) INSERT INTO `requests` (`name`, `phone`, `notes`, `created_at`, `updated_at`) VALUES ('77', '7', '7', '2015-04-03 22:59:05', '2015-04-03 22:59:05')
1567
+  (2.0ms) COMMIT
1568
+ Rendered W:/myrails/mygems/callback_request_bootstrap/app/views/callback_request_bootstrap/requests/_create_result.html.erb (0.0ms)
1569
+ Rendered W:/myrails/mygems/callback_request_bootstrap/app/views/callback_request_bootstrap/requests/create.js.erb (4.0ms)
1570
+ Completed 200 OK in 17ms (Views: 9.0ms | ActiveRecord: 2.0ms)